-
Notifications
You must be signed in to change notification settings - Fork 0
/
translations.py
149 lines (118 loc) · 2.91 KB
/
translations.py
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
english_to_genz = {
'win': 'w',
'loss': 'l',
'politically': 'woke',
'political': 'woke',
'makeup':'glowup',
'makeover': 'glowup',
'improved': 'glowup',
'improvement': 'glowup',
'guys': 'chat',
'suspicious':'sus',
'fan':'stan',
'supporter':'stan',
'friend': 'bro',
'sister': 'bro',
'brother': 'bro',
'friends': 'bros',
'sisters': 'bros',
'brothers': 'bros',
'group': 'squad',
'team': 'squad',
'lying': 'capping',
'lie': 'cap',
'liar': 'capper',
'crazy': 'wild',
'better': 'hits different',
'great': 'hits different',
'greater': 'hits diffrent',
'good': 'slaps',
'delicious': 'bussin',
'tasty': 'bussin',
'new': 'fresh',
'thing': 'shit',
'things': 'shit',
'stuff': 'shit',
'hell': 'ohio',
'perform': 'slay',
'do': 'slay',
'doing':'slaying',
'gaving off': 'giving',
'confident': 'sigma',
'brave': 'sigma',
'courageous': 'sigma',
'attractive': 'sigma',
'masculine': 'chad',
'muscular': 'chad',
'strong': 'chad',
'fighter':'chad',
'manly':'chad',
'goal': 'assignment',
'money': 'guap',
'wealth': 'guap',
'wealthy': 'guapy',
'rich': 'guapy',
'5': 'mid',
'mediocre':'mid',
'ugly':'mid',
'so-so':'mid',
'soso': 'mid',
'ruined': 'butchered',
'ruin': 'butcher',
'kill': 'knock',
'killed': 'knocked',
'insult': 'roast',
'burned': 'roasted',
'burnt': 'roasted',
'surprised':'shook',
'amazed': 'shook',
'nope': 'nah',
'not': 'naur',
'yes': 'yas',
'my': 'ma',
'hey': 'yo',
'about': 'bout',
'letting': 'lettin',
'create': 'cook',
'make': 'cook',
'creating':'cooking',
'making': 'cooking',
'made': 'cooked',
'created': 'cooked',
# 'do': 'cook',
# 'doing': 'cooking',
'genius': 'big brain',
'intelligent': 'big brain',
'stupid': 'goofy',
'weirdo':'NPC',
'weird':'NPC',
'confuse':'gaslight',
'confusing': 'gaslighting',
'manipulate': 'gaslight',
'manipulating': 'gaslighting',
'sex': 'hook up',
'slept': 'hooked up',
'romance': 'hook up',
'kiss': 'hook-up',
'secretly': 'lowkey',
'husband': 'zaddy',
'boyfriend': 'daddy',
'wife': 'mommy',
'girlfriend': 'mommy',
'ass': 'gyatt',
'butt': 'gyatt',
'bootie': 'gyatt',
"booty": 'gyatt',
'romantic': 'rizzler',
'charismatic': 'rizzler',
'charisma': 'rizz',
}
# genz_to_english= {v: k for k, v in english_to_genz.items()}
# def invertDictionary(d):
# myDict = {}
# for i in d:
# value = d.get(i)
# english_to_genz.setdefault(value,[]).append(i)
# return english_to_genz
# basically the above code but its faster i think
genz_to_english= {value: [key for key, val in english_to_genz.items() if val == value] for value in english_to_genz.values()}