mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
32 lines
1006 B
XML
32 lines
1006 B
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
|
|
<?xml-stylesheet href="pm.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window
|
|
[
|
|
<!ENTITY title "Delete Profile">
|
|
<!ENTITY intro "Confirm delete?">
|
|
<!ENTITY delete.yes.label "Delete Files">
|
|
<!ENTITY delete.no.label "Don't Delete Files">
|
|
<!ENTITY cancel.label "Cancel">
|
|
]>
|
|
|
|
<window
|
|
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="&title;" width="300" height="120">
|
|
|
|
<html:div flex="100%">
|
|
|
|
<html:center>
|
|
<html:div>&intro;</html:div>
|
|
<html:br />
|
|
<titledbutton value="&delete.yes.label;" class="push" onclick="opener.DeleteProfile('true');window.close();" />
|
|
<titledbutton value="&delete.no.label;" class="push" onclick="opener.DeleteProfile('false');window.close();" />
|
|
<titledbutton value="&cancel.label;" class="push" onclick="window.close();" />
|
|
</html:center>
|
|
|
|
</html:div>
|
|
</window>
|