¿Es posible especificar que las cadenas de un archivo dentro de los value-*
directorios no se traducen intencionalmente a otros idiomas? Tengo un montón de cadenas que son comunes para todos los idiomas y no necesitan traducción, así que he creado un unlocalized-strings.xml
archivo dentro del values
directorio. Ejecutando Android Lint para buscar problemas, sigue diciendo que faltan algunas traducciones ... No quiero para deshabilitar esta verificación en todo el proyecto, me gustaría deshabilitarla solo en algunos archivos XML ... ¿es posible?
"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.
¿Cómo se puede definir esta región de cadenas no localizadas ?