15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
-
-
+
+
|
<script type="application/javascript" src="editor.js"/>
<stringbundleset id="stringbundleset">
<stringbundle id="grammarchecker-strings" src="chrome://grammarchecker/locale/grammarchecker.properties"/>
</stringbundleset>
<commandset id="composerEditMenuItems" commandupdater="true"
events="focus"
<commandset id="composerEditMenuItems" commandupdater="true"
events="focus"
oncommandupdate="goUpdateCommand('cmd_grammar')">
<command id="cmd_grammar" label="&grammarchecker.button.label;" oncommand="goDoCommand('cmd_grammar')"/>
</commandset>
<menupopup id="taskPopup">
<!-- menu tools -->
<menuitem id="grammarchecker-hello" command="cmd_grammar"/>
|
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
-
+
|
<!--
GRAMMAR CHECKING PANEL
-->
<splitter id="grammarchecker-splitter" state="collapsed" collapse="after"><grippy /></splitter>
<vbox id="grammarchecker-panel">
<dialogheader id="grammalecte-title" title="Grammalecte" description="&detected_mistakes;"/>
<div id="grammalecte-errors"/>
<hbox id="grammalecte-infobox">
<label id="grammalecte-info" />
<spacer flex="1" />
<label id="closebutton" value="Fermer" onclick="oGrammarChecker.onClosePanel(event);" />
</hbox>
</vbox>
</vbox>
</overlay>
|