Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <?xml version="1.0"?> |
michael@0 | 2 | |
michael@0 | 3 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 6 | |
michael@0 | 7 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
michael@0 | 8 | <?xml-stylesheet href="chrome://browser/content/sync/customize.css" type="text/css"?> |
michael@0 | 9 | |
michael@0 | 10 | <!DOCTYPE dialog [ |
michael@0 | 11 | <!ENTITY % syncCustomizeDTD SYSTEM "chrome://browser/locale/syncCustomize.dtd"> |
michael@0 | 12 | %syncCustomizeDTD; |
michael@0 | 13 | ]> |
michael@0 | 14 | <dialog id="sync-customize" |
michael@0 | 15 | windowtype="Sync:Customize" |
michael@0 | 16 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 17 | xmlns:html="http://www.w3.org/1999/xhtml" |
michael@0 | 18 | title="&syncCustomize.dialog.title;" |
michael@0 | 19 | buttonlabelaccept="&syncCustomize.acceptButton.label;" |
michael@0 | 20 | buttons="accept"> |
michael@0 | 21 | |
michael@0 | 22 | <prefpane id="sync-customize-pane"> |
michael@0 | 23 | <preferences> |
michael@0 | 24 | <preference id="engine.bookmarks" name="services.sync.engine.bookmarks" type="bool"/> |
michael@0 | 25 | <preference id="engine.history" name="services.sync.engine.history" type="bool"/> |
michael@0 | 26 | <preference id="engine.tabs" name="services.sync.engine.tabs" type="bool"/> |
michael@0 | 27 | <preference id="engine.passwords" name="services.sync.engine.passwords" type="bool"/> |
michael@0 | 28 | <preference id="engine.addons" name="services.sync.engine.addons" type="bool"/> |
michael@0 | 29 | <preference id="engine.prefs" name="services.sync.engine.prefs" type="bool"/> |
michael@0 | 30 | </preferences> |
michael@0 | 31 | |
michael@0 | 32 | <label id="sync-customize-title" value="&syncCustomize.title;"/> |
michael@0 | 33 | <description id="sync-customize-subtitle" |
michael@0 | 34 | #ifdef XP_UNIX |
michael@0 | 35 | value="&syncCustomizeUnix.description;" |
michael@0 | 36 | #else |
michael@0 | 37 | value="&syncCustomize.description;" |
michael@0 | 38 | #endif |
michael@0 | 39 | /> |
michael@0 | 40 | |
michael@0 | 41 | <checkbox label="&engine.tabs.label;" |
michael@0 | 42 | accesskey="&engine.tabs.accesskey;" |
michael@0 | 43 | preference="engine.tabs"/> |
michael@0 | 44 | <checkbox label="&engine.bookmarks.label;" |
michael@0 | 45 | accesskey="&engine.bookmarks.accesskey;" |
michael@0 | 46 | preference="engine.bookmarks"/> |
michael@0 | 47 | <checkbox id="fxa-pweng-chk" |
michael@0 | 48 | label="&engine.passwords.label;" |
michael@0 | 49 | accesskey="&engine.passwords.accesskey;" |
michael@0 | 50 | preference="engine.passwords"/> |
michael@0 | 51 | <checkbox label="&engine.history.label;" |
michael@0 | 52 | accesskey="&engine.history.accesskey;" |
michael@0 | 53 | preference="engine.history"/> |
michael@0 | 54 | <checkbox label="&engine.addons.label;" |
michael@0 | 55 | accesskey="&engine.addons.accesskey;" |
michael@0 | 56 | preference="engine.addons"/> |
michael@0 | 57 | <checkbox label="&engine.prefs.label;" |
michael@0 | 58 | accesskey="&engine.prefs.accesskey;" |
michael@0 | 59 | preference="engine.prefs"/> |
michael@0 | 60 | </prefpane> |
michael@0 | 61 | |
michael@0 | 62 | <script type="application/javascript" |
michael@0 | 63 | src="chrome://browser/content/sync/customize.js" /> |
michael@0 | 64 | |
michael@0 | 65 | </dialog> |