diff --git a/components/Dictionary.vue b/components/Dictionary.vue index cfd84120..0ddbf1ea 100644 --- a/components/Dictionary.vue +++ b/components/Dictionary.vue @@ -245,7 +245,7 @@ if (!a.approved && b.approved) { return -1; } - return a.masc.toLowerCase().localeCompare(b.masc.toLowerCase()); + return a.masc.toLowerCase().localeCompare(b.masc.toLowerCase(), this.config.locale); }); for (let w of sorted) { yield [w.id, new Noun(w)];