Update links (HTTPSify and drop code.google.com)
[TortoiseGit.git] / Languages / LanguagePack.wxs
blob62de2135e5768922a91e04106439043bb21e4592
1 <?xml version='1.0' encoding='utf-8'?>
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3 <?include ../src/TortoiseGitSetup/Includes.wxi?>
5 <Product
6 UpgradeCode="9ECED698-D4D9-42fd-946D-51CC049D1F6F"
7 Name='$(var.LANGNATIVE) Languagepack for TortoiseGit'
8 Id='*'
9 Language='1033'
10 Codepage='1252'
11 Version='$(var.VersionNumberInternal)'
12 Manufacturer='TortoiseGit'>
14 <Package Id='*' Keywords='Installer'
15 Description="$LANGUI$ language pack for TortoiseGit"
16 Comments='https://tortoisegit.org/'
17 Manufacturer="Frank Li, Sven Strickroth"
18 Platform="$(var.PackagePlatforms)"
19 InstallerVersion='301'
20 Languages='1033'
21 Compressed='yes'
22 SummaryCodepage='1252' />
24 <MajorUpgrade AllowDowngrades="yes" Schedule="afterInstallValidate" />
26 <Media Id='1' Cabinet='langpack.cab' EmbedCab='yes' CompressionLevel="high" />
27 <Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" Secure="yes" />
29 <Property Id="ALLUSERS" Secure="yes">1</Property>
31 <?if $(var.Platform) = "x86" ?>
32 <Condition Message="You are attempting to run the 32-bit installer on a 64-bit version of Windows. Please install the 64-bit version of the TortoiseGit language pack instead.">NOT Msix64</Condition>
33 <?endif ?>
35 <Property Id="INSTALLDIR" Secure="yes">
36 <RegistrySearch Id="TGitInstallationDir" Root="HKLM" Key="Software\[Manufacturer]" Name="Directory" Type="raw" Win64="$(var.Win64YesNo)"/>
37 </Property>
38 <Condition Message="TortoiseGit is not installed. Please install TortoiseGit before installing the language pack">INSTALLDIR</Condition>
40 <Directory Id='TARGETDIR' Name='SourceDir'>
41 <Directory Id='D__ProgramFilesFolder' ShortName="PFiles" Name="Program Files">
42 <Directory Id='INSTALLDIR' Name='TortoiseGit'>
43 <Directory Id='LanguagesFolder' Name='Languages'>
44 <Component Id='Main' Guid='9D004446-94B4-4b9d-8C95-0BD46008A2A5'>
45 <?if $(var.TSVNHelpFile) = "$COUNTRYCODE$" ?>
46 <File Id='HELPPROC' Name='TortoiseSVN_$COUNTRYCODE$.chm' DiskId='1' Source='..\doc\output\TortoiseSVN_$COUNTRYCODE$.chm' Vital='no'></File>
47 <?endif?>
48 <?if $(var.TMergeHelpFile) = "$COUNTRYCODE$" ?>
49 <File Id='HELPMERG' Name='TortoiseMerge_$COUNTRYCODE$.chm' DiskId='1' Source='..\doc\output\TortoiseMerge_$COUNTRYCODE$.chm' Vital='no'></File>
50 <?endif?>
51 <?ifdef var.SPELL ?>
52 <?include spell/$(var.COUNTRYID).wxi?>
53 <?endif?>
54 <File Id='PROCDLL' Name='TortoiseProc$(var.COUNTRYID).dll' DiskId='1' Source='..\bin\$(var.ReleasePath)\bin\TortoiseProc$(var.COUNTRYID).dll' Vital='yes'></File>
55 <File Id='MERGDLL' Name='TortoiseMerge$(var.COUNTRYID).dll' DiskId='1' Source='..\bin\$(var.ReleasePath)\bin\TortoiseMerge$(var.COUNTRYID).dll' Vital='yes'></File>
56 <File Id='BLAMDLL' Name='TortoiseGitBlame$(var.COUNTRYID).dll' DiskId='1' Source='..\bin\$(var.ReleasePath)\bin\TortoiseGitBlame$(var.COUNTRYID).dll' Vital='yes'></File>
57 <File Id='IDIFDLL' Name='TortoiseIDiff$(var.COUNTRYID).dll' DiskId='1' Source='..\bin\$(var.ReleasePath)\bin\TortoiseIDiff$(var.COUNTRYID).dll' Vital='yes'></File>
58 <File Id='UDIFDLL' Name='TortoiseGitUDiff$(var.COUNTRYID).dll' DiskId='1' Source='..\bin\$(var.ReleasePath)\bin\TortoiseGitUDiff$(var.COUNTRYID).dll' Vital='yes'></File>
60 <?if $(var.Platform) = "x64" ?>
61 <File Id='PROCDLL32' Name='TortoiseProc32$(var.COUNTRYID).dll' DiskId='1' Source='..\bin\$(var.ReleasePath32)\bin\TortoiseProc$(var.COUNTRYID).dll' Vital='yes'></File>
62 <?endif ?>
64 </Component>
65 </Directory>
66 </Directory>
67 </Directory>
69 </Directory>
71 <Feature Id='Complete' Title='Binaries' Description='The complete language pack.'
72 Display='expand' Level='1' ConfigurableDirectory='INSTALLDIR'>
73 <Feature Id='Main' Title='Program' Description='The language pack files.' Level='1'>
74 <ComponentRef Id='Main' />
75 </Feature>
76 </Feature>
78 <UIRef Id="WixUI_LanguagePack" />
79 <UIRef Id="WixUI_ErrorProgressText" />
81 <WixVariable Id="WixUIBannerBmp" Value="Banner.jpg" />
82 <WixVariable Id="WixUIDialogBmp" Value="Dialog.jpg" />
86 <InstallExecuteSequence>
87 <!-- These 'Suppress' statements prevent the installer from getting
88 registered and from being shown in the software panel. With both
89 suppressed, the installer simply copies the files without any
90 trace left. -->
91 <PublishProduct Suppress='yes' />
92 <RegisterProduct Suppress='yes' />
93 <RegisterUser Suppress='yes' />
94 <PublishFeatures Suppress='yes' />
95 </InstallExecuteSequence>
97 </Product>
98 </Wix>