Home > other >  SwiftUI application localized the wrong way on Xcode?
SwiftUI application localized the wrong way on Xcode?

Time:09-01

I have a localized (in English and in French) iPhone app on the App Store and there's something I'm wondering for a while without being able to get a response.

As you can see on the image below (from Xcode), English is set as the Development Language but not as the Base one so I'm wondering what happens for a user in Spain (with a phone in Spanish) or in Germany (in German), etc? What language did he sees on the App Store?

Localizations on Xcode

Maybe I'm freaking out for nothing! But English as the Base and not the Development Language would be more logic? Unfortunately, I can't try it myself, making my phone in Spain/Spanish because I still get the French App Store.

Thanks!

CodePudding user response:

The localization setting has nothing to do with the AppStore. It's related to the end user's device (or app-specific) region. You can add your localized files for any localization you need (by selecting the file and adding to the desired localization from the right pannel), but the default localization will always be English.

So don't worry

  • Related