Pattern: Missing static key for NSLocalizedString
Issue: -
Static strings should be used as key in NSLocalizedString
in order to genstrings
work.
Examples of correct code:
NSLocalizedString("key", comment: nil)
NSLocalizedString("key" + "2", comment: nil)
Examples of incorrect code:
NSLocalizedString(↓method(), comment: nil)
NSLocalizedString(↓"key_\(param)", comment: nil)