summaryrefslogtreecommitdiff
path: root/ext/bg/js/translator.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bg/js/translator.js')
-rw-r--r--ext/bg/js/translator.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/ext/bg/js/translator.js b/ext/bg/js/translator.js
index ccf1876f..6c028c5c 100644
--- a/ext/bg/js/translator.js
+++ b/ext/bg/js/translator.js
@@ -59,12 +59,18 @@ class Translator {
const promises = [];
for (let i = text.length; i > 0; --i) {
- promises.append(
+ promises.push(
this.deinflector.deinflect(text.slice(0, i), term => {
return this.dictionary.findTerm(term).then(definitions => definitions.map(def => def.tags));
}).then(inflects => {
for (const inflect of inflects) {
- this.processTerm(groups, df.source, df.tags, df.rules, df.root);
+ this.processTerm(
+ groups,
+ inflect.source,
+ inflect.tags,
+ inflect.rules,
+ inflect.root
+ );
}
})
);