- #1
- 2,138
- 2,713
After publishing two apps on Google Play recently, I am currently looking for ways to translate my apps to different languages. In Android, all the strings used in the app are placed in the
For translating my app into different languages, I will have to rely on help from enthusiastic users. I need an online service that can help me make it easy for people to translate the app. I should be able to upload the default string resource file, and the website should then list the strings. People will simply be able translate them; they should not need an account on that website. Once the translations are complete, the website should allow me to download the strings in an xml format such that I can directly use them on Android. My apps are all open-source and hosted on GitHub, so if the website allows integration with GitHub, it will be a bonus.
Anybody aware of such free websites? From a GitHub repo, I found crowdin.com. It was advertised as free, but once I created an account, they said that I am in a trial period of 14 days.
strings.xml
file. If the app is installed on a device that is using a different locale, Android will first check whether a string resource file is available in that locale. If yes, it will use that particular translated resource file; otherwise it will use the default file. String resource files for different locales are put under different folders. The default will be res/values/strings.xml
. The translated version in Bengali (India), for example, will be res/values-bn-rIN/strings.xml
.For translating my app into different languages, I will have to rely on help from enthusiastic users. I need an online service that can help me make it easy for people to translate the app. I should be able to upload the default string resource file, and the website should then list the strings. People will simply be able translate them; they should not need an account on that website. Once the translations are complete, the website should allow me to download the strings in an xml format such that I can directly use them on Android. My apps are all open-source and hosted on GitHub, so if the website allows integration with GitHub, it will be a bonus.
Anybody aware of such free websites? From a GitHub repo, I found crowdin.com. It was advertised as free, but once I created an account, they said that I am in a trial period of 14 days.