-
Notifications
You must be signed in to change notification settings - Fork 1
/
gendered-words.js
86 lines (86 loc) · 2.06 KB
/
gendered-words.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
module.exports = [
["he", "she"],
["his", "hers"],
["he's", "she's"],
["him", "her"],
["mr", "mrs"],
["ms", "miss"],
["himself", "herself"],
["he'd", "she'd"],
["actor", "actress"],
["administrator", "administratrix"],
["author", "authoress"],
["bachelor", "spinster"],
["boy", "girl"],
["boy scout", "girl guide"],
["bridegroom", "bride"],
["brother", "sister"],
["conductor", "conductress"],
["count", "countess"],
["czar", "czarina"],
["dad", "mum"],
["daddy", "mummy"],
["duke", "duchess"],
["emperor", "empress"],
["father", "mother"],
["father-in-law", "mother-in-law"],
["fiance", "fiancee"],
["fireman", "firewoman"],
["gentleman", "lady"],
["giant", "giantess"],
["god", "goddess"],
["governor", "matron"],
["grandfather", "grandmother"],
["grandson", "granddaughter"],
["headmaster", "headmistress"],
["heir", "heiress"],
["hero", "heroine"],
["host", "hostess"],
["hunter", "huntress"],
["husband", "wife"],
["king", "queen"],
["lad", "lass"],
["landlord", "landlady"],
["lord", "lady"],
["male", "female"],
["man", "woman"],
["manager", "manageress"],
["manservant", "maidservant"],
["masseur", "masseuse"],
["master", "mistress"],
["mayor", "mayoress"],
["milkman", "milkmaid"],
["millionaire", "millionairess"],
["monitor", "monitress"],
["monk", "nun"],
["mr.", "mrs."],
["murderer", "murderess"],
["nephew", "niece"],
["papa", "mama"],
["pa", "ma"],
["poet", "poetess"],
["policeman", "policewoman"],
["postman", "postwoman"],
["postmaster", "postmistress"],
["priest", "prietess"],
["prince", "princess"],
["prophet", "prophetess"],
["proprietor", "proprietress"],
["prosecutor", "prosecutrix"],
["protector", "protectress"],
["shepherd", "shepherdess"],
["sir", "madam"],
["son", "daughter"],
["son-in-law", "daughter-in-law"],
["step-father", "step-mother"],
["step-son", "step-daughter"],
["steward", "stewardess"],
["sultan", "sultana"],
["tailor", "tailoress"],
["uncle", "aunt"],
["usher", "usherette"],
["waiter", "waitress"],
["washerman", "washerwoman"],
["widower", "widow"],
["wizard", "witch"]
];