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 本地化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIWebview 本地化
基础教程推荐
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
