是否可以仅根据区域本地化 iOS 应用程序名称?

Is it possible to localize an iOS app name based on region only?

我正在为 iOS 开发我的 Cordova+Ionic 应用程序的国际化版本。目前的应用名称是瑞典语,我想保留瑞典市场的名称,但国际应用将有一个新名称。

我需要该应用程序为瑞典的所有用户提供瑞典语名称,无论选择何种语言。 是否可以仅根据地区本地化应用名称?

我知道您可以使用具有 CFBundle(Display)Name 属性的 InfoPlist.strings 资源对其进行本地化,但是用于确定要使用的资源的语言环境(据我所知)完全基于设备首选 language/locale 设置,不考虑设备的区域设置。

例如,当首选语言设置为 英语(英国)[=30= 时,会加载 en-GB 语言环境(位于 en-GB.lproj/InfoPlist.strings)的资源],但不适用于 English,区域设置为 United Kingdom

谢谢

不,目前这是不可能的

这是摘自 documentation:

First, the bundle determines which localization to use for the application as a whole. If a .lproj folder exists for the preferred language, that localization is used. Otherwise, the bundle searches for an .lproj folder matching the next preferred language, and so on, until one is found. If there is no localization for a preferred language, the bundle chooses the development language localization.