我正在为我的应用程序制作一个小部件,我想本地化显示名称。我已经在我的 Info.plist 中设置了属性: Application has localized display name = YES; 并且我已经进行了本地化:
Info.strings (Danish) 和 Info.strings (English) 每个文件包含以下行: "CFBundleDisplayName"= "MyDisplayName"; - 一份英文和一份丹麦文
"CFBundleName"= "我的名字";
还是不行!任何人都可以帮忙吗?
Best Answer-推荐答案 strong>
我认为这个问题可能已经解决了,但我给你我的:你可能错了三件事:
您不应该将 CFBundleDisplayName 放在 InfoPlist.strings 中的引号内。所以代替 "CFBundleDisplayName"= "MyDisplayName";使用 CFBundleDisplayName = "MyDisplayName";
文件名为 InfoPlist.strings
我一开始就犯了这个错误:我忘记将 InfoPlist.strings 添加到项目中。所以文件在目录中,但没有添加。也检查一下。
关于iOS 8 - 本地化小部件显示名称,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27488833/
|