views:

28

answers:

1

I'm attempting to create a localized app, with English and Chinese. I have all the translations in my images. I have localized my image files with the folders zh_CN.lproj and they work perfectly in the app.

I have attempted to create an InfoPlist.strings file, and declare the CFBundleDisplayName (I previously did this with a French localization).

However, the app doesn't seem to be picking the app name from the strings file.

Any ideas where I could be going wrong?

I am declaring the bundle name as follows in my strings file.

CFBundleDisplayName = "my App";

A: 

turns out i'd spelt InfoPlist.strings as InfoPList.strings the capital L was preventing it from working.

Damn case sensitiveness!

Bongeh