How to find untranslated strings? (Android)

I have an application that should support several different languages. And sometimes I forget to put translations for one of the languages.

Are there any reasons for looking for strings that don't have a translation in one of the strings.xml (locale specific) files?

+7
source share
1 answer

ADT 16 will include the Android Lint tool - http://tools.android.com/tips/lint

It will check the sequence of translation strings, as well as other possible problems with the code.

This issue has also been raised in the past: Android: get missing translations for resource strings

+6
source

All Articles