blob: bfaa44b83a748622f7eddd0e61277885e2aa1041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<!-- 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. -->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Fragment>
<Binary Id="WixUI_Bmp_Banner" SourceFile="!(wix.WixUIBannerBmp=$(var.bannerBmp))" />
<Binary Id="WixUI_Bmp_Dialog" SourceFile="!(wix.WixUIDialogBmp=$(var.dialogBmp))" />
<Binary Id="WixUI_Ico_Exclam" SourceFile="!(wix.WixUIExclamationIco=$(var.exclamationIco))" />
<Binary Id="WixUI_Ico_Info" SourceFile="!(wix.WixUIInfoIco=$(var.infoIco))" />
<Binary Id="WixUI_Bmp_New" SourceFile="!(wix.WixUINewIco=$(var.newIco))" />
<Binary Id="WixUI_Bmp_Up" SourceFile="!(wix.WixUIUpIco=$(var.upIco))" />
<WixVariable Id="WixUICostingPopupOptOut" Value="1" Overridable="yes" />
<UI Id="WixUI_Common">
<!-- ui text -->
<UIText Id="AbsentPath" />
<UIText Id="bytes" Value="!(loc.UITextbytes)" />
<UIText Id="GB" Value="!(loc.UITextGB)" />
<UIText Id="KB" Value="!(loc.UITextKB)" />
<UIText Id="MB" Value="!(loc.UITextMB)" />
<UIText Id="MenuAbsent" Value="!(loc.UITextMenuAbsent)" />
<UIText Id="MenuAdvertise" Value="!(loc.UITextMenuAdvertise)" />
<UIText Id="MenuAllCD" Value="!(loc.UITextMenuAllCD)" />
<UIText Id="MenuAllLocal" Value="!(loc.UITextMenuAllLocal)" />
<UIText Id="MenuAllNetwork" Value="!(loc.UITextMenuAllNetwork)" />
<UIText Id="MenuCD" Value="!(loc.UITextMenuCD)" />
<UIText Id="MenuLocal" Value="!(loc.UITextMenuLocal)" />
<UIText Id="MenuNetwork" Value="!(loc.UITextMenuNetwork)" />
<UIText Id="NewFolder" Value="!(loc.UITextNewFolder)" />
<UIText Id="ScriptInProgress" Value="!(loc.UITextScriptInProgress)" />
<UIText Id="SelAbsentAbsent" Value="!(loc.UITextSelAbsentAbsent)" />
<UIText Id="SelAbsentAdvertise" Value="!(loc.UITextSelAbsentAdvertise)" />
<UIText Id="SelAbsentCD" Value="!(loc.UITextSelAbsentCD)" />
<UIText Id="SelAbsentLocal" Value="!(loc.UITextSelAbsentLocal)" />
<UIText Id="SelAbsentNetwork" Value="!(loc.UITextSelAbsentNetwork)" />
<UIText Id="SelAdvertiseAbsent" Value="!(loc.UITextSelAdvertiseAbsent)" />
<UIText Id="SelAdvertiseAdvertise" Value="!(loc.UITextSelAdvertiseAdvertise)" />
<UIText Id="SelAdvertiseCD" Value="!(loc.UITextSelAdvertiseCD)" />
<UIText Id="SelAdvertiseLocal" Value="!(loc.UITextSelAdvertiseLocal)" />
<UIText Id="SelAdvertiseNetwork" Value="!(loc.UITextSelAdvertiseNetwork)" />
<UIText Id="SelCDAbsent" Value="!(loc.UITextSelCDAbsent)" />
<UIText Id="SelCDAdvertise" Value="!(loc.UITextSelCDAdvertise)" />
<UIText Id="SelCDCD" Value="!(loc.UITextSelCDCD)" />
<UIText Id="SelCDLocal" Value="!(loc.UITextSelCDLocal)" />
<UIText Id="SelChildCostNeg" Value="!(loc.UITextSelChildCostNeg)" />
<UIText Id="SelChildCostPos" Value="!(loc.UITextSelChildCostPos)" />
<UIText Id="SelCostPending" Value="!(loc.UITextSelCostPending)" />
<UIText Id="SelLocalAbsent" Value="!(loc.UITextSelLocalAbsent)" />
<UIText Id="SelLocalAdvertise" Value="!(loc.UITextSelLocalAdvertise)" />
<UIText Id="SelLocalCD" Value="!(loc.UITextSelLocalCD)" />
<UIText Id="SelLocalLocal" Value="!(loc.UITextSelLocalLocal)" />
<UIText Id="SelLocalNetwork" Value="!(loc.UITextSelLocalNetwork)" />
<UIText Id="SelNetworkAbsent" Value="!(loc.UITextSelNetworkAbsent)" />
<UIText Id="SelNetworkAdvertise" Value="!(loc.UITextSelNetworkAdvertise)" />
<UIText Id="SelNetworkLocal" Value="!(loc.UITextSelNetworkLocal)" />
<UIText Id="SelNetworkNetwork" Value="!(loc.UITextSelNetworkNetwork)" />
<UIText Id="SelParentCostNegNeg" Value="!(loc.UITextSelParentCostNegNeg)" />
<UIText Id="SelParentCostNegPos" Value="!(loc.UITextSelParentCostNegPos)" />
<UIText Id="SelParentCostPosNeg" Value="!(loc.UITextSelParentCostPosNeg)" />
<UIText Id="SelParentCostPosPos" Value="!(loc.UITextSelParentCostPosPos)" />
<UIText Id="TimeRemaining" Value="!(loc.UITextTimeRemaining)" />
<UIText Id="VolumeCostAvailable" Value="!(loc.UITextVolumeCostAvailable)" />
<UIText Id="VolumeCostDifference" Value="!(loc.UITextVolumeCostDifference)" />
<UIText Id="VolumeCostRequired" Value="!(loc.UITextVolumeCostRequired)" />
<UIText Id="VolumeCostSize" Value="!(loc.UITextVolumeCostSize)" />
<UIText Id="VolumeCostVolume" Value="!(loc.UITextVolumeCostVolume)" />
</UI>
</Fragment>
<?foreach WIXUIARCH in X86;X64;A64 ?>
<Fragment>
<UI Id="WixUI_Common_$(WIXUIARCH)">
<!-- An empty section so you can use ui:WixUI to refer to WixUI_Common. -->
</UI>
</Fragment>
<?endforeach?>
</Wix>
|