1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
<?xml version="1.0"?>
# -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
# 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/"?>
<!DOCTYPE window [
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
%brandDTD;
<!ENTITY % systemIntegrationDTD SYSTEM
"chrome://messenger/locale/systemIntegrationDialog.dtd">
%systemIntegrationDTD;
#ifdef XP_WIN
<!ENTITY % searchIntegrationWinDTD SYSTEM
"chrome://messenger/locale/searchIntegrationWin.dtd">
%searchIntegrationWinDTD;
#else
#ifdef XP_MACOSX
<!ENTITY % searchIntegrationMacDTD SYSTEM
"chrome://messenger/locale/searchIntegrationMac.dtd">
%searchIntegrationMacDTD;
#else
<!ENTITY % searchIntegrationDefaultDTD SYSTEM
"chrome://messenger/locale/searchIntegrationDefault.dtd">
%searchIntegrationDefaultDTD;
#endif
#endif
]>
<dialog xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
id="systemIntegrationDialog"
buttons="accept,cancel"
buttonlabelaccept="&acceptIntegration.label;"
buttonlabelcancel="&cancelIntegration.label;"
buttonlabelcancel2="&cancelIntegration2.label;"
onload="gSystemIntegrationDialog.onLoad();"
ondialogaccept="return gSystemIntegrationDialog.onDialogClose(true);"
ondialogcancel="return gSystemIntegrationDialog.onDialogClose(false);"
title="&systemIntegration.title;">
<script type="application/javascript"
src="chrome://messenger/content/systemIntegrationDialog.js"/>
<label control="defaultClientList">&defaultClient.intro;</label>
<listbox rows="3" seltype="single" id="defaultClientList">
<listitem id="checkMail" type="checkbox" label="&email.label;" tooltiptext="&unsetDefault.tooltip;"/>
<listitem id="checkNews" type="checkbox" label="&newsgroups.label;" tooltiptext="&unsetDefault.tooltip;"/>
<listitem id="checkRSS" type="checkbox" label="&feeds.label;" tooltiptext="&unsetDefault.tooltip;"/>
</listbox>
<checkbox id="searchIntegration"
hidden="true"
label="&searchIntegration.label;"
accesskey="&searchIntegration.accesskey;"/>
<separator class="thin"/>
<checkbox id="checkOnStartup"
label="&checkOnStartup.label;"
accesskey="&checkOnStartup.accesskey;"/>
</dialog>
|