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

« back to all changes in this revision

Viewing changes to chrome/content/dta/manager/conflicts.xul

  • Committer: Package Import Robot
  • Author(s): Michael Meskes
  • Date: 2016-09-21 13:33:55 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20160921133355-ylst3mzzo82mghyw
Tags: upstream-3.0.6
Import upstream version 3.0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!-- ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: GPL 2.0
 
4
 *
 
5
 * This code is part of DownThemAll! - dTa!
 
6
 * Copyright © 2004-2006 Federico Parodi and Stefano Verna.
 
7
 *
 
8
 * See LICENSE and GPL for details.
 
9
 *
 
10
 * ***** END LICENSE BLOCK ***** -->
 
11
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
 
12
<?xml-stylesheet href="chrome://dta/skin/common/style.css" type="text/css" ?>
 
13
 
 
14
<!DOCTYPE window [
 
15
        <!ENTITY % conflictsDTD SYSTEM "chrome://dta/locale/conflicts.dtd">
 
16
        %conflictsDTD;
 
17
        <!ENTITY % defconflictsDTD SYSTEM "chrome://dta-locale/content/conflicts.dtd">
 
18
        %defconflictsDTD;
 
19
]>
 
20
 
 
21
<dialog
 
22
        id="DownThemAll"
 
23
        title="&window.title;"
 
24
        onload="load();"
 
25
        buttons="accept"
 
26
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
 
27
        ondialogaccept="return accept();"
 
28
        ondialogcancel="return false;"
 
29
        width="460px"
 
30
        >
 
31
                <stringbundleset xmlns="http://www.downthemall.net/properties#">
 
32
                        <stringbundle src="chrome://dta/locale/conflicts.properties"/>
 
33
                </stringbundleset>
 
34
                <script type="application/javascript" src="chrome://dta/content/common/internalFunctions.js"/>
 
35
                <script type="application/javascript" src="conflicts.js"/>
 
36
 
 
37
                <vbox flex="1" style="padding-left: 35px; background: url('chrome://dta/skin/common/alert.png') no-repeat 0 0;">
 
38
                        <description id="text"/>
 
39
                        <description id="question"/>
 
40
 
 
41
                        <radiogroup id="choice" style="margin-left: 10px; margin-bottom: 10px;" >
 
42
                                <radio id="s1" persist="selected"/>
 
43
                                <radio id="s2" persist="selected" label="&overwrite.label;"/>
 
44
                                <radio id="s3" persist="selected" label="&skip.label;"/>
 
45
                        </radiogroup>
 
46
                </vbox>
 
47
                <groupbox style="margin-left: 30px; margin-right: 30px;">
 
48
                        <caption label="&text.value;" />
 
49
                        <menulist id="context">
 
50
                                <menupopup>
 
51
                                        <menuitem label="&download.label;"/>
 
52
                                        <menuitem label="&session.label;"/>
 
53
                                        <menuitem label="&always.label;"/>
 
54
                                </menupopup>
 
55
                        </menulist>
 
56
                </groupbox>
 
57
</dialog>