Reputation: 5455
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
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