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>"未翻译成&
基础教程推荐
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01