|
1 <?xml version="1.0"?> |
|
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
|
3 - License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
|
5 |
|
6 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
|
7 |
|
8 <!DOCTYPE dialog [ |
|
9 <!ENTITY % pippkiDTD SYSTEM "chrome://pippki/locale/pippki.dtd" > |
|
10 %pippkiDTD; |
|
11 ]> |
|
12 |
|
13 <dialog id="certErrorDialog" title="&certErrorDlg.title;" |
|
14 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
15 style="width: 47em;" |
|
16 onload="initCertErrorDialog();" |
|
17 buttons="cancel,extra1" |
|
18 defaultButton="cancel" |
|
19 buttonlabelextra1="&examineCert.label;" |
|
20 buttonaccesskeyextra1="&examineCert.accesskey;" |
|
21 ondialogextra1="viewCert();"> |
|
22 |
|
23 <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/> |
|
24 |
|
25 <script type="application/javascript" src="chrome://pippki/content/pippki.js"/> |
|
26 <script type="application/javascript" src="chrome://pippki/content/certerror.js"/> |
|
27 |
|
28 <hbox> |
|
29 <vbox> |
|
30 #ifdef MOZ_WIDGET_GTK |
|
31 <image src="moz-icon://stock/gtk-dialog-warning?size=dialog"/> |
|
32 #else |
|
33 <image src="chrome://global/skin/icons/warning-large.png"/> |
|
34 #endif |
|
35 <spacer flex="1"/> |
|
36 </vbox> |
|
37 <vbox flex="1"> |
|
38 <description id="warningText" |
|
39 style="white-space: pre-wrap"/> |
|
40 <separator/> |
|
41 <description id="info1">&certErrorDlg.info1;</description> |
|
42 <description id="info2">&certErrorDlg.info2;</description> |
|
43 </vbox> |
|
44 </hbox> |
|
45 </dialog> |