Hi there!
We are working in a localized app with suport to Portuguese, English and Spanish. Everything was ok until setting up CFBundleLocalizations in build.settings. Before that, the CFBundleDisplayName worked fine for all the three languages, now (after setting CFBundleLocalizations) just English and Portuguese works and when my devide is in spanish it shows my app name in english.
my build.settings
settings = {
orientation = {
default = "landscapeLeft",
content = "landscapeLeft",
supported = {
"landscapeLeft",
"landscapeRight",
}
},
iphone = {
plist = {
CFBundleLocalizations = {
"Portuguese",
"Spanish",
"English",
},
CFBundleVersion = "1.0.0",
}
}
}
my en.lproj/InfoPlist.strings
CFBundleDisplayName = "AppNameInEnglish";
my es.lproj/InfoPlist.strings
CFBundleDisplayName = "AppNameInSpanish";
my pt.lproj/InfoPlist.strings
CFBundleDisplayName = "AppNameInPortuguese";
It looks like that “es” is not for spanish, not in this case. The localization inside our app still works perfectly.
Did anyone seen this before? Any tips? [import]uid: 50425 topic_id: 15761 reply_id: 315761[/import]
[import]uid: 50425 topic_id: 15761 reply_id: 58855[/import]