What controls the languages shown as supported in an iPhone app's iTunes page (in the right side, below "Description", under "Languages")? From the iTunes Connect Developer's Guide it appears it's not something you choose during submission. I assume it's something in the bundle.
|
feedback
|
|
I used a technical support incident to ask this question of Apple directly. Here is the answer: "The list of languages supported by the app, as shown in the iTunes store screenshot you sent, is automatically determined by inspecting the submitted application bundle. Typically, this comes from the .lproj folders in a bundle, as the process (and iOS) use this to determine what languages the application can support. However, it is also possible to provide your own localization support system in the application without using .lproj folders (although this is typically much more work) -- in this scenario, the list of supported languages is specified in the application's plist file, via the CFBundleLocalizations key. See the following docs (and the guide linked to in the docs) for more info on this: | |||
|
feedback
|
|
You don’t have to specify anything in iTunes Connect. They seem to scan the contents of the bundle and look at the localization subdirectories: I’ve got en.lproj, nl.lproj, and de.lproj in my app and iTunes lists "English, Dutch and German" as supported languages. | |||||||
feedback
|