Kiln » TortoiseHg » TortoiseHg
Clone URL:  
thg-i18n.wxs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <?define thg_po_langs = cs;da;de;en_GB;es;fa;fr;he;hr;hu;it;ja;ko;nl;nn;oc;pl;pt;pt_BR;ru;sv;tr;uk;zh_CN;zh_TW ?> <!-- lang 'ca' is used for key path --> <Fragment> <DirectoryRef Id="i18ndir"> <Directory Id="thgI18nFolder" Name="tortoisehg"> <Component Id="thgI18nFolder" Guid="{69E6E182-BCD2-4b03-A941-7B9A054DF7AF}"> <File Id="thg.ca.po" Source="$(var.SourceDir)\tortoisehg\ca.po" KeyPath="yes" /> <?foreach LANG in $(var.thg_po_langs) ?> <File Id="thg.$(var.LANG).po" Source="$(var.SourceDir)\tortoisehg\$(var.LANG).po" /> <?endforeach?> </Component> </Directory> </DirectoryRef> </Fragment> </Wix>