The Android String resource template (link to file) should also probably contain translatable="false" because these are not real text strings that can be translated. These are usually just some font or resource names. Android Studio and Lint complain that we are missing translations for these string resources.
The Android String resource template (link to file) should also probably contain
translatable="false"
because these are not real text strings that can be translated. These are usually just some font or resource names. Android Studio and Lint complain that we are missing translations for these string resources.https://developer.android.com/studio/write/translations-editor#untranslatable
Example how it's used:
<string name="app_name" translatable="false">EasyApp</string>