230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
let dirname = path.dirname(pathnormalized);
return this.oSpellChecker.setPersonalDictionary(filename, dirname, bActivate);
}
return false;
}
//It's a valid json?
if (typeof dictionary !== "undefined" && dictionary.sHeader && dictionary.sHeader.startsWith("/grammalecte-fsa/")) {
return this.oSpellChecker.setPersonalDictionary(dictionary, bActivate);
}
return false;
}
spellParagraph(sText, bSuggest = true) {
if (!this.isInit.Graphspell) {
this.load(["Graphspell"]);
|
|
|
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
let dirname = path.dirname(pathnormalized);
return this.oSpellChecker.setPersonalDictionary(filename, dirname, bActivate);
}
return false;
}
//It's a valid json?
if (typeof dictionary !== "undefined" && dictionary.sHeader && dictionary.sHeader.startsWith("/grammalecte-fsa/")) {
return this.oSpellChecker.setPersonalDictionary(dictionary, "", bActivate);
}
return false;
}
spellParagraph(sText, bSuggest = true) {
if (!this.isInit.Graphspell) {
this.load(["Graphspell"]);
|