feat(frontend): edit names/pronouns
This commit is contained in:
parent
b6d42fb15d
commit
59496a8cd8
18 changed files with 470 additions and 14 deletions
16
Foxnouns.Frontend/src/lib/defaultPronouns/en.ts
Normal file
16
Foxnouns.Frontend/src/lib/defaultPronouns/en.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
const enPronouns = {
|
||||
"they/them": { pronouns: ["they", "them", "their", "theirs", "themself"] },
|
||||
"they/them (singular)": {
|
||||
pronouns: ["they", "them", "their", "theirs", "themself"],
|
||||
display: "they/them (singular)",
|
||||
},
|
||||
"they/them (plural)": {
|
||||
pronouns: ["they", "them", "their", "theirs", "themselves"],
|
||||
display: "they/them (plural)",
|
||||
},
|
||||
"he/him": { pronouns: ["he", "him", "his", "his", "himself"] },
|
||||
"she/her": { pronouns: ["she", "her", "her", "hers", "herself"] },
|
||||
"it/its": { pronouns: ["it", "it", "its", "its", "itself"], display: "it/its" },
|
||||
} as Record<string, { pronouns: string[]; display?: string }>;
|
||||
|
||||
export default enPronouns;
|
7
Foxnouns.Frontend/src/lib/defaultPronouns/index.ts
Normal file
7
Foxnouns.Frontend/src/lib/defaultPronouns/index.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import enPronouns from "./en";
|
||||
|
||||
const defaultPronouns = {
|
||||
en: enPronouns,
|
||||
} as Record<string, Record<string, { pronouns: string[]; display?: string }>>;
|
||||
|
||||
export default defaultPronouns;
|
Loading…
Add table
Add a link
Reference in a new issue