@matsukky/gender
Version:
Easy list of gender terms in several languages.
63 lines (62 loc) • 1.82 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
exports.default = {
F: {
...utils_1.general.F,
genderName: "feminine",
childTerm: "girl",
adultTerm: "woman",
combined: "she/her",
subjectPronoun: "she",
objectPronoun: "her",
indirectPronoun: "her",
possessiveAdjective: "her",
reflexivePronoun: "herself",
demonstrative: "this",
indeterminateArticle: "a",
genderAdjective: "feminine",
pluralSubjectPronoun: "they",
pluralPossessiveAdjective: "their",
title: "miss",
shortTitle: "ms"
},
M: {
...utils_1.general.M,
genderName: "masculine",
childTerm: "boy",
adultTerm: "man",
combined: "he/him",
subjectPronoun: "he",
objectPronoun: "him",
indirectPronoun: "him",
possessiveAdjective: "his",
reflexivePronoun: "himself",
demonstrative: "this",
indeterminateArticle: "a",
genderAdjective: "masculine",
pluralSubjectPronoun: "they",
pluralPossessiveAdjective: "their",
title: "mister",
shortTitle: "mr"
},
X: {
...utils_1.general.X,
genderName: "neutral",
childTerm: "child",
adultTerm: "adult",
combined: "they/them",
subjectPronoun: "they",
objectPronoun: "them",
indirectPronoun: "them",
possessiveAdjective: "their",
reflexivePronoun: "themself",
demonstrative: "this",
indeterminateArticle: "a",
genderAdjective: "neutral",
pluralSubjectPronoun: "they",
pluralPossessiveAdjective: "their",
title: "mix",
shortTitle: "mx"
}
};