No_Rulz
No_Rulz

Reputation: 2719

How to translate Language in android?

I want to translate language into another language but the Google API was shut off. Is there any alternative way to translate the language??

Upvotes: 1

Views: 1096

Answers (3)

Pedro Rainho
Pedro Rainho

Reputation: 4274

You can also try this app: http://www.pedrorainho.eu/applications/apktranslator

It was done by me to translate my android apps, and uses bing

Upvotes: 1

salaoshi
salaoshi

Reputation: 156

You can try Bing API at http://msdn.microsoft.com/en-us/library/dd877832.aspx

Upvotes: 0

Jukka K. Korpela
Jukka K. Korpela

Reputation: 201538

If you mean embedding machine translation in your page, it’s still possible using Google services, either width the paid service Google Translate API v2 or using Google Website Translator suitably. Regarding the latter, see the simple demo page http://www.bytelevelbooks.com/code/javascript/transinput.html (about translating user input). There’s a discussion of the topic in my book Going Global with JavaScript and Globalize.js, with some notes on the alternatives and pitfalls. Generally, automatic translation may work reasonably for sentences of very simple grammatical structure, so it might be feasible a) for generated texts planned to be translatable that way, b) for user input in situations where the user knows the target language somewhat (e.g., reads reasonably but writes poorly), so that he has some chances of checking that the translations make sense.

Upvotes: 0

Related Questions