According to apple documentation, notification payload can carry "loc-key" key which identifies localization string key in app bundle. What will happen if there will be no such key in app's bundle (for instance, when there were updates on the server and new notification types were added)?
You will most likely get the default behaviour of NSBundle
's localizedStringForKey:value:table:
method which is to return the key when the value can not be found.