google-translate

Resources for programs teaching natural languages

What API's and data sets are available for use in programs to teach natural languages e.g. to aid in learning to read/write/listen/speak a 2nd language? These could be web or traditional API's to dictionaries, translation services, associations of words / concepts to images, sounds e.g. spoken words or phrases, movies, or sets of flashca...

winform Google transliteration like component for indic language

Hi all, Please check Google transliteration. We need something like Google transliteration commercial solution which can be integrated in our winforms application. our application will not have internet connectivity so using Google transliteration API is not an option for us. ...

Accessing Google Translation Service (C# WinForms)

Hi All I've seen many websites AND programs that access the google translation service. I'm trying to create a little app where there are basically 2 TextBox controls and a Button, where you can select a language to translate from and to... But how do I access the API?? I've not found anything so far. Or if anybody knows of any other tr...

how we can i use google translator api in my website.

well i want to use google api translator in my website and when i am putting this api code in my html page its working fine. ----------------------------------google translator code :----------------------------- <div id="google_translate_element" ></div> <script type="text/javascript"> function googleTranslateElementInit() { new goo...

questions on how to import google-api-translate-java.jar

Dear all, I am now going to use the .jar file on http://code.google.com/p/google-api-translate-java/ However,after I download it ,I tried to import it in my current project folder(in Eclipse) the two import statements import com.google.api.translate.Language; import com.google.api.translate.Translate; always get complained by the ...

I have a text-box and i want to enter a string in language A...

OK I will try to ask it again. I have a text-box and I want to enter a string in language A and send it to "google translate". After Google has translated it I want to take the new string(in language B) (after translation) and store it in some variable. I hope this time it is more clear. How I do it?? ...

i have a var that i want to translate (is name is ftext) i am using the GET method

i have this code: <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title></title> <script type="text/javascript" src="http://www.google.com/jsapi"&gt;&lt;/script&gt; <script type="text/javascript"> google.load("language", "1"); funct...

i want to use google-translate as part of a C code

hi i want to use google-translate as part of a C code i am writing i understand that google-translate is use with java-script my question is how i get it work as part of my C code? how i make a connection from my C code to the google site? ...

BlackBerry - Handle and translate messages (sms/email/pim/pin)?

Does the native Blackberry API allow for the modification of any messaging interface? For example, I'd like to be able to build an app that added a button at the bottom of a received message which says 'translate this'. I've heard that this kind of thing is possible using J2ME plus the native BlackBerry API. Can this be done for all ki...

Google Translation API not working for even one page long documents

I'm using Google Translation API to translate text from Chinese Simplified to English in my C# program. The problem is if the text is small (around one line) the API is able to translate it, but if the text is larger (more than 3 lines) is gives an exception saying "The remote server returned an unexpected response: (414) Request-URI Too...

Google Translate API for iPhone - UTF8 problem in Chinese Translation

I've tested a workable translation API url by: http://translate.google.com/translate_a/t?client=t&amp;text=%E5%BB%A3%E5%A0%B4&amp;langpair=zh|zh-CN And it returns the correct result as the following which is in JSON format: {"sentences":[{"trans":"广场","orig":"廣場","translit":"Guǎngchǎng"}],"src":"zh-CN"} However, when I try to use thi...

Fetch pages translated by Google? (PHP)

Hi, I have a bunch of big txt files (game walkthroughs) that I need translating from English to French. My first instinct was to host them on a server and use a PHP script to automate the translation process by doing a file_get_contents() and some URL manipulation to get the translated text. Something like: http://translate.google.com/t...

Using javascript in Crystal Reports formula editor

How can I go about using java-script in Crystal Reports formula editor ? I wish to write a function that will use Google Translation API to modify the report's data. Thanks ...

Get Chinese Romanization from Google Translate API

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); }); }...

A simple problem using Google Translation API

Hello, Google Translaton Api has been working just fine for me except one problem. I allow the users to use editor to post something. The editor generates too much of html like :- <span><span><span>Hello World</span></span></span>` The google translation API by default only filters HTML upto one level. Thus, for example if it is :- ...

Language Translation API

How can i convert language in my Java? Is there any API exist, which convert any language to any other language? I am using Google Translate API, but it giving me below exception. java.lang.Exception: [google-api-translate-java] Error retrieving translation. at com.google.api.GoogleAPI.retrieveJSON(GoogleAPI.java:123) at com.google.api....

PHP Trasnlate HTML page using google translate

Afternoon, Bit of a tricky question this one, I have a website and need to translate the pages into french, I am using google translate API to do the translation. What I am doing is loading in the HTML templates into a string using PHP and then need to translate the text copy on the pages and then save as for example: fr_master_header...

How to translate .PDF files using google APIs?

How to translate .PDF files using google APIs? (translate from language the pdf's are to for example russian (new pdf file orplain text or html).) (code example needed) ...

Google Translate Widget fails in Firefox

I am attempting to implement the Google Translate Widget where you include a piece of javascript code into your page and it gives you a language dropdown. This was very straightforward however, it does not work in Firefox. It works in IE, Safari, Chrome. Has anybody experience this problem and is there any workaround? With some research...

Google translate API For .Net Console Application

Hello. I'm creating a not-web application using C# and I would like to use Google translate API there. Is there a way to do this? Thank you for your help! ...