Reputation: 6081
I'm trying to follow Apple's localization guide with my project, but after I select Editor -> Export for Localization, the resulting .xliff file doesn't contain any strings from .xib files. It has only strings from Localizable.strings and from Info.plist.
Upvotes: 3
Views: 794
Reputation: 6081
I did it!
Turns out, it was a project created in old Xcode version that doesn't support Base Internationalization. I had to
After this, the resulting .xliff file has all the .xib strings.
Upvotes: 8