Iphone – Localization of Default.png is not working

defaultiphonelocalizationxcode

I wonder if anyone has encountered the same problem and how they solve it.

I want to localize Default.png so I do the following steps which from what I understand should be the correct way (please correct me if I'm wrong).

  1. Select Default.png in xcode
  2. Command-I to Get Info
  3. Click on Make File Localizable
  4. Go back to General Tab (why Apple, why?)
  5. Click on Add Localization
  6. Enter es for Spanish according to this:
  7. In finder I replace the Default.png in the es.lproj folder

I have tried in both the simulator and on an iPhone with changing the language between English and Spanish, but I only get the original file. Other localizations like app name and strings works just fine, but not this one…

I'm on xcode 3.2.3

Thanks

Best Answer

I'd thought I'd add the answer for localizing Launch.xib.

  1. Create InfoPlist.strings file. (File,New,Resource,Strings)

  2. Localize it and select your languages

  3. For e.g. the Spanish version, add your launch screen key and name for the Spanish version of your Launch screen

    "UILaunchStoryboardName" = "Launch_es";

  4. Copy your existing Launch.xib to Launch_es.xib, and change the text and/or images to the Spanish translations or Spanish-named images.

Related Topic