aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/Common.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixlib/Common.wxs')
-rw-r--r--src/wixlib/Common.wxs70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/wixlib/Common.wxs b/src/wixlib/Common.wxs
new file mode 100644
index 00000000..8f870499
--- /dev/null
+++ b/src/wixlib/Common.wxs
@@ -0,0 +1,70 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4
5<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
6 <Fragment>
7 <Binary Id="WixUI_Bmp_Banner" SourceFile="!(wix.WixUIBannerBmp=$(var.bannerBmp))" />
8 <Binary Id="WixUI_Bmp_Dialog" SourceFile="!(wix.WixUIDialogBmp=$(var.dialogBmp))" />
9 <Binary Id="WixUI_Ico_Exclam" SourceFile="!(wix.WixUIExclamationIco=$(var.exclamationIco))" />
10 <Binary Id="WixUI_Ico_Info" SourceFile="!(wix.WixUIInfoIco=$(var.infoIco))" />
11 <Binary Id="WixUI_Bmp_New" SourceFile="!(wix.WixUINewIco=$(var.newIco))" />
12 <Binary Id="WixUI_Bmp_Up" SourceFile="!(wix.WixUIUpIco=$(var.upIco))" />
13 <WixVariable Id="WixUICostingPopupOptOut" Value="1" Overridable="yes" />
14
15 <UI Id="WixUI_Common">
16 <!-- ui text -->
17 <UIText Id="AbsentPath" />
18 <UIText Id="bytes">!(loc.UITextbytes)</UIText>
19 <UIText Id="GB">!(loc.UITextGB)</UIText>
20 <UIText Id="KB">!(loc.UITextKB)</UIText>
21 <UIText Id="MB">!(loc.UITextMB)</UIText>
22 <UIText Id="MenuAbsent">!(loc.UITextMenuAbsent)</UIText>
23 <UIText Id="MenuAdvertise">!(loc.UITextMenuAdvertise)</UIText>
24 <UIText Id="MenuAllCD">!(loc.UITextMenuAllCD)</UIText>
25 <UIText Id="MenuAllLocal">!(loc.UITextMenuAllLocal)</UIText>
26 <UIText Id="MenuAllNetwork">!(loc.UITextMenuAllNetwork)</UIText>
27 <UIText Id="MenuCD">!(loc.UITextMenuCD)</UIText>
28 <UIText Id="MenuLocal">!(loc.UITextMenuLocal)</UIText>
29 <UIText Id="MenuNetwork">!(loc.UITextMenuNetwork)</UIText>
30 <UIText Id="NewFolder">!(loc.UITextNewFolder)</UIText>
31 <UIText Id="ScriptInProgress">!(loc.UITextScriptInProgress)</UIText>
32 <UIText Id="SelAbsentAbsent">!(loc.UITextSelAbsentAbsent)</UIText>
33 <UIText Id="SelAbsentAdvertise">!(loc.UITextSelAbsentAdvertise)</UIText>
34 <UIText Id="SelAbsentCD">!(loc.UITextSelAbsentCD)</UIText>
35 <UIText Id="SelAbsentLocal">!(loc.UITextSelAbsentLocal)</UIText>
36 <UIText Id="SelAbsentNetwork">!(loc.UITextSelAbsentNetwork)</UIText>
37 <UIText Id="SelAdvertiseAbsent">!(loc.UITextSelAdvertiseAbsent)</UIText>
38 <UIText Id="SelAdvertiseAdvertise">!(loc.UITextSelAdvertiseAdvertise)</UIText>
39 <UIText Id="SelAdvertiseCD">!(loc.UITextSelAdvertiseCD)</UIText>
40 <UIText Id="SelAdvertiseLocal">!(loc.UITextSelAdvertiseLocal)</UIText>
41 <UIText Id="SelAdvertiseNetwork">!(loc.UITextSelAdvertiseNetwork)</UIText>
42 <UIText Id="SelCDAbsent">!(loc.UITextSelCDAbsent)</UIText>
43 <UIText Id="SelCDAdvertise">!(loc.UITextSelCDAdvertise)</UIText>
44 <UIText Id="SelCDCD">!(loc.UITextSelCDCD)</UIText>
45 <UIText Id="SelCDLocal">!(loc.UITextSelCDLocal)</UIText>
46 <UIText Id="SelChildCostNeg">!(loc.UITextSelChildCostNeg)</UIText>
47 <UIText Id="SelChildCostPos">!(loc.UITextSelChildCostPos)</UIText>
48 <UIText Id="SelCostPending">!(loc.UITextSelCostPending)</UIText>
49 <UIText Id="SelLocalAbsent">!(loc.UITextSelLocalAbsent)</UIText>
50 <UIText Id="SelLocalAdvertise">!(loc.UITextSelLocalAdvertise)</UIText>
51 <UIText Id="SelLocalCD">!(loc.UITextSelLocalCD)</UIText>
52 <UIText Id="SelLocalLocal">!(loc.UITextSelLocalLocal)</UIText>
53 <UIText Id="SelLocalNetwork">!(loc.UITextSelLocalNetwork)</UIText>
54 <UIText Id="SelNetworkAbsent">!(loc.UITextSelNetworkAbsent)</UIText>
55 <UIText Id="SelNetworkAdvertise">!(loc.UITextSelNetworkAdvertise)</UIText>
56 <UIText Id="SelNetworkLocal">!(loc.UITextSelNetworkLocal)</UIText>
57 <UIText Id="SelNetworkNetwork">!(loc.UITextSelNetworkNetwork)</UIText>
58 <UIText Id="SelParentCostNegNeg">!(loc.UITextSelParentCostNegNeg)</UIText>
59 <UIText Id="SelParentCostNegPos">!(loc.UITextSelParentCostNegPos)</UIText>
60 <UIText Id="SelParentCostPosNeg">!(loc.UITextSelParentCostPosNeg)</UIText>
61 <UIText Id="SelParentCostPosPos">!(loc.UITextSelParentCostPosPos)</UIText>
62 <UIText Id="TimeRemaining">!(loc.UITextTimeRemaining)</UIText>
63 <UIText Id="VolumeCostAvailable">!(loc.UITextVolumeCostAvailable)</UIText>
64 <UIText Id="VolumeCostDifference">!(loc.UITextVolumeCostDifference)</UIText>
65 <UIText Id="VolumeCostRequired">!(loc.UITextVolumeCostRequired)</UIText>
66 <UIText Id="VolumeCostSize">!(loc.UITextVolumeCostSize)</UIText>
67 <UIText Id="VolumeCostVolume">!(loc.UITextVolumeCostVolume)</UIText>
68 </UI>
69 </Fragment>
70</Wix>