views:

1478

answers:

1

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?

+5  A: 

You can create a localized file named InfoPlist.strings, containing the name of your application:

CFBundleDisplayName = "Name of the App";

(Just like Localizable.strings)

Rémy BOURGOIN
Does the name of that .strings file matter? So I would place the InfoPlist.strings file in every localization-directory like en.lproj, fr.lproj, and so on, right?
Thanks
The name matters (and the case too !)You have to do that for every lproj directory, but you can also do that directly with XCode.
Rémy BOURGOIN