How to add entries in InfoPlist.string for localekey used in InfoAdditions
Hi All,
Our application is using AIR 23 and need to use static menu item for 3D touch, which we are able to use correctly.
We are able to create this entry using code :
<key>UIApplicationShortcutItems</key>
<array>
<dict>
<key>UIApplicationShortcutItemTitle</key>
<string>MENU_ITEM_LOCALE</string>
<key>UIApplicationShortcutItemType</key>
<string>com.mystaticItem</string>
<key>UIApplicationShortcutItemIconFile</key>
<string>staticItemIcon</string>
</dict>
</array>
These menu items needs to be localized for which required entries needs to be created into InfoPlist.strings. We are not able to find any suitable way to create this entry in the InfoPlist.strings.
This filename is also a restricted file name, which cannot be packaged from application.
Please guide, how we can support this type of localization.
