Reputation:
Anybody know why my localized strings are being ignored?
Thanks.
Upvotes: 0
Views: 309
Reputation: 4920
Files Settings.bundle/XX.lproj/Root.strings
are used only in Settings.bundle.
If you would like to use NSLocalizedString
function, add to project empty .string file, name it Localizable.strings, and make localizable.
This file is used by NSLocalizedString
function.
Upvotes: 1