source: DASISH/t5.6/client/branches/webannotator-basic/chrome/markingcollection/content/markingcollection/optionsDialog.xul @ 5428

Last change on this file since 5428 was 5428, checked in by stephanie.roth@snd.gu.se, 10 years ago

Added new branch for work on schema change related client fixes.

File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<?xml-stylesheet href="chrome://global/skin/" type="text/css" ?>
3<!DOCTYPE overlay SYSTEM "chrome://markingcollection/locale/scrappartymerge.dtd">
4<dialog
5        id="spmOptionsDialog"
6        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
7        xmlns:html="http://www.w3.org/1999/xhtml"
8        title="&scrappartymerge.menu.option;"
9        buttons="accept,cancel"
10        onload="spmOptionsDialog.init();"
11        ondialogaccept="spmOptionsDialog.accept();"
12        ondialogcancel="spmOptionsDialog.cancel();">
13        <script type="application/x-javascript" src="chrome://global/content/nsUserSettings.js" />
14        <script type="application/x-javascript" src="chrome://markingcollection/content/optionsDialog.js" />
15        <stringbundleset id="spmStringBundles">
16                <stringbundle id="spmOptionsDialogString" src="chrome://markingcollection/locale/scrappartymerge.properties" />
17        </stringbundleset>
18        <dialogheader title="&scrappartymerge.menu.option; - &scrappartymerge.app.title;" description=""/>
19        <groupbox>
20                <caption label="&scrappartymerge.condition;"/>
21                <radiogroup  id="spmConditionMarker" oncommand="spmOptionsDialog.commandCondition(event);">
22                        <radio id="spmConditionMarkerAll" label="&scrappartymerge.marker.all.label;"   value="&scrappartymerge.marker.all.value;"/>
23                        <radio id="spmConditionMarkerSt"  label="&scrappartymerge.marker.start.label;" value="&scrappartymerge.marker.start.value;"/>
24                        <radio id="spmConditionMarkerEn"  label="&scrappartymerge.marker.end.label;"   value="&scrappartymerge.marker.end.value;"/>
25                </radiogroup>
26        </groupbox>
27        <groupbox>
28                <caption label="&scrappartymerge.confirm;"/>
29                <checkbox id="spmConfirmMerge" label="&scrappartymerge.confirm.merge;" oncommand="spmOptionsDialog.commandConfirm(event);"/>
30        </groupbox>
31</dialog>
Note: See TracBrowser for help on using the repository browser.