Skip to content
Snippets Groups Projects
Commit 3d6a122e authored by ezsh's avatar ezsh
Browse files

Add capitalized "woman" forms to the Pronouns class

parent 14d577c8
No related branches found
No related tags found
No related merge requests found
......@@ -409,6 +409,10 @@ App.Utils.Pronouns = class {
get woman() { return this.noun === "girl" ? "woman" : "man"; }
get women() { return this.noun === "girl" ? "women" : "men"; }
get loli() { return this.noun === "girl" ? "loli" : "shota"; }
get Woman() { return capFirstChar(this.woman); }
get Women() { return capFirstChar(this.women); }
get Loli() { return capFirstChar(this.loli); }
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment