user2871193
user2871193

Reputation: 19

Localization in Xcode 5

I have around 1000 strings from storyboards and .m files which are converted for French Language. I need to add more strings to the same project. How do I update the strings file for my project?

Thanks

Upvotes: 1

Views: 73

Answers (1)

gontovnik
gontovnik

Reputation: 700

Usually people put all localization is in Localizable.strings file. If you want to add more string simply add "KEY" = "TRANSLATION"; to that file and use NSLocalizedString(key, comment) in your project where it is needed.

If you want to localize storyboard and/or nib files then you have to enable Base Internationalization in project settings.

Upvotes: 1

Related Questions