Change Language displayed in App Store (iOS)

Hi,

I would like to change the language that is displayed in the App Store for my app. In the app users can choose between German, French and Italian. I want the languages that are displayed in the App Store to be German, French and Italian instead of English. How can I change this?

Thanks a lot and best regards
Rafael

You can add supported languages in the Info.plist by adding a CFBundleLocalizations array like this:

<key>CFBundleLocalizations</key>
<array>
    <string>German</string>
    <string>French</string>
    <string>Italian</string>
</array>

You should probably change the CFBundleDevelopmentRegion too since it uses English by default and you don’t want to support English:

<key>CFBundleDevelopmentRegion</key>
<string>de</string>

Thank you for your suggestion, @julio-ionic ! :+1: This is bringing me one step closer to what I wanted to achieve. Now the Languages tab says the languages of the app are “German”. The other two languages, Italian and French are not displayed though. What to do?