diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/mail/base/content/systemIntegrationDialog.xhtml | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/mail/base/content/systemIntegrationDialog.xhtml')
-rw-r--r-- | comm/mail/base/content/systemIntegrationDialog.xhtml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/comm/mail/base/content/systemIntegrationDialog.xhtml b/comm/mail/base/content/systemIntegrationDialog.xhtml new file mode 100644 index 0000000000..6ce932aed5 --- /dev/null +++ b/comm/mail/base/content/systemIntegrationDialog.xhtml @@ -0,0 +1,53 @@ +<?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/global.css"?> + +<!DOCTYPE window> + +<window + xmlns:html="http://www.w3.org/1999/xhtml" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + onload="gSystemIntegrationDialog.onLoad();" + data-l10n-id="system-integration-title" + style="min-width: 33em" +> + <dialog + id="systemIntegrationDialog" + buttons="accept,cancel" + data-l10n-id="system-integration-dialog" + data-l10n-attrs="buttonlabelaccept, buttonlabelcancel, buttonlabelcancel2" + > + <script src="chrome://messenger/content/systemIntegrationDialog.js" /> + + <linkset> + <html:link rel="localization" href="branding/brand.ftl" /> + <html:link + rel="localization" + href="messenger/preferences/system-integration.ftl" + /> + </linkset> + + <label control="defaultClientList" data-l10n-id="default-client-intro" /> + <vbox id="defaultClientList" role="group"> + <checkbox id="checkMail" data-l10n-id="checkbox-email-label" /> + <checkbox id="checkNews" data-l10n-id="checkbox-newsgroups-label" /> + <checkbox id="checkRSS" data-l10n-id="checkbox-feeds-label" /> + <checkbox id="checkCalendar" data-l10n-id="checkbox-calendar-label" /> + </vbox> + + <separator class="groove" /> + + <checkbox + id="searchIntegration" + hidden="true" + data-l10n-id="system-search-integration-label" + /> + + <separator class="thin" /> + + <checkbox id="checkOnStartup" data-l10n-id="check-on-startup-label" /> + </dialog> +</window> |