Android – strings.xml management tool
I am looking for a tool to manage my strings.xml to localize strings. The tool should show which strings are missing in which conversion. The tool must be used for commercial purposes free of charge. Is there anything I can use?
My search tool only shows http://developer.motorola.com/docstools/motodevstudio/download/ But if I understand, it doesn't seem to be a free commercial use
resolvent:
Lint is a tool attached to the Android SDK (so it can be used for all, commercial or other free), and provides you with a list of missing translations. It can be run from the command line in eclipse and generate HTML reports
For example, from the command line in the project root directory:
lint --check MissingTranslation .
Generates a list of all strings in any. XML file that is missing in one of the supported languages (represented by at least one folder with a language suffix)