blob: 4768f930fbf7c328a650a1c9e04335187dbbc1ab (
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
46
47
48
|
<?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" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/profileDowngrade.css" type="text/css"?>
<!DOCTYPE html [
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
%brandDTD;
<!ENTITY % profileDTD SYSTEM "chrome://messenger/locale/profileDowngrade.dtd">
%profileDTD;
]>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
scrolling="false">
<head>
<title>&window.title;</title>
<script defer="defer" src="chrome://global/content/customElements.js"></script>
<script defer="defer" src="profileDowngrade.js"></script>
</head>
<body>
<xul:dialog buttonlabelextra1="&window.create;"
#ifdef XP_WIN
buttonlabelaccept="&window.quit-win;"
#else
buttonlabelaccept="&window.quit-nonwin;"
#endif
buttons="accept,extra1" buttonpack="end"
nobuttonspacer="true">
<div id="contentWrapper">
<img src="chrome://messenger/skin/icons/new/activity/info.svg"
alt=""
role="presentation" />
<div>
<p id="nosync">&window.nosync2;</p>
<p>
<a class="text-link"
onclick="moreInfo(event);"
onkeypress="moreInfo(event);">&window.moreinfo;</a>
</p>
</div>
</div>
</xul:dialog>
</body>
</html>
|