sync master with lastest vba changes
[ooovba.git] / transex3 / layout / README
blob1838e2a94ba0d4b47ac2b69f5bc1494c3e4bc034
1 Tralay - Extract and translate strings in Layout xml files.
3 Translatable strings in layout xml files are attributes that have name
4 which starts with an underscore, eg
6     _title="Set Zoom"
7     _label="Whole Page"
9 Here is how it works
11  * Extract: generate out.sdf
12       ../unxlngx6.pro/bin/tralay -l en-US zoom.xml > out.sdf
14  * Translate: do:
15       cat out.sdf > trans.sdf
16       sed 's/en-US\t/de\tde:/' out.sdf >> trans.sdf 
18  * Merge: translate
19      ../unxlngx6.pro/bin/tralay -m trans.sdf -l de zoom.xml > zoom-DE.xml
21 Running
23    dmake test
25 does something similar.
27