I have a simple problem and I can't figure out how to make it work.
I have two targets:
- TargetApp1
- TargetApp2
I have two Localizable.strings:
- For translation for a second language.
- For different names (on both languages), only for TargetApp2.
Example: I have a button, a text, or something. On each app it should be different.
- TargetApp1: en: "Store" - lg: "STORE_"
- TargetApp2: en: "Dealer" - lg: "DEALER_"
I tried keeping the first Localizable.strings for both targets and making the second Localizable.strings for the second target only. The problem is that only ONE Localizable.strings is loaded at a time. I wanna know how to make the TargetApp2 make both Localizable.strings complement each other.