Skip to content

Instantly share code, notes, and snippets.

@zett42
Last active October 10, 2024 10:19
Show Gist options
  • Select an option

  • Save zett42/6dc6cf8330535e223c5f706d73f3b5d7 to your computer and use it in GitHub Desktop.

Select an option

Save zett42/6dc6cf8330535e223c5f706d73f3b5d7 to your computer and use it in GitHub Desktop.
Customize a Wix v5 theme with automatic localization
<BootstrapperApplication>
<bal:WixStandardBootstrapperApplication
Theme="rtfLargeLicense"
ThemeFile="Theme.xml"
LicenseFile="1033\License.rtf"
LocalizationFile="1033\thm.wxl"
LogoFile="logo.png"
ShowVersion="yes"
/>
<!-- Workaround for showing corect icon in the Window caption in taskbar -->
<Payload Name="icon.ico" SourceFile="res\icon.ico" Compressed="yes" />
<!-- The standard bootstrapper will automatically choose the right localization according to the OS display language.
Folder names are LCIDs. File names are also significant! -->
<Payload Id="thm_de" Name="1031\thm.wxl" SourceFile="1031\thm.wxl" Compressed="yes" />
<Payload Id="lic_de" Name="1031\License.rtf" SourceFile="1031\License.rtf" Compressed="yes" />
<Payload Id="thm_en" Name="1033\thm.wxl" SourceFile="1033\thm.wxl" Compressed="yes" />
<Payload Id="lic_en" Name="1033\License.rtf" SourceFile="1033\License.rtf" Compressed="yes" />
</BootstrapperApplication>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment