diff options
Diffstat (limited to 'comm/calendar/base/content/dialogs/calendar-providerUninstall-dialog.xhtml')
-rw-r--r-- | comm/calendar/base/content/dialogs/calendar-providerUninstall-dialog.xhtml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/comm/calendar/base/content/dialogs/calendar-providerUninstall-dialog.xhtml b/comm/calendar/base/content/dialogs/calendar-providerUninstall-dialog.xhtml new file mode 100644 index 0000000000..3d254aafcc --- /dev/null +++ b/comm/calendar/base/content/dialogs/calendar-providerUninstall-dialog.xhtml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- 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 type="text/css" href="chrome://global/skin/global.css"?> +<?xml-stylesheet type="text/css" href="chrome://calendar/skin/shared/calendar-providerUninstall-dialog.css"?> +<?xml-stylesheet type="text/css" href="chrome://calendar/skin/shared/widgets/calendar-widgets.css"?> + +<!DOCTYPE html SYSTEM "chrome://calendar/locale/provider-uninstall.dtd"> +<html + id="calendar-provider-uninstall-dialog" + xmlns="http://www.w3.org/1999/xhtml" + xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + xmlns:html="http://www.w3.org/1999/xhtml" + windowtype="Calendar:ProviderUninstall" + width="480" + height="320" + style="min-width: 480px" + scrolling="false" +> + <head> + <title>&providerUninstall.title;</title> + <script defer="defer" src="chrome://calendar/content/calendar-ui-utils.js"></script> + <script + defer="defer" + src="chrome://calendar/content/calendar-providerUninstall-dialog.js" + ></script> + </head> + <html:body xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <dialog + buttonlabelaccept="&providerUninstall.accept.label;" + buttonaccesskeyaccept="&providerUninstall.accept.accesskey;" + > + <description id="pre-name-description">&providerUninstall.preName.label;</description> + <label id="provider-name-label" /> + <description id="post-name-description">&providerUninstall.postName.label;</description> + <description id="reinstall-note-description" + >&providerUninstall.reinstallNote.label;</description + > + + <richlistbox id="calendar-list" flex="1" /> + </dialog> + </html:body> +</html> |