Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wix installer change ui language

Since the default language for the WiX installler UI is english, I'd like to change to another langue like german or something. I'm sure the must be some predefined langue packs, coming with the toolkit?

Is there a way can I change the language of the WiXs default installer UI?

(I am using the Visual Studio (2012) Addin)

like image 375
GameScripting Avatar asked Sep 13 '12 13:09

GameScripting


1 Answers

You can simply add a parameter to the WiX linker (light.exe): -cultures:culture-code You can find all culture codes here.

When using Viual Studio simply open the project properties and add the -cultures:culture-code to the linkers parameters:

enter image description here

like image 125
GameScripting Avatar answered Sep 19 '22 23:09

GameScripting