Android Lintが翻訳されていない文字列について文句を言うのを避ける
value-* ディレクトリ内のファイルの文字列が意図的に他の言語に翻訳されないように指定することは可能ですか?すべての言語に共通で翻訳が不要な文字列がたくさんあるので、unlocalized-strings.xmlディレクトリ内にファイルを作成しましたvalues。AndroidLintを実行して問題をチェックすると、一部の翻訳が欠落していると表示され続けます。プロジェクト全体でこのチェックを無効にするには、一部のXMLファイルでのみ無効にしたいのですが、可能ですか? "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 …