i have a text "Translate text, webpage, or document "

which i need to translate into Japanese , the google translator

return the string as 翻訳テキスト、 Webページ、またはドキュメント

and when am writing that a text file the (ja.po) it looks like

–|–óƒeƒLƒXƒgA Webƒy[ƒWA‚Ü‚½‚̓hƒLƒ…ƒƒ“ƒg

what would be the error?

i am using poeditor.exe to view the file. am not using any encoding function at present.

for(/*extracting from the trnslated string array*/)
{
    $pattern = "/msgid \"".preg_quote($id, '/')."\"(\r?\n)msgstr \"\"/";
    $string = str_replace('"', '\"', $string);
    $replacement = "msgid \"$id\"\nmsgstr \"". $string . "\"";
    $res = preg_replace($pattern, $replacement, $con);
    $con = $res;
}
file_put_contents("ja.po", $con);
link|improve this question

47% accept rate
Are you opening the file with an editor which supports UTF-8 ? And/or with a font that supports UTF-8 ? If yes, how are you writing the string (which looks fine) to the file (which doesn't look so nice) ? – Pascal MARTIN Jul 27 '09 at 6:44
feedback

2 Answers

up vote 1 down vote accepted

How are you getting the string from Google and how are you writing it? Somewhere along the way it gets converted from UTF8 to latin1 I suppose. If you can figure out where it happens, use mb_convert_encoding to fix it.

BTW, the translated Japanese is pretty bad. ;)

link|improve this answer
feedback

It looks like the program you are using to read that file isn't understanding the encoding format that you wrote it out as. Are you using UTF8 all the way through? Maybe try http://www.php.net/manual/en/function.iconv.php to convert it to UTF8 if it is some other encoding.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.