supersurabbit
supersurabbit

Reputation: 441

How to localize the app name?

I wrote a game with cocos2d and translated all the image and text in the game in two different language.

When the app launches, I load different resource according to the locale of the device and this worked all OK.

Then when I upload this app for review, I first named it say "test". Then in the localization part I add a language "Japanese".

But I found that in the "Japanese meta data part", I can edit a lot of things except the "app name" which is "test". But I want my app to show different names according to the locale of the device also.

Can somebody tell me how to get this work? Thanks in advance...

Upvotes: 8

Views: 5814

Answers (1)

cduhn
cduhn

Reputation: 17918

You can create a file called InfoPlist.strings in each of your language specific directories, and set a language specific value for CFBundleDisplayName.

Upvotes: 5

Related Questions