Reputation: 12314
There are a lot of posts on this but all seem to be an out of date method? It seems its done using info.plist and adding localization to it and then more info.plist files are created within for each language. It seems to be working but only ever displays the English Bundle display name no matter what system language I use. Not sure what else needs to be done. I checked it on both the simulator and a device.
Upvotes: 6
Views: 8851
Reputation: 563
you need to create "InfoPlist.strings" and add languages which you want to support there, then set your bundle name and display name as the following for each language
"CFBundleDisplayName" = "App Name";
"CFBundleName" = "App Name";
How to enable Localization and add more language to your project.
Upvotes: 12