Xcode Localization does not work?

I'm trying to add a new location for your application for Mac OS X (Mountain Lion). I have added the appropriate localization in a dashboard project, and made all the localized files .xib . I also added and translated .strings file and replace the files on the file .xib translated strings. Then everything seemed to work, and Interface Builder shows the corresponding translations for each localization file xib . However, when I actually run the application, it is displayed in English, even though the default language for my system is not English. I also have a file Localizable.strings for some shortcuts, but for those that I used NSLocalizedString , works fine. I'm not sure I missing here?

Thanks in advance.

+4
source share
2 answers
  • Assemble clean (Command-Option-Shift-K)
  • Delete the app from the simulator / device
  • Run the application
+21
source

Make sure that you have marked the desired membership in its target. I had the same problem, because I have to manually add the string.

Look at the image. enter image description here

0
source

All Articles