1

The default language of my cordova-ios@4.0 project is set to English in Apple Xcode using Cordova 6.0.0 CLI. The iOS context menus will use English even though the iOS device language is localized, such as the select/select all/copy/paste -menu. How can I localize the Cordova app to Norwegian (nb) in Xcode, please?

S5con
  • 13
  • 3

1 Answers1

3

You can change this on the info.plist

<key>CFBundleDevelopmentRegion</key>
<string>nb</string>

Or add this:

<key>CFBundleLocalizations</key>
<array>
    <string>nb</string>
</array>
jcesarmobile
  • 51,328
  • 11
  • 132
  • 176