Overview
Comment: | [fx] remove extended dictionary |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | comdic |
Files: | files | file ages | folders |
SHA3-256: |
79556f572a91c366502a349f5f2e209a |
User & Date: | olr on 2018-12-08 13:48:05 |
Other Links: | branch diff | manifest | tags |
Context
2018-12-08
| ||
18:09 | [fx] storing custom dictionaries rework check-in: ac510fca99 user: olr tags: fx, comdic | |
13:48 | [fx] remove extended dictionary check-in: 79556f572a user: olr tags: fx, comdic | |
13:07 | [fr] faux positifs et ajustements check-in: 9735a3cfc0 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/webext/background.js from [52ec35f9bc] to [0e7b4598da].
︙ | |||
122 123 124 125 126 127 128 | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | - - - - - - - | function initSCOptions (dSavedOptions) { if (!dSavedOptions.hasOwnProperty("sc_options")) { browser.storage.local.set({"sc_options": { extended: true, community: true, personal: true }}); |
︙ |
Modified gc_lang/fr/webext/gce_worker.js from [f9f8b2256b] to [08f4a4604e].
︙ | |||
316 317 318 319 320 321 322 | 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 | - - - - - - - - - - | return; } //console.log("setDictionary", sDictionary); switch (sDictionary) { case "main": oSpellChecker.setMainDictionary(oDict); break; |
︙ |
Modified gc_lang/fr/webext/panel/main.html from [c94c7f3f57] to [6dfd86820a].
︙ | |||
109 110 111 112 113 114 115 | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | - - - - | <div id="hunspell_options"> <h2>DICTIONNAIRES DE GRAMMALECTE</h2> <p class="dictionaries_info">Ces dictionnaires ne sont utilisés que lors de l’analyse grammaticale.</p> <div class="option_section" id="main_dic_box"> <p><input type="checkbox" id="main_dic" data-dictionary="personal" checked disabled="disabled" /> <label for="main_dic">Dictionnaire principal</label></p> <p class="option_description">Environ 83 000 entrées, 500 000 flexions.<br/>Ni éditable, ni désactivable.</p> </div> |
︙ |