views:

290

answers:

1

The Google language translate API works cleanly to translate into Chinese:

<script type="text/javascript" src="http://www.google.com/jsapi"&gt;&lt;/script&gt;
<script>
  google.load('language','1');
  function googletrans(text) {
    google.language.translate(text,'en','zh',function(result) {
      alert(result.translation);
    });
  }
</script>
<input onchange="googletrans(this.value);">
Example input: "Hello"
Result: "你好"

My problem is I can't get the Romanization (pronunciation using English letters). This is a known issue.

Now the data is right there on translate.google.com (Example input: "Hello" Result: "Nǐ hǎo") and I can even see it by pointing my browser to:

http://translate.google.com/translate_a/t?client=t&amp;text=hello&amp;hl=en&amp;sl=en&amp;tl=zh-CN&amp;otf=2&amp;pc=0
Result:
{"sentences":[{"trans":"你好","orig":"hello","translit":"Nǐ hǎo"}],
 "dict":[{"pos":"interjection","terms":["喂"]}],"src":"en"}

But somehow when I try to get this URL with ajax it fails (XMLHttpRequest Exception 101). Is there any way to retrieve this Romanization data with ajax?