I localize the application in Spanish and the characters are encoded in the Localizable.strings file for this language using Unicode. For example, I have an entry:
"login.saveSettings"="Guardar configuraci\\u00F3n:";
which is displayed in UILabel in the same way ("Guardar configuraci \\ u00F3n:") instead of "Guardar configuración:". I tried various options, such as "\ u00F3" or "\\ U00F3", but without any success.
I am using NSLocalizedString as follows:
self.saveSettingsLabel.text = NSLocalizedString(@"login.saveSettings", @"Save Settings:");
What am I doing wrong?
Thanks for any help! Mihai
iphone unicode localization nslocalizedstring
Mihai fonoage
source share