Overview
Comment: | [tb] ui to select/deselect personal dictionary |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tb | multid |
Files: | files | file ages | folders |
SHA3-256: |
6c984d1387bdc5977d0efd14a71805e8 |
User & Date: | olr on 2018-03-30 09:37:44 |
Other Links: | branch diff | manifest | tags |
Context
2018-03-31
| ||
12:34 | [graphspell][py] spellchecker: option to activate dictionary while loading check-in: 2349600755 user: olr tags: graphspell, multid | |
2018-03-30
| ||
09:37 | [tb] ui to select/deselect personal dictionary check-in: 6c984d1387 user: olr tags: tb, multid | |
2018-03-29
| ||
10:00 | [tb] code cleaning check-in: 208f30234a user: olr tags: tb, multid | |
Changes
Modified gc_lang/fr/tb/content/overlay.xul from [74df4d6d6c] to [fc3449c6a3].
︙ | |||
43 44 45 46 47 48 49 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | - - + + | <menupopup id="gl-toolbar-popup"> <menuitem id="gl-item-conj" class="menuitem-iconic" label="&grammalectemenu.textformatter;" oncommand="oTextFormatter.onOpenPanel(event);"/> <menuitem id="gl-item-conj" class="menuitem-iconic" label="&grammalectemenu.conjugueur;" oncommand="oGrammarChecker.onOpenConjugueur(event);"/> <menuseparator/> <menuitem id="gl-item-analyze" class="menuitem-iconic" label="&grammalectemenu.start;" oncommand="oGrammarChecker.onParseText(event);"/> <menuitem id="gl-item-options" class="menuitem-iconic" label="&grammalectemenu.gc_options;" onclick="oGrammarChecker.onOpenGCOptions(event);"/> <menuitem id="gl-item-options" class="menuitem-iconic" label="&grammalectemenu.spell_options;" onclick="oGrammarChecker.onOpenSpellOptions(event);"/> |
︙ |
Modified gc_lang/fr/tb/content/spell_options.css from [2179034562] to [aa45acfc4a].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | + + + + | /* CSS */ #grouptitle { font-size: 16px; font-weight: bold; color: hsl(0, 50%, 50%); } .option { font-size: 16px; font-weight: bold; color: hsl(210, 50%, 50%); } description { width: 340px; } .dicdescr { margin-left: 27px; } |
Modified gc_lang/fr/tb/content/spell_options.js from [9ebffece09] to [f3284c0323].
︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | + + + + + - - - - + + + + - + - + - - - + + + + + | Services.console.logStringMessage(args.join(" -- ") + "\n"); } var oDialogControl = { load: function () { try { // Graphspell dictionaries document.getElementById('personal_dic').checked = prefs.getBoolPref('bPersonalDictionary'); // Hunspell dictionaries document.getElementById('fr-FR-modern').checked = prefs.getBoolPref('bDictModern'); document.getElementById('fr-FR-classic').checked = prefs.getBoolPref('bDictClassic'); document.getElementById('fr-FR-reform').checked = prefs.getBoolPref('bDictReform'); document.getElementById('fr-FR-classic-reform').checked = prefs.getBoolPref('bDictClassicReform'); // center window document.getElementById('grammalecte-spelloptions-window').centerWindowOnScreen(); } catch (e) { Cu.reportError(e); } }, setDictionaries: function () { oSpellControl.init(); this._setGraphspellDictionaries(); |
Modified gc_lang/fr/tb/content/spell_options.xul from [5453a7e2cc] to [73a5358896].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | - - + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + | <?xml version="1.0"?> <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> <?xml-stylesheet href="chrome://grammarchecker/content/spell_options.css" type="text/css"?> <!DOCTYPE dialog SYSTEM "chrome://grammarchecker/locale/spell_options.dtd"> <dialog id="grammalecte-spelloptions-window" title="&window.title;" orient="vertical" buttons="accept,cancel" ondialogaccept="oDialogControl.setDictionaries();" ondialogcancel="return;" |
Modified gc_lang/fr/tb/locale/en/spell_options.dtd from [fc660cb649] to [1569f5f972].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | - - + + + + + + + + + | <!ENTITY window.title "Grammalecte · Spelling options"> <!ENTITY dialogheader.label "Spelling options"> |
Modified gc_lang/fr/tb/locale/fr/spell_options.dtd from [43af7ee338] to [af7cf68ff7].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | - - + + + + + + + | <!ENTITY window.title "Grammalecte · Options orthographiques"> <!ENTITY dialogheader.label "Options orthographiques"> |
︙ |