зеркало из https://github.com/mozilla/pjs.git
47 строки
1.5 KiB
XML
47 строки
1.5 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
|
|
|
|
<!-- DTD File with all strings specific to the calendar -->
|
|
<!DOCTYPE dialog
|
|
[
|
|
<!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/global.dtd" > %dtd1;
|
|
<!ENTITY % dtd2 SYSTEM "chrome://calendar/locale/calendar.dtd" > %dtd2;
|
|
]>
|
|
|
|
<dialog
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
id="duplicate-prompt"
|
|
title="Duplicate Management"
|
|
buttons="accept,cancel"
|
|
pack="right"
|
|
ondialogaccept="setCancelled(false); return true;"
|
|
ondialogcancel="setCancelled(true); return true;"
|
|
onload="loadDefaults();"
|
|
>
|
|
|
|
<script type="application/x-javascript" src="chrome://calendar/content/importDuplicatesDialog.js"/>
|
|
|
|
<groupbox id="dupControls">
|
|
|
|
<caption id="groupBoxTitle" label="&calendar.importdupes.caption.label;"/>
|
|
|
|
<box align="center">
|
|
|
|
<radiogroup id="dup-group" >
|
|
<radio id="auto-discard" selected="true" label="&calendar.importdupes.autodiscard.label;" oncommand="togglePrompting(false); setDiscardDuplicates(true);"/>
|
|
<radio id="add-duplicates" label="&calendar.importdupes.adddupes.label;" oncommand="togglePrompting(true); setDiscardDuplicates(false);"/>
|
|
</radiogroup>
|
|
|
|
</box>
|
|
|
|
<hbox style="margin-left: .25in">
|
|
|
|
<checkbox id="prompt-on-add" disabled="true" selected="true" label="&calendar.importdupes.prompt.label;"
|
|
oncommand="this.checked = !this.checked; setPromptOnAdd(this.checked);"/>
|
|
|
|
</hbox>
|
|
|
|
</groupbox>
|
|
|
|
</dialog>
|