gecko/browser/base/content/sync/quota.xul

66 lines
2.1 KiB
Plaintext
Raw Normal View History

<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://browser/skin/syncQuota.css"?>
<!DOCTYPE dialog [
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
<!ENTITY % syncBrandDTD SYSTEM "chrome://browser/locale/syncBrand.dtd">
<!ENTITY % syncQuotaDTD SYSTEM "chrome://browser/locale/syncQuota.dtd">
%brandDTD;
%syncBrandDTD;
%syncQuotaDTD;
]>
<dialog id="quotaDialog"
windowtype="Sync:ViewQuota"
persist="screenX screenY width height"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
onload="gSyncQuota.init()"
buttons="accept,cancel"
title="&quota.dialogTitle.label;"
ondialogcancel="return gSyncQuota.onCancel();"
ondialogaccept="return gSyncQuota.onAccept();">
<script type="application/javascript"
Bug 730271 - Create sync folder for Sync-related content files. r=mak --HG-- rename : browser/base/content/aboutSyncTabs-bindings.xml => browser/base/content/sync/aboutSyncTabs-bindings.xml rename : browser/base/content/aboutSyncTabs.css => browser/base/content/sync/aboutSyncTabs.css rename : browser/base/content/aboutSyncTabs.js => browser/base/content/sync/aboutSyncTabs.js rename : browser/base/content/aboutSyncTabs.xul => browser/base/content/sync/aboutSyncTabs.xul rename : browser/base/content/syncAddDevice.js => browser/base/content/sync/addDevice.js rename : browser/base/content/syncAddDevice.xul => browser/base/content/sync/addDevice.xul rename : browser/base/content/syncGenericChange.js => browser/base/content/sync/genericChange.js rename : browser/base/content/syncGenericChange.xul => browser/base/content/sync/genericChange.xul rename : browser/base/content/syncKey.xhtml => browser/base/content/sync/key.xhtml rename : browser/base/content/syncNotification.xml => browser/base/content/sync/notification.xml rename : browser/base/content/syncProgress.js => browser/base/content/sync/progress.js rename : browser/base/content/syncProgress.xhtml => browser/base/content/sync/progress.xhtml rename : browser/base/content/syncQuota.js => browser/base/content/sync/quota.js rename : browser/base/content/syncQuota.xul => browser/base/content/sync/quota.xul rename : browser/base/content/syncSetup.js => browser/base/content/sync/setup.js rename : browser/base/content/syncSetup.xul => browser/base/content/sync/setup.xul rename : browser/base/content/syncUtils.js => browser/base/content/sync/utils.js extra : rebase_source : ca9eb20410f5a5640819ce9d68f5c51277ae5f35
2012-02-28 08:03:35 -08:00
src="chrome://browser/content/sync/quota.js"/>
<stringbundleset id="stringbundleset">
<stringbundle id="quotaStrings"
src="chrome://browser/locale/syncQuota.properties"/>
</stringbundleset>
<vbox flex="1">
<label id="usageLabel"
value="&quota.retrievingInfo.label;"/>
<separator/>
<tree id="usageTree"
seltype="single"
hidecolumnpicker="true"
onclick="gUsageTreeView.onTreeClick(event);"
flex="1">
<treecols>
<treecol id="enabled"
type="checkbox"
fixed="true"/>
<splitter class="tree-splitter"/>
<treecol id="collection"
label="&quota.typeColumn.label;"
flex="1"/>
<splitter class="tree-splitter"/>
<treecol id="size"
label="&quota.sizeColumn.label;"
flex="1"/>
</treecols>
<treechildren flex="1"/>
</tree>
<separator/>
<description id="treeCaption"> </description>
</vbox>
</dialog>