GameScripting
GameScripting

Reputation: 17002

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)

Upvotes: 5

Views: 5430

Answers (1)

GameScripting
GameScripting

Reputation: 17002

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

Upvotes: 13

Related Questions