diff --git a/locale/en/pronouns/pronouns.tsv b/locale/en/pronouns/pronouns.tsv index 841799ee0..f6f32b58b 100644 --- a/locale/en/pronouns/pronouns.tsv +++ b/locale/en/pronouns/pronouns.tsv @@ -5,7 +5,7 @@ they,they/them Singular “they” TRUE they them their theirs themselves TRUE T they/them/themself Singular “they” TRUE they them their theirs themself TRUE TRUE TRUE Singular “they” has been used in English to describe an unspecified person since the late 1300s (it's even older than singular “you”!). Nowadays, it's the most popular choice among people who prefer gender neutral forms. It starts being {https://www.merriam-webster.com/words-at-play/singular-nonbinary-they=accepted by dictionaries} too.@It is also common to use {/they=“themselves”} as a reflexive form. reflexive This list of sources includes both the version with {/they=“themselves”} and {/they/them/themselves=“themself”}, as well as those that don't happen to use reflexive. it,it/its Personal “it” TRUE it it its its itself FALSE FALSE TRUE Although “it” is normally used for objects, not people, some actually do like being called that way. If someone wants you to call it “it”, it's not offensive – it's actually respectful. But remember that it/its pronouns have a history of transphobic use, so only with people who explicitly wish it. one,one/one's Specific “one” TRUE one one one's one's oneself FALSE FALSE TRUE “One” is used in formal English when talking about a general or a hypothetical person. Recently people started using “one” also as their personal pronoun. -ae,æ,ae/aer,æ/ær Neopronoun “ae” / “æ” FALSE ae|ei aer|ɛɹ aer|ɛɹ aers|ɛɹz aerself|ɛɹsɛlf FALSE FALSE TRUE Created by David Lindsay for a 1920 novel A Voyage to Arcturus, where it's used by an alien, third-sex species. +ae,æ,ae/aer,æ/ær Neopronoun “ae” / “æ” FALSE ae|eɪ aer|ɛɹ aer|ɛɹ aers|ɛɹz aerself|ɛɹsɛlf FALSE FALSE TRUE Created by David Lindsay for a 1920 novel A Voyage to Arcturus, where it's used by an alien, third-sex species. co,co/cos Neopronoun “co/cos” FALSE co|ko co|ko cos|koz co's|koz coself|kosɛlf FALSE FALSE TRUE Created by Mary Orovan in 1970, derived from the Indo-European *ko. e,e/em/eir Spivak pronouns FALSE e|i em|ɛm eir|ɛɹ eirs|ɛɹz emself|ɛmsɛlf FALSE FALSE TRUE Coined by Michael Spivak in 1990 for his manual The Joy of TeX to avoid gendering people in the examples. possessive_determiner e/em/es Neopronoun “e/em/es” FALSE e|i em|ɛm es|iz ems|ɛmz emself|ɛmsɛlf FALSE FALSE TRUE First created in 1890 by James Rogers based on {/he=he} and {/them=them} pronoun sets. Since then multiple versions were created, differing in declension and capitalisation. possessive_determiner diff --git a/server/routes/pronounce.js b/server/routes/pronounce.js index 58176f572..896145a7e 100644 --- a/server/routes/pronounce.js +++ b/server/routes/pronounce.js @@ -25,7 +25,7 @@ router.get('/pronounce/:pronoun*', async (req, res) => { const example = new Example( Example.parse(singular), Example.parse(plural || singular), - !!isHonorific, + !!parseInt(isHonorific || '0'), ) const text = example.pronounce(pronoun);