Results 1 to 2 of 2

Thread: How to change codes to my language please

  1. #1
    Join Date
    Nov 2006
    Posts
    65
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question How to change codes to my language please

    Sorry my poor english first
    this codes translates international characters but my language is turkish and not translate turkish
    for example;
    the letter ş is seem Þ



    Code:
    # This translates international characters (anything above char 128)
    if($codelock_international!="yes"){
    	$codelock_length = strlen($codelock_html); $new_codelock_html="";
    	for ($codelock_go=0; $codelock_go < $codelock_length; $codelock_go++) { $codelock_curr_string=$codelock_html[$codelock_go];
    		if (ord($codelock_curr_string) < 128) { $new_codelock_html.=$codelock_curr_string; } else {
    		$new_codelock_html.="&#".ord($codelock_curr_string).";";
    		}
    	}
    	$codelock_html=$new_codelock_html;
    }

    and the php files include this code too
    Code:
    # Default Encoding... Encrypt the whole page data 
        $codelock_nt_h=base64_encode($codelock_html);  
        $codelock_nt_h=str_replace("CAgI", "*", $codelock_nt_h); $codelock_nt_h=str_replace("W5", "!", $codelock_nt_h); $codelock_nt_h=str_replace("CAg", "@", $codelock_nt_h); 
        $codelock_newcode2="<script language=JavaScript>document.write(codelock_dec('$codelock_nt_h')); </script>"; 
        }

  2. #2
    Join Date
    Nov 2006
    Posts
    65
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    help please

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •