Kiln » TortoiseHg » TortoiseHg
Clone URL:  
i18n.wxs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <?include guids.wxi ?> <?define hg_po_langs = da;de;el;fr;it;ja;pt_BR;sv;zh_CN;zh_TW ?> <Fragment> <DirectoryRef Id="INSTALLDIR"> <Directory Id="i18ndir" Name="i18n" FileSource="$(var.SourceDir)"> <Component Id="i18nFolder" Guid="$(var.i18nFolder.guid)"> <File Name="hggettext" KeyPath="yes" /> <?foreach LANG in $(var.hg_po_langs) ?> <File Id="hg.$(var.LANG).po" Name="$(var.LANG).po" /> <?endforeach?> </Component> </Directory> </DirectoryRef> </Fragment> </Wix>