diff --git a/src/js/assayJS.js b/src/js/assayJS.js
index 897c9277802ed517aa6b82c92cfab49b7340c78d..2c70892482fcf74c81467b6630d0032d0975c5c1 100644
--- a/src/js/assayJS.js
+++ b/src/js/assayJS.js
@@ -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); }
 };
 
 /**