iOS App Store 上的应用本地化错误

Wrong app localization on the iOS App Store

我在 App Store 上发布的一个应用仅支持法语,但在 App Store 中显示为仅英语。没有 .lproj 目录,但 Info.plist 的 CFBundleDevelopmentRegion 键设置为 frMPMoviePlayerViewController 等标准 iOS 组件已正确翻译成法语。

为什么 App Store 将我的应用程序显示为支持 英语 而不是 法语

这是 App Store 问题 > 本地化显示 > App Store 语言显示下 iTunes Connect 资源和帮助 的文档:

Where do the available languages displayed for my app on the App Store come from? This list of available languages shown on the App Store is based on your app bundle's localization (.lproj) folders. Missing, incorrect, or invalid localizations in your app bundle can be caused by misconfigured localizations in your Xcode project. You cannot change the languages shown on the App Store by editing the localizations on iTunes Connect.

For additional information on localizations and localization (.lproj) folders, submit a technical support request to Developer Technical Support (DTS). To receive support, you must use a Technical Support Incident (TSI).

显然,App Store 忽略了 CFBundleDevelopmentRegion 键,只查找 .lproj 目录。您可能应该尝试添加一个 fr.lproj 目录和一个空的 Localizable.strings 文件。