Reputation: 3306
XCode 5.1.1 storyboard Localizations not show item when I added language string item.
I will set Localizations in the storyboard.
I'm use xCode5.1.1 . I set in info "Localizations" Properties.
I add a item name is Chinese (traditional).
Then I add a string (Localizable.strings(Chinese).strings) in Supporting Files.
But there are not show my string item in my storyboard.so I can't select the add string file.
Have any one know how to resolve this question?
I'm use Xcode 5.1.1.
Thank you very much.
Upvotes: 0
Views: 717
Reputation: 12051
You should just add the Localizable.strings
file over there. It's a universal file that is then used to localize all other languages. And that's it.
That's how it looks.
You then have to localize it yourself via the menu:
And then, when I add the new language from the menu it looks like this:
And then, magically, I've got a new localization everywhere!
Upvotes: 2