I have create a Localizable.strings file with 2 language, en & jp.
en: "key"="english";
jp: "key"="日本";
It works good when using en & jp.
_title.text = NSLocalizedString(@"key",nil);
But when I using other language,like German,the label will display key in the view.I want to show the key of en strings value default.
How to set to load en when the user using other language without en & jp?