What's the correct way of localizing 3D Touch shortcuts that we define in Info.plist? I have a InfoPlist.strings for each language, however the 3D Touch shortcuts are defined in a UIApplicationShortcutItems array that defines multiple arrays of dictionaries. It's not clear how we're supposed to localize this in each language InfoPlist.strings.
Localization of 3D Touch shortcuts?
For static shortcuts you put the translation key in the Info.plist where you define your shortcuts. E. g. UIApplicationShortcutItemTitle: translationKey
You add the translations then in the localized InfoPlist.strings files. translationKey = "My localized title";