Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSLocalizedString not working for some word

I have english, Japanese, korea Localizable.strings file. I cannot load some word from korea file. I have checked spelling, capital letter or small letter also. It is correct. I have cleaned project, reset simulator and delete app on device also. It is not working for some words. May I know how to do?

like image 552
Khant Thu Linn Avatar asked May 01 '15 05:05

Khant Thu Linn


1 Answers

A common problem is this: If there is an error in your localisable.strings file, anything after that error will be just ignored. The line that you are checking may be fine; if the line 10 lines above is broken, it won't work. If that is the problem, for example the item in the next line isn't going to work either.

Cleaning project, reset simulator, delete app on device, are all not going to do anything for you.

like image 146
gnasher729 Avatar answered Oct 05 '22 20:10

gnasher729