Thanks
Thanks

Reputation: 40329

How can I localize the value of CFBundleDisplayName in the Info.plist file?

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

Answers (1)

Rémy
Rémy

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

Related Questions