info.plist 上的本地化列表不完整

Localizations list on info.plist is incomplete

我正在尝试将几种语言添加到 App Store 的语言列表中,目前它说我的应用仅支持英语,但实际上它支持英语、中文(简体)、西班牙语和巴西葡萄牙语。我手动翻译了我的应用程序,一切都在代码中。

我试图通过编辑 info.plist 来克服这个问题,我添加了一个 localizations 键,但是当我尝试添加值时,有一个只有 9 个值的小列表,如下所示图片显示:

如何获得更多价值?我可以在那里写任何值吗?

这篇Link might help you. In this link there is a note "If the language doesn’t appear in the Localizations section in the Info pane of your project, add the language before following these steps, as described in Using Base Internationalization”希望对您有所帮助。

您可以使用您喜欢的文本编辑器编辑 info.plist 文件:

<key>CFBundleLocalizations</key>
<array>
    <string>en</string>
    <string>es</string>
    <string>pt</string>
</array>