Problem with CFBundleLocalizations and CFBundleDisplayName

Hi there!
We are working in a localized app with suport to Portuguese, English and Spanish. Everything was ok until setting up CFBundleLocalizations in build.settings. Before that, the CFBundleDisplayName worked fine for all the three languages, now (after setting CFBundleLocalizations) just English and Portuguese works and when my devide is in spanish it shows my app name in english.

my build.settings

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
settings = {
  orientation = {
    default = "landscapeLeft",
    content = "landscapeLeft",
    supported = {
      "landscapeLeft",
      "landscapeRight",
    }
  },
  iphone = {
    plist = {
      CFBundleLocalizations = {
        "Portuguese",
        "Spanish",
        "English",
      },
      CFBundleVersion = "1.0.0",
    }
  }
}

Try this:

1
2
3
4
5
CFBundleLocalizations = {
        "pt",
        "es",
        "en",
      }
views:2121 update:2011/10/17 8:58:49
corona forums © 2003-2011