blob: 3d254aafcc1537e681569f937565ec346627cf08 (
plain)
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
|
<?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>
|