I have an app with an \"Error\" message. I want to translate this error message.
OK, first I created a file named \"Localizable.strings\". In the file I wrote:
The below mentioned steps might help you :
Add required text into file in following format : "newStringItem" = "This is new String item";
Now the file contents can be used as NSLocalizedString(@"newStringItem", @"") which returns corresponding string.
Vola! Done with Localization!