UIWebview Localization(UIWebview 本地化)
问题描述
在本地化的 Iphone(语言设置为希伯来语)上,当我们使用 safari 查看网页并点击输入字段时,我们会使用希伯来语中的下一步/上一个/完成"按钮启动键盘.
On a localized Iphone (Language set to Hebrew) when we view a webpage using safari and tap on an input field we get the keyboard up with the "Next/Previous/Done" buttons in Hebrew.
当我们使用嵌入在应用程序中的 UIWebview 查看同一个网页时,Next/Previous/Done"按钮始终为英文.
When we view the same webpage using a UIWebview embedded inside our application the "Next/Previous/Done" buttons are always in English.
我们在考虑可能需要为这些字段添加翻译文件,但我们不知道要使用的键.
We were thinking that we might need to add a translation file for those fields but we do not know the keys to use.
这方面有什么建议吗?
开始赏金以希望得到一些指示.
Started a bounty to hopefully get some pointers.
附加两张图片
推荐答案
在 info.plist 中,您可以设置一个名为 CFBundleAllowMixedLocalizations 的值,前提是您检查所有内容都应翻译成正确的本地化语言.
In your info.plist you can set a value called CFBundleAllowMixedLocalizations, if you check that everything should be translated to the right localized language.
这篇关于UIWebview 本地化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!