Show More
@@ -1,34 +1,34 | |||
|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
|
2 | 2 | <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
|
3 | 3 | |
|
4 | 4 | <?include defines.wxi ?> |
|
5 | 5 | |
|
6 | 6 | <?define hglocales = |
|
7 | da;de;el;fr;it;ja;pt_BR;sv;zh_CN;zh_TW | |
|
7 | da;de;el;fr;it;ja;pt_BR;ro;ru;sv;zh_CN;zh_TW | |
|
8 | 8 | ?> |
|
9 | 9 | |
|
10 | 10 | <Fragment> |
|
11 | 11 | <ComponentGroup Id="localeFolder"> |
|
12 | 12 | <?foreach LOC in $(var.hglocales) ?> |
|
13 | 13 | <ComponentRef Id="hg.locale.$(var.LOC)"/> |
|
14 | 14 | <?endforeach?> |
|
15 | 15 | </ComponentGroup> |
|
16 | 16 | </Fragment> |
|
17 | 17 | |
|
18 | 18 | <Fragment> |
|
19 | 19 | <DirectoryRef Id="INSTALLDIR"> |
|
20 | 20 | <Directory Id="localedir" Name="locale" FileSource="$(var.SourceDir)"> |
|
21 | 21 | <?foreach LOC in $(var.hglocales) ?> |
|
22 | 22 | <Directory Id="hg.locale.$(var.LOC)" Name="$(var.LOC)"> |
|
23 | 23 | <Directory Id="hg.locale.$(var.LOC).LC_MESSAGES" Name="LC_MESSAGES"> |
|
24 | 24 | <Component Id="hg.locale.$(var.LOC)" Guid="*" Win64='$(var.IsX64)'> |
|
25 | 25 | <File Id="hg.mo.$(var.LOC)" Name="hg.mo" KeyPath="yes" /> |
|
26 | 26 | </Component> |
|
27 | 27 | </Directory> |
|
28 | 28 | </Directory> |
|
29 | 29 | <?endforeach?> |
|
30 | 30 | </Directory> |
|
31 | 31 | </DirectoryRef> |
|
32 | 32 | </Fragment> |
|
33 | 33 | |
|
34 | 34 | </Wix> |
General Comments 0
You need to be logged in to leave comments.
Login now