Index: gc_lang/fr/webext/gce_worker.js ================================================================== --- gc_lang/fr/webext/gce_worker.js +++ gc_lang/fr/webext/gce_worker.js @@ -312,11 +312,11 @@ function setDictionary (sDictionary, oDict, dInfo) { if (!oSpellChecker) { postMessage(createResponse("setDictionary", "# Error. SpellChecker not loaded.", dInfo, true)); return; } - console.log("setDictionary", sDictionary); + //console.log("setDictionary", sDictionary); switch (sDictionary) { case "main": oSpellChecker.setMainDictionary(oDict); break; case "extended": @@ -337,11 +337,11 @@ function setDictionaryOnOff (sDictionary, bActivate, dInfo) { if (!oSpellChecker) { postMessage(createResponse("setDictionary", "# Error. SpellChecker not loaded.", dInfo, true)); return; } - console.log("setDictionaryOnOff", sDictionary, bActivate); + //console.log("setDictionaryOnOff", sDictionary, bActivate); switch (sDictionary) { case "extended": if (bActivate) { oSpellChecker.activateExtendedDictionary(); } else {