NslocalizedString return the key instead of the value
ios, nslocalizedstring
Solution
Your string files name have to be Localizable.strings.
Problem
I create tow Localizable.strings files one for english and the second for arabic : ``` /* The number 1 */ "LABEL_ONE" = "label number one"; ``` I am using this code to get the string value: ``` [self.Lable1 setText:NSLocalizedString(@"LABEL_ONE", @"The number 1")]; ``` but the app show "LABEL_ONE" instead of "label number one" ? What's the problem ? Thanks