no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / security / manager / pki / resources / content / exceptionDialog.xhtml
blobc913c698f279b70fba30835c1babd9536cb90c66
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/. -->
6 <!DOCTYPE window>
8 <window windowtype="mozilla:exceptiondialog"
9 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
10 xmlns:html="http://www.w3.org/1999/xhtml"
11 data-l10n-id="exception-mgr"
12 onload="initExceptionDialog();">
13 <dialog id="exceptiondialog"
14 buttonidextra1="exception-mgr-extra-button"
15 buttons="cancel,extra1,extra2"
16 defaultButton="extra2">
18 <linkset>
19 <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
20 <html:link
21 rel="stylesheet"
22 href="chrome://pippki/content/exceptionDialog.css"
25 <html:link rel="localization" href="branding/brand.ftl"/>
26 <html:link rel="localization" href="security/certificates/certManager.ftl"/>
27 </linkset>
29 <script src="chrome://global/content/globalOverlay.js"/>
30 <script src="chrome://global/content/editMenuOverlay.js"/>
32 <script src="chrome://pippki/content/pippki.js"/>
33 <script src="chrome://pippki/content/exceptionDialog.js"/>
35 <hbox>
36 <vbox>
37 #ifdef MOZ_WIDGET_GTK
38 <image src="moz-icon://stock/gtk-dialog-warning?size=dialog"/>
39 #else
40 <image src="chrome://global/skin/icons/warning-large.png"/>
41 #endif
42 <spacer flex="1"/>
43 </vbox>
44 <vbox flex="1">
45 <!-- Note that because of the styling, there must be no whitespace within
46 the description tags -->
47 <description id="warningText"/>
48 <description id="warningSupplemental"
49 data-l10n-id="exception-mgr-supplemental-warning"/>
50 </vbox>
51 </hbox>
53 <hbox align="center">
54 <label control="locationTextBox"
55 id="certLocationLabel"
56 data-l10n-id="exception-mgr-cert-location-url"/>
57 <html:input id="locationTextBox"
58 oninput="handleTextChange();"
59 value="https://"
60 class="uri-element"/>
61 <button id="checkCertButton"
62 disabled="true"
63 dlgtype="extra2"
64 data-l10n-id="exception-mgr-cert-location-download"/>
65 </hbox>
67 <hbox align="center">
68 <description id="headerDescription"
69 flex="1"/>
70 <button id="viewCertButton"
71 data-l10n-id="exception-mgr-cert-status-view-cert"
72 disabled="true"
73 oncommand="viewCertButtonClick();"/>
74 </hbox>
75 <description id="statusDescription"
76 class="description"/>
77 <description id="statusLongDescription"
78 class="longDescription"/>
79 <description id="status2Description"
80 class="description"/>
81 <description id="status2LongDescription"
82 class="longDescription"/>
83 <description id="status3Description"
84 class="description"/>
85 <description id="status3LongDescription"
86 class="longDescription"/>
87 <checkbox id="permanent"
88 disabled="true"
89 data-l10n-id="exception-mgr-permanent"/>
90 </dialog>
91 </window>