I’m trying to localize the usage descriptions in my app. Specifically, the NSPhotoLibraryUsageDescription.
I have successfully localized the app name following the localization guide, but can’t find any documentation anywhere about localizing the usage descriptions. I attempted to do it by just adding descriptions into the individual language InfoPlist.strings file like this:
CFBundleDisplayName = “myLocalizedAppName”;
CFBundleName = “myLocalizedAppName”;
NSPhotoLibraryUsageDescription = “myLocalizedUsageDescription”;
This doesn’t seem to work. I’ve been getting the following error from the App Store:
ITMS-90038: Malformed InfoPlist.strings file: ‘es.lproj/InfoPlist.strings’
Does anyone know how to do this?