I created and maintain an open source Android app. Recently someone offered to translate my app into several other languages. At the same time, development continues on the app which can sometimes add string resources which need to be translated.
How can I ensure that the additional string resources are translated with as little pain as possible? In particular, the translator seems to have very minimal technical skills. I think that teaching him version control won’t be very helpful. Also asking him to manually comb through the updated English resources for changes can be error prone.
Any suggestions would be greatly appreciated.
3
The most low tech solution I can think of:
Use a program like Diff or Meld (or whatever you like) to view the differences between the latest version of the program and the latest fully translated version.
This makes the differences a lot clearer to see than manually checking the files, whilst not being too technically challenging.
This is assuming all the translatable text are in string rescource files and not directly in the sourcecode, just like Philipp suggests.