How to have several supported languages listed in Apple App Store entry?

When I check certain apps, to the left side in the App Store details page it will say e.g. “Languages: English, Chinese, French”. For my app, it only lists English, even though it supports 3 languages and was submitted with 3 descriptions in iTunes Connect. How can I get my app to list all its languages on the Apple App Store details page? Is it a value perhaps somewhere in the plist of the build.settings file?

Thanks!! [import]uid: 10284 topic_id: 11390 reply_id: 311390[/import]

Hi,

Any update on that ?

I guess there need to be some entries in the build.settings file, but which ?

It’s a pity localisation is pretty easily made with corona’s strings and hashes, but we can’t advertise it on the AppStore.

Thanks,

Phil [import]uid: 51301 topic_id: 11390 reply_id: 51357[/import]

I later found out how it works. Do this in your build.settings file:

[code]settings = {

… snip …

iphone = {
plist = {

… snip …

CFBundleLocalizations = {
“English”,
“Chinese”,
“German”
},

},
},

}[/code]

The order it shows up seems to be almost independent from your order… Here’s a result showing the order as above, but in my German iTunes it shows exactly reverse: http://itunes.apple.com/us/app/nervous-fly/id449706857 [import]uid: 10284 topic_id: 11390 reply_id: 51358[/import]

Thanks for the tip,

Will try it next submission.

Best,

Phil [import]uid: 51301 topic_id: 11390 reply_id: 51364[/import]

Thanks for posting the solution! This was on my list of “stuff to find out more about”.
Eric [import]uid: 29384 topic_id: 11390 reply_id: 51414[/import]