I was wondering how I can achieve the following with the Okapi Framework / Rainbow:
Convert Java I18N properties files to XLIFF for translation where some translations already exist and shall be part of the XLIFF file.
I have two Java properties files:
- main_en.properties
- main_de.properties
where main_en.properties is the reference file with all key/value pairs for I18N. main_de.properties contains already some translations but not all. Now I'd like to create an XLIFF file for translation from EN to DE with main_en.properties as the base (source) where existing translations are taken from main_de.properties (target).
How would such a pipeline in Rainbow with the necessary steps look like?