Galip
Galip

Reputation: 5455

Localize Settings.bundle with Localizable.strings instead of Root.strings

Because of the automated download of localization files in my app I was wondering if it was possible to localize Root.plist in Settings.bundle using Localizable.strings instead of Root.strings

Upvotes: 2

Views: 436

Answers (1)

strongwillow
strongwillow

Reputation: 338

To use Localizable.strings, we have to use NSLocalizedString for referencing. Both docs for Localizing Your App and Implementing an iOS Settings Bundle don't mention such a method.

From my understanding, the Settings.bundle will be copied to a system folder outside app folder at the time of installation. Your app cannot reach this folder.

Upvotes: 1

Related Questions