diff options
Diffstat (limited to 'ext/jp/translator.js')
-rw-r--r-- | ext/jp/translator.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/jp/translator.js b/ext/jp/translator.js index b3e96538..79f8515a 100644 --- a/ext/jp/translator.js +++ b/ext/jp/translator.js @@ -98,6 +98,10 @@ class Translator { processTerm(groups, source, rules=[], root='') { for (const entry of this.dictionary.findTerm(root || source)) { + if (entry.id in groups) { + continue; + } + groups[entry.id] = { expression: entry.expression, reading: entry.reading, |