Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IPA language with Visual studio (Cordova)

I have a problem when I try to set the language of the IPA. My App is in French but only English is added in the generated IPA. I do not kwnow how to change this. I use visual studio with Cordova tools.

I have tried to add a locales folder but it changes nothing...

Do you have an idea of what I need to do in order to add French to the IPA?

Thanks for your help.

like image 886
Kenin Avatar asked Jul 07 '15 15:07

Kenin


1 Answers

You would need to specify that in your Info.plist file. You are able to supply a custom Info.plist with your build.

In your .plist file you will then be able to specify the localization as follows:

<key>CFBundleLocalizations</key>
<array>
    <string>English</string>
    <string>French</string>
</array>

To find out more adding custom configuration files, please have a look at MSDN's Platform-specific configuration files

like image 70
Ibanez Avatar answered Oct 11 '22 04:10

Ibanez