Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 918
Thanks Avatar asked Dec 14 '22 04:12

Thanks


1 Answers

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

CFBundleDisplayName = "Name of the App";

(Just like Localizable.strings)

like image 188
Rémy Avatar answered May 24 '23 20:05

Rémy