34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
}
}
if (xProgressBar) {
xProgressBar.value = xProgressBar.max;
}
try {
let oDAWG = new DAWG(lEntry, cStemming, sLangCode, sLangName, sDicName, sDescription, xProgressBar);
let oDict = oDAWG.createBinaryJSON(1);
return oDict;
}
catch (e) {
console.log("Dictionaries merger: unable to generate merged dictionary");
console.error(e);
return null;
}
|
|
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
}
}
if (xProgressBar) {
xProgressBar.value = xProgressBar.max;
}
try {
let oDAWG = new DAWG(lEntry, cStemming, sLangCode, sLangName, sDicName, sDescription, xProgressBar);
let oDict = oDAWG.createBinaryJSON();
return oDict;
}
catch (e) {
console.log("Dictionaries merger: unable to generate merged dictionary");
console.error(e);
return null;
}
|