Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm localizing an iPhone app for the first time. I've put all my strings into a Localizable.strings file, accessing them via NSLocalizedString from within my code. Works fine. Next, I have a file called info.html that contains the flesh of a UIWebView that I use as an About box. I've put it in the language folders (en.lproj and de.lproj), and added them to my Resources in Xcode. Now, in Simulator, both the Strings, and the html file display in the appropriate language. However, on the device, the Strings appear localized while the html file remains untranslated.

This is a strange inconsistency between Simulator and Device! Anybody know of a workaround? (...other than defying the localization system, and using NSLocalizedString to call de_info.html, en_info.html etc. by hand.)

share|improve this question

2 Answers

up vote 7 down vote accepted

Try to delete the app first.

When you use Xcode to deploy to the device (or simulator) resources are only added, not removed.
Most likely now you have three html files. One in the de folder, one in the en folder and one in the root folder.

And if it's there iOS prefers the one in the root folder.

As a general rule: When you remove (or like in this case move them around) resources from your project, you should delete the app from the device or the simulator.

share|improve this answer
1  
Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaah. (Sound usually made after staring at IKEA installation instructions for half an hour.) Thank you very much. – Joe Völker Mar 11 '11 at 17:19

Another addition: I also needed to remove the app from my current build directory to make it work (otherwise, the deleted app on the device was then replaced with the wrong version again).

In XCode you can press the 'alt' key within the 'Build' menu and then you have the option to clean the whole build directory.

That finally solved the issue for me. Sigh...

share|improve this answer
+1 for mentioning the "Clean Build Folder" option. I ran into the same problem and a simple "Clean" + deleting the app from the simulator did not appear to solve the issue after removing a XIB localization. This solved the problem for me. – ig2r Mar 13 '12 at 13:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.