Lint: How to ignore quot;lt;keygt; is not translated in lt;languagegt;quot; errors?(Lint:如何忽略“lt;keygt;未翻译成lt;语言gt;错误?)
问题描述
我无法编译/调试我们的 Android 应用,因为本地化文件还不完善.
I can't compile/debug our Android app, because the localization files are not perfect yet.
我的 IDE 的验证工具 Lint 会产生如下错误:
My IDE's validation tool Lint create errors saying:
newCardsOrderVals 未在 ar、bg、ca、cs 中翻译
newCardsOrderVals is not translated in ar, bg, ca, cs
使用 Ant 编译/安装/运行可以正常工作,但我想使用我的 IDE 来简化调试.
Compiling/installing/running with Ant works fine, but I would like to use my IDE to ease debugging.
有没有办法关闭此特定检查,或者理想情况下将其设为警告而不是错误?
Is there a way to turn off this particular check, or ideally make it a warning rather than an error?
我知道在发布之前我们确实需要正确获取本地化文件,但目前这不是优先事项,因为屏幕本身的修改非常频繁.
I understand that before release we will really need to get localisation files right, but for the time being it is not a priority as the screens themselves are being modified very frequently.
推荐答案
Android Studio:
Android Studio:
- 文件">设置"并在搜索框中输入MissingTranslation"
日食:
- Windows/Linux:在窗口">首选项">Android">Lint 错误检查"中
- Mac:Eclipse">首选项">Android">Lint 错误检查"
找到 MissingTranslation
行,并将其设置为 Warning
,如下所示:
Find the MissingTranslation
line, and set it to Warning
as seen below:
这篇关于Lint:如何忽略“<key>"未翻译成<语言>"错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Lint:如何忽略“<key>"未翻译成&
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 转换 ldap 日期 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 获取数字的最后一位 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01