Cordova插件字符串翻译

时间:2019-05-20 12:34:17

标签: ios angular cordova permissions

我有我的棱角项目,并使用Cordova制作了apk。
我的应用被拒绝提交到App Store,因为当我请求访问摄像头,位置和其他权限时,我不提供翻译。

我的应用程序支持三种语言(英语,西班牙语和葡萄牙语)

以下是带有默认字符串消息的插件。

<edit-config file="*-Info.plist" mode="merge" target="NSCameraUsageDescription">
   <string>need camera access to take pictures</string>
</edit-config>
<edit-config file="*-Info.plist" mode="merge" target="NSLocationWhenInUseUsageDescription">
   <string>need location access to find somethings nearby (address, devices, installers)</string>
</edit-config>
<edit-config file="*-Info.plist" mode="merge" target="NSPhotoLibraryUsageDescription">
   <string>need photo library access to get pictures from there</string>
</edit-config>
<edit-config file="*-Info.plist" mode="merge" target="NSPhotoLibraryAddUsageDescription">
    <string>need photo library access to save pictures there</string>
</edit-config>

如何翻译权限字符串消息?

0 个答案:

没有答案