Avoid Android Lint complains about not-translated string

AndroidAndroid ResourcesAndroid Lint

Android Problem Overview


is it possible to specify that the strings in a file within the value-* directories are purposely not translated into other languages? I have a bunch of strings that are common for all the languages and need no translation, so I've created an unlocalized-strings.xml file within values directory.. Running Android Lint to check for problems it keeps saying that some translations are missing.. I do not want to disable this check on the whole project, I'd like to disable it only in some XML files.. is it possible?

"title_widget_updater_service" is not translated in de, en, en-rUS, it

Issue: Checks for incomplete translations where not all strings are translated
Id: MissingTranslation

If an application has more than one locale, then all the strings declared in one language     
should also be translated in all other languages.

By default this detector allows regions of a language to just provide a subset of the 
strings and fall back to the standard language strings. You can require all regions to 
provide a full translation by setting the environment variable 
ANDROID_LINT_COMPLETE_REGIONS.

How can defined this region of unlocalized strings?

Android Solutions


Solution 1 - Android

It's the ignore attribute of the tools namespace in your strings file, as follows:

<?xml version="1.0" encoding="utf-8"?>
<resources
  xmlns:tools="http://schemas.android.com/tools"
  tools:ignore="MissingTranslation" >

  <!-- your strings here; no need now for the translatable attribute -->

</resources>

Solution 2 - Android

I don't know how to ignore all the file, but you can do it string by string using:

<string name="hello" translatable="false">hello</string>

Solution 3 - Android

Add to build.gradle:

android {
     lintOptions {
        disable 'MissingTranslation'
    }
}

Solution 4 - Android

There are 3 ways that I know of :

To apply the modification value by value : Set the attribute translatable="false" on the <string> definition:

<string name="account_setup_imap" translatable="false">IMAP</string>

If you have a lot of resources that should not be translated, you can place them in a file named donottranslate.xml and lint will consider all of them non-translatable resources.

Another way I discovered while browsing Hackers Keyboard project sources:
You can add the prefix donottranslate- to your resource file. As in the previous example, lint will consider all of them non-translatable resources.
In your case, you can replace unlocalized-strings.xml by donottranslate-strings.xml. It seems to work, but I haven't found any documentation for this tip.

See: Android Tools Project Site: Non-translatable Strings

Solution 5 - Android

And here is a Android Studio solution for disabling this fatal Lint error:

enter image description here

Solution 6 - Android

I think that what you need instead of disabling lint is to mark them with attribute

translatable="false"

Solution 7 - Android

Create a resource file with a file name starting with "donottranslate" (e.g. donottranslate.xml, donottranslate_urls.xml, etc), and lint will ignore its strings altogether when checking for missing translations.

Solution 8 - Android

If you want to turn of the lint checking on missing translation, you may go

"Project Properties -> Android Lint Preferences -> Select MissingTranslation -> Swtich To Ignore In Severity",

hopes this helps others cause i just encounter this problem :)

Solution 9 - Android

Another way to do that is add your string to gradle file, using resValue or buildConfigField. Something like that:

buildTypes {
    debug {
        buildConfigField "string", "app_name1", "App Name"
        resValue "string", "app_name2", "App Name"
    }
    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        buildConfigField "string", "app_name1", "App Name"
        resValue "string", "app_name2", "App Name"
    }
}

Usages:

// buildConfigField
BuildConfig.APP_NAME1

// resValue
getString(R.string.app_name2)

Solution 10 - Android

To avoid warnings in Android Studio, open Preferences ==> Inspections, uncheck "Incomplete translations". But it won't affect Gradle build.

Solution 11 - Android

There is also the "Translation editor" (right click on string.xml "Open Translation Editor").

Then check the 'Untranslatable' box on a string.

https://developer.android.com/studio/write/translations-editor

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGianni CostanziView Question on Stackoverflow
Solution 1 - AndroidAdil HussainView Answer on Stackoverflow
Solution 2 - AndroidLuisView Answer on Stackoverflow
Solution 3 - AndroidGiraffe LionView Answer on Stackoverflow
Solution 4 - AndroidCyril LerouxView Answer on Stackoverflow
Solution 5 - AndroidDzhuneytView Answer on Stackoverflow
Solution 6 - AndroidDiego Torres MilanoView Answer on Stackoverflow
Solution 7 - AndroidKaiView Answer on Stackoverflow
Solution 8 - AndroidhctangView Answer on Stackoverflow
Solution 9 - AndroidheloisasimView Answer on Stackoverflow
Solution 10 - AndroidKofView Answer on Stackoverflow
Solution 11 - Androiduser1010160View Answer on Stackoverflow