This commit is contained in:
Andrea 2022-03-28 22:07:27 +02:00
parent bccbf25801
commit 7047a6cab1
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ export class Pronoun {
let nameOption = optionN + '/' + optionG; let nameOption = optionN + '/' + optionG;
if (config.pronouns.threeForms) { if (config.pronouns.threeForms) {
let thirdForms = (this.morphemes[MORPHEMES[2]] || '').split('&'); let thirdForms = (this.morphemes[MORPHEMES[2]] || '').split('&');
if (config.locale === 'ru') { if (config.locale === 'ru' || config.locale === 'ua') {
thirdForms = thirdForms.map(x => `[-${x}]`); thirdForms = thirdForms.map(x => `[-${x}]`);
} }
nameOption += '/' + thirdForms[i]; nameOption += '/' + thirdForms[i];