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!!

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

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
settings =  {
 
    ... snip ...
 
    iphone = {
        plist = {
 
            ... snip ...
 
            CFBundleLocalizations = {
                "English",
                "Chinese",
                "German"
            },
        
        },
    },
 
}

Thanks for the tip,

Will try it next submission.

Best,

Phil

Thanks for posting the solution! This was on my list of "stuff to find out more about".
Eric

views:1602 update:2011/9/27 8:54:05
corona forums © 2003-2011