Could not localize iOS app bundle display name

佐手、 提交于 2019-12-18 09:12:03

问题


I have followed the answers to some SO question to localize my app's name.

InfoPlist.strings (Base):

CFBundleDisplayName = "Name In English";
CFBundleName = "Name In English";

InfoPlist.strings (Arabic (Saudi Arabia)):

CFBundleDisplayName = "Name In Arabic";
CFBundleName = "Name In Arabic";

I have also tried adding quotation marks around CFBundleDisplayName and CFBundleName

InfoPlist.strings file is located at the root directory of my app.next to Info.plist file, but after localized, it was moved to Base.lproj dir and ar-SA.lproj dir.

However, my app is not using the localized name under its icon in the iPhone's home screen.


回答1:


I did sample project for you:

https://github.com/jurajantas/localizationTest

Hope it helps.



来源:https://stackoverflow.com/questions/30298548/could-not-localize-ios-app-bundle-display-name

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!