How to add localization language in Xcode 4.4?

Regarding this guide: How to localize my application using Xcode 4?

I noticed that in the "Localization" section, my Xcode 4.4 does not show the [+] button:

enter image description here

How to add languages ​​to the localization list?

Note: I do not use IB. I just need a localized string file with translated strings for the game.

My workaround: I created the de.lproj folders manually, copied the line file to the de.lproj file, added it to Xcode, and Xcode recognized the file as German. Xcode also added German to the localization list. I am wondering if there is an easier way to do this (from within Xcode) instead of copying and adding files manually?

+8
xcode localization
source share
1 answer

Select a project from the project navigator to open the project editor. Select the project on the left side of the project editor. Click the "Information" button at the top of the editor. You should see a list of localizations along with a button to add localization. Click the Add button and select a language. A sheet will open that allows you to select files for localization.

+23
source share

All Articles