Reputation: 61
How can my app show more then one language in the iTunes AppStore? My application is translated in 5 languages , but when I upload it to iTunesConnect it doesn't show me the other languages in iTunes, only English. I attached a pic of an app where it is shown that it supports more languages: http://msf-invest.com/images/pic1.png
So how can I do the same - my app to shows other languages (for ex. English, Russian , German). I mean all the languages in which my app is translated into.
Upvotes: 2
Views: 807
Reputation: 10329
If you have translated the application, and your project settings are set to support several localization (see screenshot from one of my projects), then it should show. Please make sure the project is localized.
Upvotes: 1
Reputation: 1852
How do you manage translations ? If you are using the NSLocalizedString macro, you need a Localized.strings file for each language.
Just add the translation folders (containing each Localized.strings file) to your project : en.lproj, fr.lproj, ... iTunes will automatically recognize those.
Upvotes: 0