Say I modify the default XIB (in en.lproj) by adding a button or something similar.
I need to apply these changes to other existing localized versions of the XIB (e.g. es.lproj, ja.lproj).
If I rewrite the XIB then I clearly lose any tweaks made to the localized XIB. For instance, say I reduced the font size on a button in the XIB for ja.lproj.
E.g. this overwrites:
ibtool --strings-file ja.strings en.lproj/any.xib --write ja.lproj/any.xib
How can I effectively merge changes between XIBs? Is it possible?
Do I have to just suck it up and redo the tweaks in localized XIBs any time I make a change in the "root" or default XIB?
Thanks!