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?
Asked
Active
Viewed 460 times
1 Answers
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