How can I return a static string (i.e. "AAA") when I am passing a key to NSLocalizedString() that does not exist in the localization file? I could only find information on how to fall back to a default language but not how to return a hardcoded string in case the key does not exist in the localization file.
This code works for me but I need a fallback option:
let localizationKey = "articles_label_" + type.lowercased()
let localizedValue = localizationKey.localized