Schema for describing WiX Localization files (.wxl).
You can specify any valid Windows code page by integer like 1252, or by web name like Windows-1252 or iso-8859-1. See [Code pages](../../../tools/codepage/) for more information.
How To: Build a localized version of your installer
How To: Make your installer localizable
Optional code page integer value or web name for the resulting database. You can also specify -1 which will not reset the database code page. See remarks for more information.
Optional culture for this localization file. If the Culture attribute is not provided, the localization file is considered to be language neutral. This culture value is used to filter applicable localization files during the build. Language neutral localization files are always included.
[WiX v5] Optional. Indicates that the localization file's culture is the default culture for a WiX Extension. Only valid when used in a WiX library included in a WiX Extension..
The decimal language ID (LCID) for the culture. Used only when processed by native code using locutil.
Optional code page integer value or web name for the resulting database's SummaryInformation. If not specified, the SummaryInformation codepage will be set to the same value from the Codepage attribute. If no codepage is provided, the SummaryInformation will default to the ANSI codepage. See remarks for more information.
How To: Build a localized version of your installer
How To: Make your installer localizable
Identity of the localized string. Referenced in .wxs files using `!(loc.Id)` or in locutil using `#(loc.Id)`.
Determines if the localized string may be overridden by a definition in another localization file. The default value is `no`.
Indicates whether the string is localizable text or a non-localizable string that must be unique per locale. The value of this attribute is not used by the WiX Toolset. It provided as documentation for localizers to ignore things like GUIDs or identifiers that look like text.
The localized value for this string.
Allows a localization to override the position, size, and text of dialogs and controls.
Identifies the dialog to localize or the dialog that a control to localize is in.
Combined with the Dialog attribute, identifies the control to localize.
For a dialog, overrides the authored horizontal centering. For a control, overrides the authored horizontal coordinate of the upper-left corner of the rectangular boundary. This must be a non-negative number.
For a dialog, overrides the authored vertical centering. For a control, overrides the authored vertical coordinate of the upper-left corner of the rectangular boundary of the control. This must be a non-negative number.
For a dialog, overrides the authored width in dialog units. For a control, overrides the authored width of the rectangular boundary of the control. This must be a non-negative number.
For a dialog, overrides the authored height in dialog units. For a control, overrides the authored height of the rectangular boundary of the control. This must be a non-negative number.
Set this attribute to "yes" to cause the Control to display from right to left. Not valid for a dialog.
Set this attribute to "yes" to cause the Control to be right aligned. Not valid for a dialog.
Set this attribute to "yes" to cause the scroll bar to display on the left side of the Control. Not valid for a dialog.
Override the text of a UI element.
Values of this type must be an integer or a preprocessor variable with the format `$(Variable)` or `$(var.Variable).
Values of this type will either be "yes"/"true" or "no"/"false".