Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 languages.

Is there any why to find strings which don't have a translation in one of strings.xml (locale specific) files?

like image 629
andrii Avatar asked Nov 21 '11 11:11

andrii


1 Answers

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

It will check consistency of translation strings as well as other potential code issues.

This issue has also been raised in the past: Android: Get missing translations for strings-resources

like image 85
tomash Avatar answered Sep 28 '22 06:09

tomash