dickfala
dickfala

Reputation: 3306

XCode 5.1.1 storyboard Localizations not show item when I added language string item

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).

enter image description here

Then I add a string (Localizable.strings(Chinese).strings) in Supporting Files.

enter image description here

But there are not show my string item in my storyboard.so I can't select the add string file.

enter image description here

Have any one know how to resolve this question?

I'm use Xcode 5.1.1.

Thank you very much.

Upvotes: 0

Views: 717

Answers (1)

Sergey Grishchev
Sergey Grishchev

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.

enter image description here

That's how it looks.

You then have to localize it yourself via the menu:

enter image description here

And then, when I add the new language from the menu it looks like this:

enter image description here

And then, magically, I've got a new localization everywhere!

enter image description here

Upvotes: 2

Related Questions