~ubuntu-branches/debian/stretch/downthemall/stretch

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
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<!-- ***** BEGIN LICENSE BLOCK *****
 * Version: GPL 2.0
 *
 * This code is part of DownThemAll! - dTa!
 * Copyright © 2004-2006 Federico Parodi and Stefano Verna.
 *
 * See LICENSE and GPL for details.
 *
 * ***** END LICENSE BLOCK ***** -->
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<?xml-stylesheet href="chrome://dta/skin/common/style.css" type="text/css" ?>

<!DOCTYPE window [
	<!ENTITY % conflictsDTD SYSTEM "chrome://dta/locale/conflicts.dtd">
	%conflictsDTD;
	<!ENTITY % defconflictsDTD SYSTEM "chrome://dta-locale/content/conflicts.dtd">
	%defconflictsDTD;
]>

<dialog
	id="DownThemAll"
	title="&window.title;"
	onload="load();"
	buttons="accept"
	xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
	ondialogaccept="return accept();"
	ondialogcancel="return false;"
	width="460px"
	>
		<stringbundleset xmlns="http://www.downthemall.net/properties#">
			<stringbundle src="chrome://dta/locale/conflicts.properties"/>
		</stringbundleset>
		<script type="application/javascript" src="chrome://dta/content/common/internalFunctions.js"/>
		<script type="application/javascript" src="conflicts.js"/>

		<vbox flex="1" style="padding-left: 35px; background: url('chrome://dta/skin/common/alert.png') no-repeat 0 0;">
			<description id="text"/>
			<description id="question"/>

			<radiogroup id="choice" style="margin-left: 10px; margin-bottom: 10px;" >
				<radio id="s1" persist="selected"/>
				<radio id="s2" persist="selected" label="&overwrite.label;"/>
				<radio id="s3" persist="selected" label="&skip.label;"/>
			</radiogroup>
		</vbox>
		<groupbox style="margin-left: 30px; margin-right: 30px;">
			<caption label="&text.value;" />
			<menulist id="context">
				<menupopup>
					<menuitem label="&download.label;"/>
					<menuitem label="&session.label;"/>
					<menuitem label="&always.label;"/>
				</menupopup>
			</menulist>
		</groupbox>
</dialog>