I have an application that is localized in two languages. I am trying to change the display name of a package according to the selected localization. Many articles on the Internet do this to localize the Info plist file.
I am using Xcode 4 and it automatically creates a MyProject-Info.plist file containing the display name of the package. As soon as I try to localize it (even having only the first language), I can no longer create the application, because the Identifier field in the "Summary → Purpose of the iOS application" section in the project properties becomes empty (and I can’t edit it).
What happens in the file structure of the project is that the source files of MyProject-Info.plist are moved to the en.lproj folder, and also duplicated to other .lproj folders I have (one for each supported language).
Any clues?
source share