Localizing the Cut|Copy|Paste menu on iOS Localizing the Cut|Copy|Paste menu on iOS objective-c objective-c

Localizing the Cut|Copy|Paste menu on iOS


In the Xcode's file tree (Project Navigator) select your project. in the right hand pane select your project again. select Info and add your language.

configure i18n


I created a sample project, this is the result:

enter image description here


You can do this directly in the info.plist. Something like this:

<key>CFBundleDevelopmentRegion</key><string>en</string><key>CFBundleLocalizations</key><array>  <string>en</string>  <string>de</string>  <string>es</string>  <string>ja</string></array>    


Try adding/setting the "Localized resources can be mixed" flag in Info.plist to YES.