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?
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?
You can create a localized file named InfoPlist.strings, containing the name of your application:
CFBundleDisplayName = "Name of the App";
(Just like Localizable.strings)