Reputation: 19
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
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