Is it possible to localize the app icon and Default.png files? Do I just drop them in the respective language folders or must I do something else?
-
2Duplicate of http://stackoverflow.com/questions/2700311/localization-of-icon-and-default-screen-in-iphone – BoltClock Jun 15 '10 at 18:29
-
@BoltClock, so vote to close please. I did, once you posted that. – Moshe Jun 15 '10 at 18:33
-
I don't have enough rep to vote to close other questions. – BoltClock Jun 15 '10 at 18:34
-
@Ok. Thanks for the comment though. It got me my answer. I'll upvote you to help the rep. ;) – Moshe Jun 15 '10 at 18:36
-
Heh, thanks. Except, upvoting my comments doesn't give me rep, sadly, only answers! D: – BoltClock Jun 15 '10 at 18:37
2 Answers
The correct answer is that it is not possible to localize the app icon.
An iOS application should be internationalized and have a language.lproj folder for each language it supports. In addition to providing localized versions of your application’s custom resources, you can also localize your application icons and launch images by placing files with the same name in your language-specific project directories. Even if you provide localized versions, however, you should always include a default version of these files at the top-level of your application bundle. The default version is used in situations where a specific localization is not available. For more information about localized resources, see “Localized Resources in Bundles.”
Apple docs update/change frequently. This is the correct link at this point in time. Also, I haven't actually tried localizing the app icon/default images, but Apple says it works so why not :-)
This same question appears numerous times on stackoverflow.

- 15,955
- 18
- 111
- 232
-
-
This is short,, But wrong answer,, Advice:If you do not know the answer, Don't misguide others with wrong answers... – Sundeep Saluja May 21 '13 at 12:40
-
As per my comment, there's an answer elsewhere, but you can read more in the Internationalizing Your Application section of the iPhone Application Programming Guide. There's an example of how to structure your language files in your app bundle, for example.

- 700,868
- 160
- 1,392
- 1,356
-
Sure did, +10 for upvote and +15 for accept. The Stack Overflow FAQ has all you need to know about rep http://stackoverflow.com/faq – BoltClock Jun 15 '10 at 18:58
-
-