mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-24 05:05:20 -04:00
[en] longer display name for 'they' and 'e'
This commit is contained in:
parent
fd5988d0a6
commit
27e0bf6b5f
@ -286,9 +286,12 @@ export class Pronoun {
|
|||||||
: this.morphemes[MORPHEMES[1]].split('&');
|
: this.morphemes[MORPHEMES[1]].split('&');
|
||||||
for (let i in optionsN) {
|
for (let i in optionsN) {
|
||||||
let nameOption = optionsN[i] + '/' + optionsG[i < optionsG.length - 1 ? i : optionsG.length - 1];
|
let nameOption = optionsN[i] + '/' + optionsG[i < optionsG.length - 1 ? i : optionsG.length - 1];
|
||||||
if (nameOption === 'they/them' && this.morphemes['reflexive'].split('&')[i] === 'themself') {
|
if (nameOption === 'they/them') {
|
||||||
// TODO english specific, extract
|
// TODO english specific, extract
|
||||||
nameOption = 'they/them/themself';
|
nameOption += '/' + this.morphemes['reflexive'].split('&')[i];
|
||||||
|
} else if (nameOption === 'e/em') {
|
||||||
|
// TODO english specific, extract
|
||||||
|
nameOption += '/' + this.morphemes['possessive_determiner'].split('&')[i];
|
||||||
}
|
}
|
||||||
options.add(nameOption);
|
options.add(nameOption);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user