Reputation: 40329
When I look inside the Info.plist file in Xcode, the Property List Editor shows me an value that looks like an variable:
${PRODUCT_NAME}
How / where can I set up localized names for my app?
Upvotes: 4
Views: 9357
Reputation: 1101
You can create a localized file named InfoPlist.strings, containing the name of your application:
CFBundleDisplayName = "Name of the App";
(Just like Localizable.strings)
Upvotes: 14