Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <?xml version="1.0"?>
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/. -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="chrome://browser/skin/syncQuota.css"?>
10 <!DOCTYPE dialog [
11 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
12 <!ENTITY % syncBrandDTD SYSTEM "chrome://browser/locale/syncBrand.dtd">
13 <!ENTITY % syncQuotaDTD SYSTEM "chrome://browser/locale/syncQuota.dtd">
14 %brandDTD;
15 %syncBrandDTD;
16 %syncQuotaDTD;
17 ]>
18 <dialog id="quotaDialog"
19 windowtype="Sync:ViewQuota"
20 persist="screenX screenY width height"
21 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
22 xmlns:html="http://www.w3.org/1999/xhtml"
23 onload="gSyncQuota.init()"
24 buttons="accept,cancel"
25 title=""a.dialogTitle.label;"
26 ondialogcancel="return gSyncQuota.onCancel();"
27 ondialogaccept="return gSyncQuota.onAccept();">
29 <script type="application/javascript"
30 src="chrome://browser/content/sync/quota.js"/>
32 <stringbundleset id="stringbundleset">
33 <stringbundle id="quotaStrings"
34 src="chrome://browser/locale/syncQuota.properties"/>
35 </stringbundleset>
37 <vbox flex="1">
38 <label id="usageLabel"
39 value=""a.retrievingInfo.label;"/>
40 <separator/>
41 <tree id="usageTree"
42 seltype="single"
43 hidecolumnpicker="true"
44 onclick="gUsageTreeView.onTreeClick(event);"
45 flex="1">
46 <treecols>
47 <treecol id="enabled"
48 type="checkbox"
49 fixed="true"/>
50 <splitter class="tree-splitter"/>
51 <treecol id="collection"
52 label=""a.typeColumn.label;"
53 flex="1"/>
54 <splitter class="tree-splitter"/>
55 <treecol id="size"
56 label=""a.sizeColumn.label;"
57 flex="1"/>
58 </treecols>
59 <treechildren flex="1"/>
60 </tree>
61 <separator/>
62 <description id="treeCaption"> </description>
63 </vbox>
65 </dialog>