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