iOS Question Displayed app language in the App Store

roumei

Active Member
Licensed User
I've got an app in the App Store which is only available in Germany and thus the only language is German. However, the displayed language in the store is English (see image). Does anyone know how to change the displayed language?

I think it's related to CFBundleDevelopmentRegion in the info.plist file.
B4X:
<key>CFBundleDevelopmentRegion</key>
<string>en</string>

I can think of two things to try out but I'd like to ask first because the approval process takes quite a while.

1) Will another #PlistExtra entry with 'de' override the first CFBundleDevelopmentRegion entry and change the displayed language from English to German?
B4X:
#PlistExtra: <key>CFBundleDevelopmentRegion</key><string>de</string>

2) Or should I add a de.lproj folder with a InfoPlist.strings file and the content:
B4X:
"CFBundleDisplayName" = "Bewegungsradius";
"CFBundleName" = "Bewegungsradius";
This will probably display German as language but will it get rid of English as well?

Any hints are very much appreciated. Thank you!

Language_AppStore.jpg
 
Top