|
1 <?xml version="1.0"?> |
|
2 |
|
3 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
|
4 - License, v. 2.0. If a copy of the MPL was not distributed with this |
|
5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
|
6 |
|
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
|
8 <?xml-stylesheet href="chrome://mozapps/content/extensions/selectAddons.css" type="text/css"?> |
|
9 <?xml-stylesheet href="chrome://mozapps/skin/extensions/selectAddons.css" type="text/css"?> |
|
10 |
|
11 <!DOCTYPE window [ |
|
12 <!ENTITY % updateDTD SYSTEM "chrome://mozapps/locale/extensions/selectAddons.dtd"> |
|
13 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> |
|
14 %updateDTD; |
|
15 %brandDTD; |
|
16 ]> |
|
17 |
|
18 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
19 style="&upgrade.style;" id="select-window"> |
|
20 |
|
21 <script type="application/javascript" src="chrome://mozapps/content/extensions/selectAddons.js"/> |
|
22 <stringbundle id="strings" src="chrome://mozapps/locale/extensions/selectAddons.properties"/> |
|
23 |
|
24 <deck id="view-deck" flex="1" align="stretch" pack="stretch"> |
|
25 <vbox id="checking" align="stretch"> |
|
26 <vbox flex="1"> |
|
27 <label id="checking-heading" class="heading">&checking.heading;</label> |
|
28 </vbox> |
|
29 <progressmeter id="checking-progress" class="progress" mode="undetermined"/> |
|
30 <vbox flex="1"> |
|
31 <label id="checking-progress-label" class="progress-label">&checking.progress.label;</label> |
|
32 </vbox> |
|
33 </vbox> |
|
34 |
|
35 <vbox id="select" align="stretch"> |
|
36 <label id="select-heading" class="heading">&select.heading;</label> |
|
37 |
|
38 <description id="select-description">&select.description;</description> |
|
39 |
|
40 <vbox id="select-list" align="stretch" flex="1"> |
|
41 <hbox id="select-header"> |
|
42 <hbox class="select-keep select-cell" style="&select.keep.style;"> |
|
43 <label value="&select.keep;"/> |
|
44 </hbox> |
|
45 <hbox class="select-icon select-cell"/> |
|
46 <hbox id="heading-name" class="select-name select-cell" style="&select.name.style;"> |
|
47 <label value="&select.name;"/> |
|
48 </hbox> |
|
49 <hbox id="heading-action" class="select-action select-cell" style="&select.action.style;"> |
|
50 <label value="&select.action;"/> |
|
51 </hbox> |
|
52 <hbox class="select-source select-cell" flex="1"> |
|
53 <label value="&select.source;"/> |
|
54 </hbox> |
|
55 </hbox> |
|
56 |
|
57 <scrollbox id="select-scrollbox" flex="1"> |
|
58 <grid id="select-grid" flex="1"> |
|
59 <columns> |
|
60 <column style="&select.keep.style;"/> |
|
61 <column/> |
|
62 <column id="column-name"/> |
|
63 <column id="column-action" class="select-action"/> |
|
64 <column class="select-source" flex="1"/> |
|
65 </columns> |
|
66 |
|
67 <rows id="select-rows"/> |
|
68 </grid> |
|
69 </scrollbox> |
|
70 </vbox> |
|
71 </vbox> |
|
72 |
|
73 <vbox id="confirm" align="stretch"> |
|
74 <label id="confirm-heading" class="heading">&confirm.heading;</label> |
|
75 |
|
76 <description id="confirm-description">&confirm.description;</description> |
|
77 |
|
78 <scrollbox id="confirm-scrollbox" flex="1"> |
|
79 <vbox id="disable-list" class="action-list" hidden="true"> |
|
80 <label class="action-header">&action.disable.heading;</label> |
|
81 </vbox> |
|
82 |
|
83 <vbox id="incompatible-list" class="action-list" hidden="true"> |
|
84 <label class="action-header">&action.incompatible.heading;</label> |
|
85 </vbox> |
|
86 |
|
87 <vbox id="update-list" class="action-list" hidden="true"> |
|
88 <label class="action-header">&action.update.heading;</label> |
|
89 </vbox> |
|
90 |
|
91 <vbox id="enable-list" class="action-list" hidden="true"> |
|
92 <label class="action-header">&action.enable.heading;</label> |
|
93 </vbox> |
|
94 </scrollbox> |
|
95 </vbox> |
|
96 |
|
97 <vbox id="update" align="stretch"> |
|
98 <vbox flex="1"> |
|
99 <label id="update-heading" class="heading">&update.heading;</label> |
|
100 </vbox> |
|
101 <progressmeter id="update-progress" class="progress" mode="undetermined"/> |
|
102 <vbox flex="1"> |
|
103 <label id="update-progress-label" class="progress-label">&update.progress.label;</label> |
|
104 </vbox> |
|
105 </vbox> |
|
106 |
|
107 <vbox id="errors"> |
|
108 <vbox flex="1"> |
|
109 <label id="errors-heading" class="heading">&errors.heading;</label> |
|
110 </vbox> |
|
111 <description id="errors-description" value="&errors.description;"/> |
|
112 <spacer flex="1"/> |
|
113 </vbox> |
|
114 </deck> |
|
115 |
|
116 <hbox id="footer" align="center"> |
|
117 <label id="footer-label" flex="1">&footer.label;</label> |
|
118 <button id="cancel" label="&cancel.label;" oncommand="window.close()"/> |
|
119 <button id="back" label="&back.label;" oncommand="gView.back()" hidden="true"/> |
|
120 <button id="next" label="&next.label;" oncommand="gView.next()" hidden="true"/> |
|
121 <button id="done" label="&done.label;" oncommand="gView.done()" hidden="true"/> |
|
122 </hbox> |
|
123 |
|
124 </window> |