Newer
Older
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
"general": {
"about": "Abouwt",
"tos": "Tewms of sewvice",
"privacy": "Pwivacy powicy",
"image_by": "Image bwy",
"loading": "Lyoading…"
},
"app": {
"special": {
"status": {
"connecting": "Cwowonnyecting…",
"offline": "probably dead",
"disconnected": "Discwonnected.",
"reconnecting": "Wecwowonnyecting…"
},
"friends": {
"pending": "Pwending",
"blocked": "Bwocked",
"incoming": "Incoming fwiend wequwest.",
"outgoing": "Ouwtgoing fwiend wequwest.",
"nobody": "Nyobody here yet!"
},
"modals": {
"error": "We did a fwucky wucky owo",
"clipboard": {
"unavailable": "Cwipboawd is uwnavaiwabwe! OwO",
"https": "fix your fucking browser you moron",
"copy": "Manuwaw copy:"
},
"signed_out": "Youw wewe signed ouwt! OwO",
"onboarding": {
"welcome": "Wewcome Mastew! OwO",
"pick": "What do u want me to caww u, mastew? UwU"
},
"actions": {
"ok": "Ok",
"close": "Cwose",
"reload": "Rewoad app",
"continue": "Continuwe",
"cancel": "Cancew",
"send_email": "Swend Email",
"update": "Uwupdate",
"preview": "Pweview",
"save": "Syave"
},
"prompt": {
"confirm_leave": "Go away fwom {{group_name}} (They'll pwobabwy miss u OmO)?",
"confirm_leave_long": "U can't come bacc unless ur invited in again."
},
"account": {
"change": {
"username": "Chyange uw usewname",
"password": "Chyance uw passwowd",
"email": "Chyange uw email"
},
"failed": "Fwailed to chyange!"
}
},
"requires_online": "Youw need to be onwine to view this.",
"popovers": {
"user_profile": {
"profile": "Pyofiwe",
"no_groups": "No mutual gwoups!",
"no_users": "No mutual fwiends!",
"mutual_groups": "Mutual Gwoups",
"mutual_friends": "Mutual Fwiends",
"badges": {
"translator": "Twanslatyor",
"early_adopter": "Eawwy adoptew",
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
},
"sub": {
"connections": "Cyonnectwions",
"information": "Infyormwation",
"badges": "Byadges"
},
"empty": "It's a byit empwty in hyere..."
},
"user_picker": {
"select": "Syelect fwiends tyo add."
}
},
"copy_username": "Cwick to copy uwsewname"
},
"status": {
"online": "Onwine",
"idle": "Idwe",
"busy": "Bwusy",
"invisible": "Invisibwe",
"offline": "Offwine"
},
"navigation": {
"tabs": {
"home": "Hwome",
"dev": "Master",
"friends": "Fwiends",
"unreads": "Unweads",
"saved": "Sawved nwotes"
}
},
"main": {
"categories": {
"conversations": "Convewsations",
"channels": "Channews",
"members": "Kittens",
"participants": "Pyarticipwants"
},
"channel": {
"message": "Messawge {{name}}",
"message_where": "Speek in {{channel_name}}",
"message_who": "Talk to {{person}}",
"system": {
"removed_by": "ryemoved bwy",
"added_by": "addyed bwy",
"user_left": "lyeft.",
"user_joined": "jyoined.",
"channel_renamed": "ryenamwed the channyel two",
"channel_icon_changed": "chyanged the channyew icyon",
"channel_description_changed": "chyanged the channyew dyescrwiption"
},
"typing": {
"several": "Panic Panic Panic…",
"multiple": "{{userlist}} and {{user}} awe mashing their kewwboard…",
"single": "{{user}} is mashing their kewwboard…"
},
"attached_file": "Attyached {{filename}}",
"failed_upload": "Fwailed to upwoad!",
"uploading_file": "Upwoading fwile…",
"message_saved": "Syawe to uw nyotes",
"bot": "Senpai",
"unknown_user": "<Unknywown Cunt>",
"edited": "(edyited)",
"start": {
"group": "Twis is thye styart of ye conversyation."
},
"misc": {
"viewing_old": "Viewing owdew messages",
"jump_present": "Juwmp to pwesent",
"spoiler_attachment": "Spoiwew"
},
"voice": {
"unmute": "Unmuwte",
"mute": "Muwte",
"leave": "Lweavwe",
"connected": "Voice connyected"
}
},
"groups": {
"name": "Gwoup Name",
"create": "Cweate a gwoup.",
"owner": "Daddy"
}
},
"context_menu": {
"message_user": "Mwessage",
"copy_id": "Cwopy ID",
"block_user": "Bwock Usew",
"edit_message": "Edit Mwessage",
"cancel_friend": "Cancew Weqwest",
"remove_friend": "Unfwend ÒmÓ",
"add_friend": "Add Fwend OwO",
"unblock_user": "Unbwock Usew",
"remove_member": "Wemove Fwom Dis Gang",
"delete_message": "Delet Dis",
"mark_as_read": "Mawk As Wead",
"copy_mid": "Steal Message ID",
"copy_cid": "Steal Channew ID",
"copy_uid": "Steal Usew ID",
"mention": "Annoy",
"save_video": "Swave Video",
"open_video": "Owopen Video",
"save_image": "Swave Image",
"open_image": "Owopen Image",
"save_file": "Swave Fwile",
"open_file": "Open Fwile",
"quote_message": "Qwuote Mwessage",
"cancel_message": "Cyancel Swend",
"retry_message": "Rwetry Swend",
"copy_text": "Steal Text",
"open_link": "Opwen Lyink",
"copy_link": "Cwopy Lyink",
"set_custom_status": "Syet a cyustom styatus",
"clear_status": "Clear Styatus",
"custom_status": "Cyustom Styatus",
"open_channel_settings": "Chyannel Syettwings",
"open_group_settings": "Gyoup Swettings",
"copy_selection": "Copy sewection"
},
"settings": {
"pages": {
"sessions": {
"title": "Seshions",
"this_device": "Dis Device",
"created": "Cweated {{time_ago}}",
"active_sessions": "Actyive Syessions"
},
"logOut": "Log Out. See u latew uwu",
"language": {
"title": "Wangwuage",
"select": "Syelect langwuage"
},
"notifications": {
"enable_sound": "Pway Syound on Mwessage.",
"enable_desktop": "Enabwe Desktop Nowotifications.",
"title": "Nowotifcations",
"enable_push": "Enabwe Push Nowotifications.",
"descriptions": {
"enable_outgoing_sound": "Enyable to pway syound when you syend a mwessage.",
"enable_sound": "Enyable for incoming mwessage syounds.",
"enable_push": "Enyable to ryeceive nyotifications when ur'e offwine.",
"enable_desktop": "Tis' will gyive u nyotifications while ur app is opwen."
},
"enable_outgoing_sound": "Play Syend Swound.",
"sounds": "Syounds",
"push_notifications": "Pyush Nyotificwations"
},
"appearance": {
"theme_data": "Theem Data",
"import_theme": "Impowt theem fwom stwing",
"import_clipboard": "Impowt fwom cwipboawd",
"export_clipboard": "Expowt to cwipboawd",
"reset_overrides": "Weset theem ovewwides",
"overrides": "Theem Ovewwides",
"title": "Appeawance",
"import_manual": "Impowt manuwally",
"sync": "Syinc Optyions",
"custom_css": "H#cker CSS",
"advanced": "Profesional H#cker Options",
"message_display": "Myessage Dyisplay",
"accent_selector": "Accyent Colouw",
"color": {
"dark": "dyark",
"light": "lyight"
},
"display": {
"compact_description": "Ye good ol' IRC.",
"default_description": "Byeautiful, sleek and modewn.",
"compact": "Cwompact",
"default": "Dyefault"
},
"theme": "Thyeme",
"emoji_pack": "Emyoji Pwack"
},
"account": {
"title": "Mah Account",
"change_field": "Chyange"
},
"feedback": {
"title": "Fyeedbwack",
"send": "Syend Fweedback",
"describe": "Dyeswibe teh issyue.",
"other": "Othew",
"feature": "Fyeature Wequest",
"bug": "Config Issue",
"report": "Wyat do u wyant to wepowt?"
},
"source_code": "Sauce",
"donate": {
"title": "Giiw Monye"
},
"profile": {
"placeholder": "Wyite syomething abwout uwself…",
"fetching": "Stealing uw pyowife…",
"info": "Informyation",
"title": "Pyofiwe",
"profile_picture": "Pwofiwe pictuwwe",
"custom_background": "Cuwstom backgwouwnd",
"edit_background": "Edit backgwouwnd"
}
},
"categories": {
"user_settings": "Usew Settings",
"client_settings": "Uwuser Configuwations"
},
"title": "Configuwation",
"channel_pages": {
"overview": {
"description": "Chyannel Dyescwiption",
"name": "Channyel Nwame",
"title": "Owervyuw",
"icon": "Gwoup Icwon"
}
},
"tips": {
"sessions": {
"b": "syecuwe uw accwount by chyanging uw passwowd and usying 2FA.",
"a": "Else if you see an unkwown syession on teh lyist,"
},
"languages": {
"b": "Hyelp cyontribyute moar tyanslations.",
"a": "Myissing a lyanguage u wyant?"
},
"account": {
"b": "Hyead ovew to uw pwofiwe syettings.",
"a": "Lyooking two cyustomwise uw pwublic pwofiwe?"
}
},
"actions": {
"remove": "Remowe",
"upload": "Upwoad (max {{filesize}})"
}
}
},
"login": {
"title": "Lwogin",
"register": "Registew",
"username": "Usewname",
"email": "Emaiw",
"password": "Passwowd",
"enter": {
"email": "Entew uw emaiw.",
"password": "Entew uw passwowd.",
"username": "Entew a uwsewname.",
"current_password": "Ewnter uw cuwwent passwowd.",
"invite": "Ewnter uw inwite cwode."
},
"forgot": "Fowgot uw passwowd UwU?",
"reset": "Ryeset passwowd.",
"new": "New to REWOLT?",
"create": "Cweate a new accouwnt.",
"cancel": "Cancew wequwest.",
"remembered": "Go bwack to wogin.",
"existing": "Awweady have an accouwnt? UwU",
"successful_registration": "You hawwe wegistewd!",
"open_mail_provider": "Notices youw {{provider}}",
"check_mail": "Peek youw maiwl owo rawr",
"error": {
"create": "Fwailed to ryegister!",
"resend": "Fwailed to rwesend!",
"reset": "Fwailed to rweset!",
"login": "Fwailed to login!"
},
"check_spam": "Bye sure to chyeck spwam if you cyan't fwind it",
"resend": "Rwesend werification.",
"missing_verification": "Nyo email?",
"set_password": "Set nyeww passwowd.",
"current_password": "Cwurrent Passwowd",
"invite": "Inwite Cwode"
},
"dayjs": {
"lastDay": "[Yestewday at] LT",
"sameDay": "[Twoday at] LT",
"nextDay": "[Tomowwow at] LT",
"lastWeek": "[Lwast] dddd [at] LT",
"nextWeek": "dddd [at] LT",
"sameElse": "L"
},
"quantities": {
"members": {
"many": "{{count}} Kittens",
"one": "1 Kitten"
}
},
"notifications": {
"now_friends": "Uwe awnd @{{person}} awe now mwarried!",
"sent_request": "@{{person}} wants to be yuww fwiend."
},
"error": {
"Unlabelled": "Swomething got fwucked.",
"FailedValidation": "Faiwed to vawidate fiewds.",
"DatabaseError": "Database ewwow.",
"UnknownError": "See consowe.",
"OperationFailed": "Opewation faiwed.",
"MissingHeaders": "Your browser is stupid.",
"InvalidSession": "Invawid session.",
"UnverifiedAccount": "Unvewified accouwnt.",
"UnknownUser": "Unknown uwsew.",
"EmailInUse": "Emaiw in uwse.",
"AlreadyOnboarded": "Awweady finished onboawding.",
"UsernameTaken": "Usewname is tawken.",
"AlreadyFriends": "Awweady fwiends with this uwsew.",
"AlreadySentRequest": "Awweady sent a wequwest to this uwsew.",
"Blocked": "Youw have bwocked this uwsew.",
"BlockedOther": "This uwsew has bwocked u.",
"NoEffect": "This wequwest had no effect.",
"RequiredField": "Requwiwed",
"TooShort": "Too showt",
"TooLong": "Dong too long",
"InvalidEmail": "Invawid emaiw addwess",
"InternalError": "Intewnaw ewwow.",
"WrongPassword": "Wwong passwowd.",
"Unavailable": "Not Awaiwabwe.",
"IoError": "Swerver encyountered an I/O ewwow.",
"ProbeError": "Fwailed to gyet fwile myetadata.",
"MissingData": "Rwequest is myissing dyata.",
"FailedToReceive": "Swerver fwailed to rweveceiv uw fwile.",
"FileTooLarge": "Dong too big.",
"InvalidInvite": "wInwawid cwode",
"MissingInvite": "Mwissing inwite cwode in wequest.",
"InvalidToken": "Inwavid twoken",
"InvalidCredentials": "Email or passwowd is wong.",
"EmailFailed": "Email fwailed to syend.",
"RenderFail": "Tyemplate rwendering fwailed.",
"MissingPermission": "Myissing pwermission.",
"DeniedNotification": "Yuw denyied nyotyification access, check pwage syettings.",
"UnsupportedBrowser": "Byowser is myissing suppowt fow this featuwe.",
"Unauthorized": "Unyauthowized.",
"NetworkError": "Network config issue.",
"CompromisedPassword": "Tyis passwowowd is cyompwomised."
}
}