I have an application that has different sets of strings based on the target. Is it possible to have one base strings file and then only override a few keys in another?
For example, if my base file is this:
"some-string" = "base-value"
"other-string" = "1234"
Then for one of my targets, associate another strings file that has the following:
"some-string" = "overridden-value"
So, if I run the target that contains the additional strings file, the output would be:
NSLocalizedString(@"some-string", nil) => "overridden value"
NSLocalizedString(@"other-string", nil) => "1234"
I would greatly prefer not to throw unmodified strings in the overriding strings file. Any help would be greatly appreciated.