mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
647a58c354
--HG-- extra : rebase_source : 4e9f51eb421ccd12e2fc14b6294a104d1c7a1aff
52 lines
1.8 KiB
XML
52 lines
1.8 KiB
XML
<?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/. -->
|
|
|
|
<!DOCTYPE prefwindow [
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
|
|
%brandDTD;
|
|
<!ENTITY % safeModeDTD SYSTEM "chrome://browser/locale/safeMode.dtd" >
|
|
%safeModeDTD;
|
|
<!ENTITY % resetProfileDTD SYSTEM "chrome://global/locale/resetProfile.dtd" >
|
|
%resetProfileDTD;
|
|
]>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/"?>
|
|
<?xml-stylesheet href="chrome://browser/content/safeMode.css"?>
|
|
|
|
<dialog id="safeModeDialog"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="&safeModeDialog.title;"
|
|
buttons="accept,extra1"
|
|
buttonlabelaccept="&startSafeMode.label;"
|
|
buttonlabelextra1="&refreshProfile.label;"
|
|
maxwidth="&window.maxWidth;"
|
|
ondialogaccept="return onDefaultButton()"
|
|
ondialogcancel="onCancel();"
|
|
ondialogextra1="return onExtra1()"
|
|
onload="onLoad()">
|
|
|
|
<script type="application/javascript" src="chrome://global/content/resetProfile.js"/>
|
|
<script type="application/javascript" src="chrome://browser/content/safeMode.js"/>
|
|
|
|
<vbox id="autoSafeMode" hidden="true">
|
|
<description>&autoSafeModeDescription3.label;</description>
|
|
</vbox>
|
|
|
|
<vbox id="safeMode">
|
|
<label>&safeModeDescription3.label;</label>
|
|
<separator class="thin"/>
|
|
<label>&safeModeDescription4.label;</label>
|
|
<separator class="thin"/>
|
|
<label id="resetProfileInstead">&refreshProfileInstead.label;</label>
|
|
</vbox>
|
|
|
|
<vbox id="resetProfile" hidden="true">
|
|
<label id="resetProfileInstead">&refreshProfileInstead.label;</label>
|
|
</vbox>
|
|
|
|
<separator class="thin"/>
|
|
</dialog>
|