标签: ios iphone xcode swift localization
我试图本地化我的iOS应用程序。而且不能这样做。
捆绑名称= $(PRODUCT_NAME)
捆绑显示名称= $(PRODUCT_NAME)
" CFBundleDisplayName" =" My_App_Name&#34 ;;
" CFBundleName" =" My_App_Name&#34 ;;
我更改了infoPlist.strings本地化的iPhone语言,但这并没有生效。应用名称不会改变我在项目创建时写的名称。
答案 0 :(得分:10)
捆绑名称未本地化的原因是我将本地化文件命名为“infoPlist.strings”。它应该是“InfoPlist.strings”(我在Info.plist中大写)。
答案 1 :(得分:2)
就我而言,我必须本地化(English, deprecated)。 {。{1}}未使用。
(English, deprecated)
在InfoPlist.strings(Base)中添加"CFBundleName" = "My_App_Name";就足够了。
InfoPlist.strings(Base)
"CFBundleName" = "My_App_Name";