Kiln » TortoiseHg » TortoiseHg
Clone URL:  
thg-locale.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
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <?include defines.wxi ?> <?define thglocales = ca;cs;da;de;en_GB;es;fa;fr;he;hr;hu;it;ja;nl;nn;pl;pt;pt_BR;ru;sv;tr;uk;zh_CN;zh_TW ?> <Fragment> <ComponentGroup Id="thgLocaleFolder"> <?foreach LOC in $(var.thglocales) ?> <ComponentRef Id="thg.locale.$(var.LOC)"/> <?endforeach?> </ComponentGroup> </Fragment> <?foreach LOC in $(var.thglocales) ?> <Fragment> <DirectoryRef Id="localedir" FileSource="$(var.SourceDir)"> <Directory Id="thg.locale.$(var.LOC)" Name="$(var.LOC)"> <Directory Id="thg.locale.$(var.LOC).LC_MESSAGES" Name="LC_MESSAGES"> <Component Id="thg.locale.$(var.LOC)" Guid="*" Win64='$(var.IsX64)'> <File Id="tortoisehg.mo.$(var.LOC)" Name="tortoisehg.mo" KeyPath="yes" /> </Component> </Directory> </Directory> </DirectoryRef> </Fragment> <?endforeach?> </Wix>