8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
id="grammalecte-spelloptions-window"
title="&window.title;"
orient="vertical"
buttons="accept,cancel"
ondialogaccept="oDialogControl.setDictionaries();"
ondialogcancel="return;"
width="400"
height="480"
onload="oDialogControl.load();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<dialogheader id="grammalecte-title" title="&dialogheader.label;" description=""/>
|
|
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
id="grammalecte-spelloptions-window"
title="&window.title;"
orient="vertical"
buttons="accept,cancel"
ondialogaccept="oDialogControl.setDictionaries();"
ondialogcancel="return;"
width="400"
height="400"
onload="oDialogControl.load();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Other elements go here -->
<dialogheader id="grammalecte-title" title="&dialogheader.label;" description=""/>
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<groupbox with="380">
<caption id="grouptitle" label="&grouptitle_graphspell;" />
<description id="warning">&warning_graphspell;</description>
<checkbox id="main_dic" class="option" label="&option.main_dic.label;" disabled="true" checked="true" />
<description class="dicdescr">&option.main_dic.descr;</description>
<checkbox id="extended_dic" class="option disabled" label="&option.extended_dic.label;" disabled="true" />
<description class="dicdescr disabled">&option.extended_dic.descr;</description>
<checkbox id="community_dic" class="option disabled" label="&option.community_dic.label;" disabled="true" />
<description class="dicdescr disabled">&option.community_dic.descr;</description>
<checkbox id="personal_dic" class="option" label="&option.personal_dic.label;" />
<description class="dicdescr">&option.personal_dic.descr;</description>
</groupbox>
</hbox>
<script type="application/javascript" src="spell_options.js"/>
<script type="application/javascript" src="spellchecker.js"/>
</dialog>
|
<
<
<
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<groupbox with="380">
<caption id="grouptitle" label="&grouptitle_graphspell;" />
<description id="warning">&warning_graphspell;</description>
<checkbox id="main_dic" class="option" label="&option.main_dic.label;" disabled="true" checked="true" />
<description class="dicdescr">&option.main_dic.descr;</description>
<checkbox id="community_dic" class="option disabled" label="&option.community_dic.label;" disabled="true" />
<description class="dicdescr disabled">&option.community_dic.descr;</description>
<checkbox id="personal_dic" class="option" label="&option.personal_dic.label;" />
<description class="dicdescr">&option.personal_dic.descr;</description>
</groupbox>
</hbox>
<script type="application/javascript" src="spell_options.js"/>
<script type="application/javascript" src="spellchecker.js"/>
</dialog>
|