gpt4 book ai didi

android - 避免 Android Lint 提示未翻译的字符串

转载 作者:IT老高 更新时间:2023-10-28 13:01:03 24 4
gpt4 key购买 nike

是否可以指定 value-* 目录中的文件中的字符串故意不翻译成其他语言?我有一堆所有语言通用的字符串,不需要翻译,所以我在 values 目录中创建了一个 unlocalized-strings.xml 文件。运行Android Lint 检查它一直说缺少一些翻译的问题。我不想在整个项目中禁用此检查,我只想在某些 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 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.

如何定义这个区域未本地化字符串?

最佳答案

就是你的字符串文件中tools命名空间的ignore属性,如下:

<?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>

关于android - 避免 Android Lint 提示未翻译的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12590739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com