browser/base/content/sync/customize.xul

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:820b700584a0
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://browser/content/sync/customize.css" type="text/css"?>
9
10 <!DOCTYPE dialog [
11 <!ENTITY % syncCustomizeDTD SYSTEM "chrome://browser/locale/syncCustomize.dtd">
12 %syncCustomizeDTD;
13 ]>
14 <dialog id="sync-customize"
15 windowtype="Sync:Customize"
16 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
17 xmlns:html="http://www.w3.org/1999/xhtml"
18 title="&syncCustomize.dialog.title;"
19 buttonlabelaccept="&syncCustomize.acceptButton.label;"
20 buttons="accept">
21
22 <prefpane id="sync-customize-pane">
23 <preferences>
24 <preference id="engine.bookmarks" name="services.sync.engine.bookmarks" type="bool"/>
25 <preference id="engine.history" name="services.sync.engine.history" type="bool"/>
26 <preference id="engine.tabs" name="services.sync.engine.tabs" type="bool"/>
27 <preference id="engine.passwords" name="services.sync.engine.passwords" type="bool"/>
28 <preference id="engine.addons" name="services.sync.engine.addons" type="bool"/>
29 <preference id="engine.prefs" name="services.sync.engine.prefs" type="bool"/>
30 </preferences>
31
32 <label id="sync-customize-title" value="&syncCustomize.title;"/>
33 <description id="sync-customize-subtitle"
34 #ifdef XP_UNIX
35 value="&syncCustomizeUnix.description;"
36 #else
37 value="&syncCustomize.description;"
38 #endif
39 />
40
41 <checkbox label="&engine.tabs.label;"
42 accesskey="&engine.tabs.accesskey;"
43 preference="engine.tabs"/>
44 <checkbox label="&engine.bookmarks.label;"
45 accesskey="&engine.bookmarks.accesskey;"
46 preference="engine.bookmarks"/>
47 <checkbox id="fxa-pweng-chk"
48 label="&engine.passwords.label;"
49 accesskey="&engine.passwords.accesskey;"
50 preference="engine.passwords"/>
51 <checkbox label="&engine.history.label;"
52 accesskey="&engine.history.accesskey;"
53 preference="engine.history"/>
54 <checkbox label="&engine.addons.label;"
55 accesskey="&engine.addons.accesskey;"
56 preference="engine.addons"/>
57 <checkbox label="&engine.prefs.label;"
58 accesskey="&engine.prefs.accesskey;"
59 preference="engine.prefs"/>
60 </prefpane>
61
62 <script type="application/javascript"
63 src="chrome://browser/content/sync/customize.js" />
64
65 </dialog>

mercurial