Google have announced that they are sunsetting the Translate API. Does anyone know of a similar REST based service ? Yahoo have or used to have babelfish, but I can't find an API for it.
|
closed as off topic by Will♦ Jun 26 '12 at 14:14
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Try the Bing solution: http://web.archive.org/web/20110720142541/http://basharkokash.com/post/2010/04/19/Bing-Translator-for-developers.aspx |
|||||||||||||||||||||
|
|
Alternatives to Google Translate API: |
|||||||
|
|
Wait, Google Translate API is still FREE :) Yes, but using an indirect method. Google Translate API is available as free through Google Apps API. So, you can access Google Translate API from Google spreadsheets as the following:
Lets see more details with steps and code....
Wow, it works without any payments :) Note To pass parameters to the script function “gTranslate”, you need to use double quotes
Single quotes will NOT work.
Side effects: This work around solution works fine with me but something slow because we make many requests to save an reload spreadsheet. So, if you need to translate many strings fast, I suggest you join them be new line and then split the result over the new lines. |
|||||||||||
|
|
I like the MyMemory translation service, because it uses both automatic translations and a human made translation database. It provides JSON and SOAP APIs, free to use, no registration or API keys needed. Example:
You can find the API docs here: http://mymemory.translated.net/doc/spec.php UPDATE: as of April 2013, usage limits are: "Free, anonymous usage is limited to 100 requests/day. Provide a valid email ('de' parameter), where we can reach you in case of troubles, and enjoy 1000 requests/day. |
||||
|
|
|
I'm not sure what kind of throughput you're looking at but MyGengo works well and has a solid API. |
|||
|
|
|
Note that Microsoft Translator is also a paid service, although more affordable than Google. Apparently 2000 translations per month are included free of charge. A "translation" is a single use of the service. Microsoft also quotes: "You can subscribe to tiers ranging from 4M (million) characters a month onwards, priced at US $10 per million characters." I'm personally looking for a solution able to machine translate real-time text chat. This means very short translations but an insane amount of them on a busy session, which can occur spontaneously and several times in different (virtual) locations simultaneously. MyGengo is appropriate for human translation; the API is good to automate the process for publishing documents in different languages on, say, a content management system, where "real time" is not a requirement. I'm waiting for an answer from SpeakLike, and, in the mean time, WebServiceX Translate API seems to be able to provide the kind of real-time machine translation I require for free, so I'm giving it a try. |
||||
|
|
|
Google has modified their decision, and will not be deprecating the service entirely. They are closing version 1, and transitioning version 2 to a paid service. More information here: Google Translate API |
|||
|
|
|
If you just need language detection, you can use free web service: It is compatible with Google Translate API request/response formats. |
|||
|
|
|
Word Lingo has a non-free alternative. However, seems as Microsoft Bing is the way to go today if you need a good entry-option. Haven't tried it myself yet though. |
|||
|
|
|
I found wordpress plugin that give all features of Google Translator and works perfect. No need APIs anymore. http://www.translatorbox.com/google-text-translator-alternative-for-wordpress/ |
||||
|
|