A nice way to disable MissingTranslations check is to add the option in module specific build.gradle
file .
android {
lintOptions{
disable 'MissingTranslation'
}
//other build tags
}
If the strings are not present in locale specific Strings file, it will take the strings from the default file which generally is strings.xml
.