I have Localizable.strings files for eng, span, port, rus, arab, chin.
A very strange issue started to happen, the key is showing up instead of the value. What makes it strange is that this is what caused it stop working:
I had:
self.title = NSLocalizedString(@"1OF5", @"");
In ViewControllerA, which worked fine. I then copy and pasted the line of code to ViewControllerB. Now the key '1OF5' is showing up instead of the value in the .strings file.
All the other NSLocalizedStrings work fine throughout the app (100+ of them), except this one >:|
I have tried:
- Deleting app and re-installing
- Restarting device
- Cleaning project and re-installing
- Restarting device, cleaning project, and re-installing
- Deleting the .strings file and adding it in again
I am pulling my hair out on this one. Any help would be much appreciated.