How to provide i18n service for developer and end user

Posted by user247245 on Stack Overflow See other posts from Stack Overflow or by user247245
Published on 2010-12-30T10:46:44Z Indexed on 2010/12/30 10:54 UTC
Read the original article Hit count: 200

Many android applications have quite poor i18n-support, and for an understandable reason, as it adds much work for the developer.

From a both intuitive and cultural point of view it would be a good thing if end-users could translate the apps themself, and OTA share the translation, without reinstalling the app itself.

In concept; as wikipedia, some add content easily, others only use what's there.

It's of course important that the service is as easy as possible to use, both for app-developers, and people willing to transcribe.

To keep it simple, this is the solution I'm concidering;

Developer perspective:

  • Developer uses a customized setContentView when open activities/layouts that will seach for thanslations of xml-entries. (below)

  • The customized version is provided as a free downloadable library/class..., turning the i18n feature to more or less a one liner.

User perspective:

  • User downloads app without any translation

  • As app launches, it checks locale running at phone, and will look for a translated xml-file at shared space in SD.

  • If no or old transcribed xml (above), try to download new from internet-service (ansync). This is all done by library above, no need for intents.

Translator perspective:

  • Separate app to provide translations for any app using the i18n service above. (Could be just a webapp), with some form of QA on translators/input.

QUESTION: Now, for this to work efficiently, it has to be AeasyAP for the developer to even bother, and the most fluent solution would be a customized version of setContentView, that simply loads the translated values from external xml, instead of the ones in the apk.

Is this possible at all, and if not, what's your suggested solutions?

(And of course, Happy New Year, feliz ano novo, blwyddyn newydd dda, Gott Nytt År, kontan ane nouvo, szczesliwego nowego roku ...)

Regards, /T

© Stack Overflow or respective owner

Related posts about java

Related posts about android