Module:Grammar/GenderTable
Jump to navigation
Jump to search
local genders= {
["hartind"] = {["plural"] = "0",
["personterm"] = "hartind",
["immaturepersonterm"] = "faun",
["formaladdressterm"] = "hartind",
["offspringterm"] = "child",
["siblingterm"] = "sibling",
["parentterm"] = "parent",
["defaultpronouns"] = "they/them/their"
},
["nonspecific"] = {["plural"] = "0",
["personterm"] = "human",
["immaturepersonterm"] = "child",
["formaladdressterm"] = "friend",
["offspringterm"] = "child",
["siblingterm"] = "sib",
["parentterm"] = "progenitor",
["defaultpronouns"] = "they/them/their"
},
["neuter"] = {["plural"] = "0",
["personterm"] = "human",
["immaturepersonterm"] = "child",
["formaladdressterm"] = "friend",
["offspringterm"] = "child",
["siblingterm"] = "sib",
["parentterm"] = "progenitor",
["defaultpronouns"] = "it/its"
},
["male"] = {["plural"] = "0",
["personterm"] = "man",
["immaturepersonterm"] = "boy",
["formaladdressterm"] = "friend",
["offspringterm"] = "son",
["siblingterm"] = "brother",
["parentterm"] = "father",
["defaultpronouns"] = "he/him/his"
},
["hindren male"] = {["plural"] = "0",
["personterm"] = "man",
["immaturepersonterm"] = "faun",
["formaladdressterm"] = "buck",
["offspringterm"] = "son",
["siblingterm"] = "brother",
["parentterm"] = "father",
["defaultpronouns"] = "he/him/his"
},
["hindren female"] = {["plural"] = "0",
["personterm"] = "woman",
["immaturepersonterm"] = "faun",
["formaladdressterm"] = "my doe",
["offspringterm"] = "daughter",
["siblingterm"] = "sister",
["parentterm"] = "mother",
["defaultpronouns"] = "she/her"
},
["female"] = {["plural"] = "0",
["personterm"] = "woman",
["immaturepersonterm"] = "girl",
["formaladdressterm"] = "friend",
["offspringterm"] = "daughter",
["siblingterm"] = "sister",
["parentterm"] = "mother",
["defaultpronouns"] = "she/her"
},
["collective"] = {["plural"] = "1",
["personterm"] = "humans",
["immaturepersonterm"] = "children",
["formaladdressterm"] = "friends",
["offspringterm"] = "children",
["siblingterm"] = "sibs",
["parentterm"] = "progenitors",
["defaultpronouns"] = "plural/they/them/their"
},
["plural"] = {["plural"] = "1",
["personterm"] = "people",
["immaturepersonterm"] = "children",
["formaladdressterm"] = "friends",
["offspringterm"] = "children",
["siblingterm"] = "sibs",
["parentterm"] = "progenitors",
["defaultpronouns"] = "plural/they/them/their"
},
["females"] = {["plural"] = "1",
["personterm"] = "women",
["immaturepersonterm"] = "girls",
["formaladdressterm"] = "friends",
["offspringterm"] = "daughters",
["siblingterm"] = "sisters",
["parentterm"] = "mothers",
["defaultpronouns"] = "she/her"
},
["elverson"] = {["subjective"] = "ey",
["objective"] = "em",
["possessive"] = "eir",
["substantivepossessive"] = "eirs",
["reflexive"] = "emself",
["pseudoplural"] = '0',
["plural"] = '0',
["personterm"] = "person",
["immaturepersonterm"] = "child",
["formaladdressterm"] = "friend",
["offspringterm"] = "child",
["siblingterm"] = "sibling",
["parentterm"] = "parent",
["defaultpronouns"] = "ey/em/eir"
}
}
return genders