Skip to content Skip to sidebar Skip to footer

Translator Service In Sequoyah Plugin Of Eclipse

I have installed sequoyah plugin in eclipse. I am using its editor to translate my strings.xml file in Android project. Now when I right click the column in sequoyah text editor an

Solution 1:

The only implementation I know is the one that comes with MOTODEV Studio for Android, using Google Translate API v2. Unfortunately, this is a paid service and requires you have a key for accessing the API, which you have to get from Google services.

The addition of new translators, though, is quite simple to do through Sequoyah. It consists of implementing one of their extension points (org.eclipse.sequoyah.localization.tools.translator) by providing a class that contains some methods that receive lists of strings to translate, do the actual translation by using a translating service of your choice, and return the results. Once you get your Eclipse running with this, you'll see it show up on the drop down list for choosing the translator service :)

Hope it helps!

Post a Comment for "Translator Service In Sequoyah Plugin Of Eclipse"