-
Notifications
You must be signed in to change notification settings - Fork 65
/
piglatin.json
993 lines (993 loc) · 48.9 KB
/
piglatin.json
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
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
{
"error": {
"CompromisedPassword": "Isthay asswordpay isway ompromisedcay.",
"DeniedNotification": "Youway eniedday otificationnay accessway, eckchay agepay ettingssay.",
"UnsupportedBrowser": "Owserbray isway issingmay upportsay orfay isthay eaturefay.",
"IoError": "Erversay encounteredway anway I/oway errorway.",
"ProbeError": "Ailedfay otay etgay ilefay etadatamay.",
"MissingData": "Equestray isway issingmay ataday.",
"FailedToReceive": "Erversay ailedfay otay eceiveray yourway ilefay.",
"FileTooLarge": "Ilefay isway ootay argelay.",
"Unavailable": "Unavailableway.",
"InvalidEmail": "Invalidway emailway addressway",
"TooLong": "Ootay onglay",
"TooShort": "Ootay ortshay",
"RequiredField": "Equiredray",
"NoEffect": "Isthay equestray adhay onay effectway.",
"BlockedOther": "Isthay userway ashay ockedblay youway.",
"Blocked": "Youway avehay ockedblay isthay userway.",
"AlreadySentRequest": "Alreadyway entsay away equestray otay isthay userway.",
"AlreadyFriends": "Alreadyway iendsfray ithway isthay userway.",
"UsernameTaken": "Hattay sernameuway siay akentay.",
"AlreadyOnboarded": "Alreadyway inishedfay onboardingway.",
"InvalidInvite": "Invalidway odecay",
"MissingInvite": "Issingmay inviteway odecay inway equestray.",
"InvalidToken": "Invalidway okentay",
"InvalidCredentials": "Emailway orway asswordpay isway ongwray.",
"EmailFailed": "Emailway ailedfay otay endsay.",
"EmailInUse": "Emailway inway useway.",
"UnknownUser": "Unknownway userway.",
"UnverifiedAccount": "Unverifiedway accountway.",
"InvalidSession": "Invalidway essionsay.",
"MissingHeaders": "Issingmay eadershay.",
"RenderFail": "Emplatetay enderingray ailedfay.",
"OperationFailed": "Operationway ailedfay.",
"UnknownError": "Eesay onsolecay.",
"MissingPermission": "Issingmay ermissionpay.",
"InternalError": "Internalway errorway.",
"DatabaseError": "Atabaseday errorway.",
"FailedValidation": "Ailedfay otay alidatevay ieldsfay.",
"Unlabelled": "Omethingsay appenedhay.",
"Unauthorized": "Unauthorizedway.",
"NetworkError": "Etworknay errorway.",
"ReachedMaximumBots": "Ou'veyay eachedray ethay aximummay amountyay ofyay otsbay.",
"AudioPermissionBlock": "Onay accessyay otay ouryay icrophonemay, easeplay eckchay ouryay owser'sbray onfigurationcay."
},
"notifications": {
"now_friends": "@{{person}}!",
"sent_request": "@{{person}} entsay ouyay ayay iendfray equestray."
},
"dayjs": {
"sameElse": "Lay",
"nextWeek": "dddday [atyay] {{time}}",
"lastWeek": "[astlay] dddday [atyay] {{time}}",
"nextDay": "[Omorrowtay atyay] {{time}}",
"sameDay": "[Odaytay atyay] {{time}}",
"lastDay": "[Esterdayyay atyay] {{time}}",
"defaults": {
"date_separator": "/",
"date_format": "simplified",
"twelvehour": "no"
}
},
"quantities": {
"members": {
"many": "{{count}}",
"one": "1 Embermay"
},
"dropFiles": {
"one": "Ropday aay ilefay",
"many": "Ropday {{count}} ilesfay"
}
},
"app": {
"context_menu": {
"open_group_settings": "Oupgray ettingssay",
"open_channel_settings": "Annelchay ettingssay",
"set_custom_status": "Etsay away ustomcay atusstay",
"clear_status": "Earclay atusstay",
"custom_status": "Ustomcay atusstay",
"cancel_friend": "Ancelcay equestray",
"remove_friend": "Emoveray iendfray",
"add_friend": "Addyay iendfray",
"unblock_user": "Unblockyay useryay",
"block_user": "Ockblay useryay",
"open_link": "Openyay inklay",
"copy_link": "Opycay inklay",
"save_video": "Avesay ideovay",
"open_video": "Openyay ideovay",
"save_image": "Avesay imageyay",
"open_image": "Openyay imageyay",
"save_file": "Avesay ilefay",
"open_file": "Openyay ilefay",
"remove_member": "Emoveray omfray oupgray",
"delete_message": "Eleteday essagemay",
"edit_message": "Edityay essagemay",
"quote_message": "Uoteqay essagemay",
"cancel_message": "Ancelcay endsay",
"retry_message": "Etryray endsay",
"mark_as_read": "Arkmay asyay eadray",
"message_user": "Essagemay",
"mention": "Entionmay",
"copy_mid": "Opycay essagemay IDyay",
"copy_cid": "Opycay annelchay IDyay",
"copy_uid": "Opycay useryay IDyay",
"copy_text": "Opycay exttay",
"copy_selection": "Opycay electionsay",
"copy_id": "opycay idyay",
"copy_sid": "Opycay erversay IDyay",
"ban_member": "Anbay embermay",
"create_channel": "Eatecray annelchay",
"create_category": "Eatecray ategorycay",
"leave_group": "Eavelay oupgray",
"copy_message_link": "Opycay essagemay inklay",
"view_profile": "Iewvay ofilepray",
"reply_message": "Eplyray",
"delete_server": "Eleteday erversay",
"edit_identity": "Edityay identityyay",
"create_invite": "Eatecray inviteyay",
"open_notification_options": "Otificationnay optionsyay",
"open_server_settings": "Erversay ettingssay",
"kick_member": "Ickkay embermay",
"leave_server": "Eavelay erversay",
"close_dm": "Oseclay mday",
"delete_channel": "Eleteday annelchay",
"mark_unread": "Arkmay asyay unreadyay",
"make_owner": "Ivegay oupgray ownershipway",
"report_message": "Eportray essagemay",
"report_user": "Eportray useryay",
"report_server": "Eportray erversay"
},
"special": {
"requires_online": "Youway eednay otay ebay onlineway otay iewvay isthay.",
"popovers": {
"user_picker": {
"select": "Electsay iendsfray otay addway."
},
"user_profile": {
"badges": {
"early_adopter": "Earlyway Adopterway",
"supporter": "Upportersay",
"translator": "Anslatortray",
"responsible_disclosure": "Esponsiblyray Isclosedday Ugbay(s)",
"founder": "Ounderfay",
"moderation": "Atformplay Oderationmay"
},
"sub": {
"connections": "Onnectionscay",
"information": "Informationway",
"badges": "Adgesbay"
},
"no_groups": "Onay utualmay oupsgray",
"no_users": "Onay utualmay iendsfray",
"empty": "It'syay ayay itbay emptyyay inyay erehay…",
"mutual_groups": "Utualmay Oupsgray",
"mutual_friends": "Utualmay Iendsfray",
"profile": "Ofilepray",
"mutual_servers": "Utualmay Erverssay",
"no_servers": "Onay utualmay erverssay"
},
"server_identity": {
"nickname": "Icknamenay",
"avatar": "Avataryay",
"title": "Cngechay identityyay onyay {{server}}"
},
"create_bot": {
"title": "Eatecray ayay ewnay otbay",
"failed": "Ailedfay otay eatecray ayay otbay!"
}
},
"modals": {
"actions": {
"cancel": "Ancelcay",
"continue": "Ontinuecay",
"reload": "Eloadray Appway",
"send_email": "Endsay Emailway",
"preview": "Eviewpray",
"update": "Updateway",
"close": "Oseclay",
"save": "Avesay",
"ok": "Okway",
"kick": "Ickkay",
"hide": "Idehay",
"edit": "Edityay",
"reveal": "Evealray",
"leave": "Eavelay",
"remove": "Emoveray",
"ban": "Anbay",
"back": "Ogay ackbay",
"block": "Ockblay",
"delete": "Eleteday",
"create": "Eatecray",
"report": "Eportray",
"confirm": "Onfirmcay",
"done": "Oneday",
"reset": "Esetray",
"dont_block": "On'tday lockbay"
},
"account": {
"failed": "Ailedfay otay angechay!",
"change": {
"password": "Angechay yourway asswordpay",
"email": "Angechay yourway emailway",
"username": "Angechay yourway usernameway"
}
},
"prompt": {
"confirm_leave_long": "Youway on'tway ebay ableway otay ejoinray unlessway youway areway e-invitedray.",
"confirm_leave": "Eavelay {{name}}?",
"confirm_delete_message_long": "Areyay ouyay uresay ouyay antway otay eleteday isthay?",
"unfriend_user": "nfrienduay {{name}}?",
"block_user": "Ockblay {{name}}?",
"create_invite_generate": "Eneratinggay inviteyay…",
"confirm_ban": "Ouyay areyay aboutyay otay anbay {{name}}",
"confirm_close_dm": "Oseclay onversationcay ithway {{name}}?",
"confirm_close_dm_long": "Ouyay ancay e-openray ityay aterlay utbay ityay illway isappearday onyay othbay idessay.",
"confirm_delete": "Eleteday {{name}}?",
"confirm_delete_long": "Onceyay it'syay eletedday, ere'sthay onay oinggay ackbay.",
"confirm_kick": "Areyay ouyay uresay ouyay antway otay ickkay {{name}}?",
"confirm_ban_reason": "Anbay Easonray",
"unfriend_user_long": "Ouyay aymay otnay ebay ableyay otay alktay otay emthay againyay untilyay ouyay addyay emthay ackbay.",
"create_invite_created": "Erehay isyay ouryay ewnay inviteyay odecay:",
"block_user_long": "Areyay ouyay uresay ouyay antway otay ockblay {{name}}? Eythay illway alsoyay ebay emovedray omfray ouryay iendsfray istlay.",
"silent_leave": "Ilentlysay Eavelay",
"members_not_notified": "Otherway embersmay illway otnay ebay otifiednay"
},
"onboarding": {
"pick": "Ickpay away usernameway atthay youway antway eoplepay otay ebay ableway otay indfay youway byay, isthay ancay ebay angedchay aterlay inway ettingssay.",
"welcome": "Elcomeway otay"
},
"signed_out": "Youway ereway ignedsay outway!",
"clipboard": {
"copy": "Anualmay Opycay:",
"https": "Ouyay areyay urrentlycay otnay inyay ayay SHTTPay ontextcay.",
"unavailable": "Ipboardclay isway unavailableway!"
},
"error": "Anway errorway occurredway!",
"token_reveal": "{{name}}'s Okentay",
"external_links": {
"short": "areyay ouyay uresay ouyay antway otay ogay otay:",
"title": "Externalyay inkslay ancay ebay angerousday!",
"trust_domain": "Usttray isthay omainday"
},
"changelogs": {
"title": "Angelogschay",
"description": "Eadray aboutway updatesway otay Evoltray.",
"older": "Iewvay olderway updatesway"
},
"out_of_date": {
"version": "Ouryay ientclay isway atway {{client}}, ereaswhay ethay erversay equiresray {{server}}.",
"description": "Itway ustmay ebay updatedway inway orderway otay orkway ithway ecentray angeschay.",
"title": "Ouryay ientclay isway outway ofway ateday!",
"ignore": "Ignoreway updateway",
"attempting": "Attemptingyay otay updateyay…"
},
"sessions": {
"title": "Areway ouyay uresay ouyay antway otay earclay ouryay essionssay?",
"accept": "Emoveray allway essionssay",
"short": "Ouyay annotcay undoway isthay actionway."
},
"confirm": "Onfirmcay actionway",
"mfa": {
"recovery_codes": "Ouryay ecoveryray odescay",
"save_codes": "Easeplay avesay esethay otay away afesay ocationlay.",
"confirm": "Easeplay onfirmcay usingyay electedsay ethodmay.",
"select_method": "Easeplay electsay away ethodmay otay authenticateway ouryay equestray.",
"enable_totp": "Enableway authenticatorway appway",
"prompt_totp": "Easeplay anscay orway useyay ethay okentay elowbay inway ouryay authenticationway appway.",
"enter_code": "Enterway Odecay"
},
"report": {
"message": "Eportray Essagemay",
"by_name": "Eportray {{name}}",
"reason": "Easonray",
"additional_context": "Additionalyay Informationyay",
"no_reason": "Onay easonray pecifiedsay / otheryay easonray",
"content_reason": {
"Malware": "Histay isyay alwaremay",
"Illegal": "Ontentcay reaksbay oneyay oryay oremay awslay",
"PromotesHarm": "Ontentcay romotespay armhay otay othersyay oryay elfsay",
"SpamAbuse": "Histay isyay pamsay oryay latformpay abuseyay",
"Harassment": "Histay isyay arassmenthay oryay abuseyay argetedtay atyay anotheryay useryay"
},
"user_reason": {
"InappropriateProfile": "User'say rofilepay isyay inappropriateyay orfay ayay eneralgay audienceyay",
"SpamAbuse": "Useryay isyay endingsay pamsay oryay otherwisteyay abusingyay hetay latformpay",
"Impersonation": "Histay useryay isyay impersonatingyay omeonesay elseyay",
"BanEvasion": "Histay useryay isyay evadingyay ayay anbay",
"Underage": "Histay useryay isyay otnay enoughyay otay avehay anyay accoungyay"
},
"reported": "Eportedray",
"thank_you": "Hanktay ouyay orfay elpinghay otay eepkay Revolt afesay. Eway illway eviewray ouryay eportray asyay oonsay asyay ossiblep.",
"block_user": "Ouldway ouyay ikelay otay lockbay histay useryay?"
}
},
"status": {
"reconnecting": "Econnectingray…",
"connecting": "Onnectingcay…",
"disconnected": "Isconnectedday.",
"offline": "Offlineway."
},
"friends": {
"nobody": "Obodynay erehay yetway!",
"outgoing": "Outgoingway iendfray equestray.",
"incoming": "Incomingway iendfray equestray.",
"blocked": "Ockedblay",
"pending": "Endingpay equestsray",
"sent": "Outgoingyay",
"from": {
"multiple": "Omfray {{userlist}} andyay {{user}}",
"several": "Omfray {{userlist}} andyay {{count}} oremay…",
"single": "Omfray {{user}}"
}
},
"copy_username": "Ickclay otay opycay usernameway",
"invite": {
"invalid_desc": "Ethay inviteyay aymay otnay existyay oryay ouyay on'tday avehay ermissionpay otay oinjay.",
"invalid": "Invalidyay inviteyay!",
"invited_by": "Invitedyay ybay {{user}}",
"login": "Oginlay otay Evoltray",
"accept": "Acceptyay Inviteyay",
"user_count": "{{member_count}} usersyay"
},
"copy": "Ickclay otay opycay",
"server-badges": {
"official": "Officialyay Erversay",
"verified": "Erifiedvay Erversay"
}
},
"settings": {
"tips": {
"sessions": {
"b": "ecuresay yourway accountway byay angingchay yourway asswordpay andway usingway A2fay.",
"a": "Ifway youway eesay anway unknownway essionsay onway ethay istlay,"
},
"languages": {
"b": "Elphay ontributecay oremay anslationstray.",
"a": "Issingmay away anguagelay youway antway?"
},
"account": {
"b": "Eadhay overway otay yourway ofilepray ettingssay.",
"a": "Ookinglay otay ustomisecay yourway ublicpay ofilepray?"
}
},
"channel_pages": {
"overview": {
"description": "Annelchay Escriptionday",
"name": "Annelchay Amenay",
"title": "Overviewway"
},
"permissions": {
"title": "Ermissionspay"
}
},
"pages": {
"logOut": "Oglay Outway",
"feedback": {
"send": "Endsay Eedbackfay",
"describe": "Easeplay escribeday ethay issueway.",
"other": "Otherway",
"feature": "Eaturefay Equestray",
"bug": "Ugbay rackertay",
"report": "Atwhay oday youway antway otay eportray?",
"title": "Eedbackfay",
"suggest": "Ubmitsay eaturefay uggestionsay",
"suggest_desc": "Uggestsay ewnay Evoltray eaturesfay onyay Ithubgay iscussionsday.",
"issue": "Eatecray ayay ewnay issueyay",
"issue_desc": "Otay elphay usyay oremay easilyyay iagetray issuesyay, ouyay ancay eatecray anyay issueyay onyay Ithubgay.",
"bug_desc": "Iewvay urrentlycay activeyay ugbay eportsray erehay.",
"description": "Ubmitsay eedbackfay"
},
"source_code": "Ourcesay odecay",
"donate": {
"title": "Onateday"
},
"language": {
"select": "Electsay yourway anguagelay",
"title": "Anguagelay",
"other": "Otheryay anguagelay optionsyay",
"const": "Onstructedcay anguageslay"
},
"notifications": {
"descriptions": {
"enable_outgoing_sound": "Enableway otay ayplay oundsay enwhay youway endsay away essagemay.",
"enable_sound": "Enableway orfay incomingway essagemay oundssay.",
"enable_push": "Enableway otay eceiveray otificationsnay enwhay you'reway offlineway.",
"enable_desktop": "Isthay illway ivegay youway otificationsnay ilewhay yourway appway isway openway."
},
"enable_outgoing_sound": "Ayplay Endsay Oundsay.",
"enable_sound": "Ayplay Oundsay onway Essagemay.",
"sounds": "Oundssay",
"enable_push": "Enableway Ushpay Otificationsnay",
"enable_desktop": "Enableway Esktopday Otificationsnay",
"push_notifications": "Ushpay Otificationsnay",
"title": "Otificationsnay",
"sound": {
"outbound": "Essagemay entsay",
"call_leave": "Useryay Eftlay Allcay",
"message": "Essagemay eceivedray",
"call_join": "Useryay Oinedjay Allcay"
}
},
"appearance": {
"sync": "Csynay Optionsway",
"custom_css": "Ustomcay Cssay",
"theme_data": "Emethay Ataday",
"import_theme": "Importway emethay omfray ingstray",
"import_manual": "Importway anuallymay",
"import_clipboard": "Importway omfray ipboardclay",
"export_clipboard": "Exportway otay ipboardclay",
"reset_overrides": "Esetray overridesway",
"overrides": "Emethay Overridesway",
"advanced": "Advancedway Optionsway",
"message_display": "Essagemay Isplayday",
"emoji_pack": "Emojiway Ackpay",
"accent_selector": "Accentway Olourcay",
"color": {
"dark": "arkday",
"light": "ightlay"
},
"display": {
"compact_description": "Oodgay oldway Ircway.",
"default_description": "Eautifulbay, eekslay andway odernmay.",
"compact": "Ompactcay",
"default": "Efaultday"
},
"theme": "Emethay",
"title": "Appearanceway",
"ligatures_desc": "Orfay upportedsay ontsfay, igatureslay ombinecay aracterschay ogethertay, orfay exampleyay, urningtay -> intoyay anyay arrowyay.",
"mono_font": "Onospacemay Ontfay Electorsay",
"ligatures": "Ontfay igatureslay",
"font": "Ontfay",
"import": "Importyay ayay emethay",
"theme_options": {
"title": "Emethay Optionsyay",
"follow_desc": "Enwhay eckedchay, ouyay on'tway ebay ableyay otay angechay ouryay emethay oryay useyay ayay ustomcay emethay.",
"transparency": "Ansparencytray Effectsyay",
"transparency_desc": "Enablesyay ansparencytray effectsyay oughoutthray ethay appyay.",
"seasonal": "Easonalsay Emethay",
"seasonal_desc": "Isplaysday effectsyay inyay ethay omehay abtay uringday olidayhay easonssay.",
"follow": "Ollowfay emsystay emethay"
},
"discover": {
"title": "Iscoverday Emesthay",
"description": "Bwsebray emesthay ademay ybay ethay ommunitycay"
},
"appearance_options": {
"title": "Appearanceway Optionsway",
"show_send": "Alwaysway owshay Endsay Essagemay uttonbay",
"show_send_desc": "Ifway isabledday, ethay Endsay Essagemay uttonbay illway onlyway appearway onway obilemay.",
"show_account_age": "Alwaysyay howsay accountyay ageyay extnay otay oinjay essagesmay",
"show_account_age_desc": "Ifyay isabledday, hetay accountyay ageyay illway onlyyay ebay hownsay orfay ewnay usersyay."
}
},
"sessions": {
"created": "{{time_ago}}",
"this_device": "Isthay Eviceday",
"active_sessions": "Activeway Essionssay",
"title": "Essionssay",
"logout": "Oglay outyay ofyay allyay otheryay essionssay"
},
"profile": {
"edit_background": "Editway Ackgroundbay",
"custom_background": "Ustomcay Ackgroundbay",
"profile_picture": "Ofilepray Icturepay",
"placeholder": "Itewray omethingsay aboutyay ourselfyay…",
"fetching": "Etchingfay ouryay ofilepray…",
"info": "Informationway",
"title": "Ofilepray",
"edit_profile": "Edityay Ofilepray"
},
"account": {
"change_field": "Angechay",
"title": "Myay Accountway",
"unique_id": "Histay siay aay niqueay seruay dentifieriay orfay ouryay ccountaay.",
"2fa": {
"title": "Wotay-actorfay Uthenticationaay",
"description": "Addyay anyay extrayay ayerlay ofyay ecuritysay ybay enablingyay 2fa onyay ouryay accountyay.",
"add_auth": "Addyay authenticatoryay",
"remove_auth": "Authenticatoryay",
"view_recovery": "Iewvay Ecoveryray Odescay",
"view_recovery_long": "Iewvya andyay ownloaddya ouryya FA2 ecoveryrya odescya.",
"generate_recovery": "Enerategay Ecoveryray Odescay",
"generate_recovery_long": "Etgya eadyrya otya useyay FA2 ybya ettingsya upyay ayay ecoveryrya ethodmya.",
"two_factor_on": "Wotay-actorfay authenticationway isway urrentlycay onway.",
"two_factor_off": "Ouyay avehay otnay enabledway wotay-actorfay authenticationway!"
},
"manage": {
"disable": "Isableday accountyay",
"delete": "Arkmay Accountyay orfay Eletionday",
"title": "Accountyay Anagementmay",
"description": "Isableday oryay eleteday ouryay accountyay atyay anyyay imetay. isthay actionyay illway oglay ouyay outyay andyay ullyfay eleteday ouryay accountyay, includingyay ouryay atchay istoryhay andyay iendsfray."
}
},
"bots": {
"copy_invite": "Opycay Inviteyay Inklay",
"add": "Addyay Otbay",
"token": "Okentay",
"public_bot": "Ublicpay Otbay",
"title": "Ymay Otsbay",
"create_bot": "Eatecray ayay Otbay",
"public_bot_desc": "Etherwhay otay allowyay otheryay usersyay otay inviteyay isthay otbay.",
"reserved": "Note: isthay ieldfay isyay eservedray orfay ethay uturefay.",
"unique_id": "Isthay isyay ayay uniqueyay identifieryay orfay ouryay otbay. isthay isyay otnay ethay ot'sbay okentay.",
"public_bot_tip": "Otbay isyay ublicpay. Anyoneyay ancay inviteyay ityay.",
"private_bot_tip": "Otbay isyay ivatepray. Onlyyay ouyay ancay inviteyay ityay.",
"interactions_url": "Interactionsyay URLyay",
"profile": "Otbay ofilepray"
},
"sync": {
"categories": "Csynay Ategoriescay",
"title": "Csynay",
"descriptions": {
"appearance": "Isthay illway csynay optionsyay uchsay asyay emojiyay ackspay andyay essagemay ensityday.",
"theme": "Isthay illway csynay ouryay osenchay emethay, olourscay andyay anyyay ustomcay scsay.",
"locale": "Isthay illway csynay ouryay urrentlycay osenchay anguagelay."
},
"options": "Csynay Optionsyay"
},
"experiments": {
"not_available": "Onay experimentsyay areyay availableyay atyay isthay imetay.",
"features": "Availableyay Eaturesfay",
"title": "Experimentsyay"
},
"native": {
"title": "Esktopday Ettingssay"
},
"audio": {
"input_device": "Icrophonemay",
"output_device": "Eakerspay / Eadsethay",
"device_label_NA": "N/Ayay",
"tip_retry": "Ouyay idn'tday ivegay ethay ermissionpay otay accessyay ouryay icrophonemay, easeplay {{retryBtn}}.",
"title": "Oicevay Ettingssay",
"button_retry": "etryray",
"tip_grant_permission": "Ouyay eednay otay antgray ermissionpay otay accessyay audioyay ettingssay.",
"button_grant": "Antgray ermissionpay"
},
"theme_shop": {
"title": "Emethay Opshay",
"category": {
"manage": "Anagemay avedsay",
"new": "Ewnay isthay eekway",
"default": "Efaultday emesthay",
"highest": "Ighesthay atedray",
"viewall": "Iewvay allyay",
"saved": "Avedsay"
},
"description": "Owsebray undredshay ofyay emesthay, eatedcray andyay uratedcay ybay ethay ommunitycay.",
"search": "Earchsay emesthay…",
"use": "Useyay emethay",
"by": "ybay",
"active": "Urrentlycay activeyay"
},
"plugins": {
"wip": "Arningway: Isthay eaturefay isway illstay inway evelopmentday.",
"title": "Uginsplay",
"delete_plugin": "Eleteday",
"no_plugins": "Onay uginsplay areway urrentlycay installedway."
}
},
"actions": {
"upload": "Uploadyay",
"remove": "Emoveray",
"max_filesize": "(axmay {{filesize}})",
"edit": "Editway {{name}}"
},
"categories": {
"client_settings": "Ientclay Ettingssay",
"user_settings": "Userway Ettingssay",
"danger_zone": "Angerday Onezay"
},
"title": "Ettingssay",
"permissions": {
"default_role": "Efaultday",
"channel": "Annelchay Ermissionspay",
"create_role": "Eatecray ayay ewnay oleray",
"server": "Erversay Ermissionspay",
"role_name": "Oleray amenay",
"role_colour": "Oleray Olourcay",
"hoist_desc": "Isplayday isthay oleray aboveway othersway.",
"hoist_role": "Oisthay Oleray",
"edit_title": "Editway Ermissionspay",
"role_ranking": "Oleray Ankingray",
"delete_role": "Eleteday Oleray",
"title": "Ermissionspay orfay {{role}}",
"role_options": "Oleray Optionsway"
},
"server_pages": {
"overview": {
"name": "Erversay amenay",
"description": "Annelchay Escriptionday",
"title": "Overviewyay",
"system_messages": "Emsystay Essagemay Annelschay"
},
"bans": {
"title": "Ansbay",
"user": "Useryay",
"reason": "Anbay Easonray",
"revoke": "Evokeray",
"no_reason": "Onay anbay easonray."
},
"invites": {
"revoke": "Evokeray",
"code": "Inviteyay Odecay",
"invitor": "Inviteryay",
"title": "Invitesyay",
"channel": "Annelchay"
},
"members": {
"title": "Embersmay"
},
"roles": {
"title": "Olesray"
},
"categories": {
"title": "Ategoriescay"
},
"management": {
"title": "Useryay Anagementmay"
},
"emojis": {
"upload": "Uploadway Emojiway",
"title": "Emojisway"
},
"customisation": {
"title": "Ustomisationcay"
}
}
},
"main": {
"groups": {
"owner": "Oupgray Ownerway",
"name": "Oupgray Amenay",
"create": "Eatecray ayay oupgray",
"description": "Roupgay Escriptionday"
},
"channel": {
"bot": "Otbay",
"edited": "edited)(ay",
"unknown_user": "Nknown<uay User>way",
"misc": {
"spoiler_attachment": "Oilerspay",
"jump_present": "Umpjay otay esentpray",
"viewing_old": "Iewingvay olderway essagesmay",
"failed_load": "Ouldn'tcay oadlay essagemay.",
"blocked_messages": "{{count}} lockedbay essagesmay",
"no_sending": "Ouyay on'tday avehay ermissionpay otay endsay essagesay niay histay hannelcay.",
"sent_file": "Entsay naay ttachmentaay",
"sent_multiple_files": "Entsay ultiplemay ttachmentsaay",
"blocked_user": "Lockedbay Seruay",
"jump_beginning": "Umpjay otay ethay eginningbay",
"new_messages": "Nwnay essagesmay incesay {{time_ago}}",
"load_file": "Oadlay ilefay",
"timed_out": "Ouyay areway imedtay outway orfay {{time}}.",
"not_loaded": "Essagemay otnay oadedlay, lickcay otay umpjay"
},
"voice": {
"unmute": "Unmuteway",
"mute": "Utemay",
"leave": "Eavelay",
"connected": "Oicevay onnectedcay"
},
"start": {
"group": "Isthay isway ethay artstay ofway yourway onversationcay.",
"saved": "Isthay isyay ethay artstay ofyay ouryay otesnay."
},
"system": {
"channel_renamed": "{{user}} enamedray ethay annelchay otay {{name}}",
"removed_by": "{{user}} asway emovedray byay {{other_user}}",
"added_by": "{{user}} addedway byay ybay {{other_user}}",
"user_left": "{{user}} eftlay",
"user_joined": "{{user}} oinedjay",
"channel_description_changed": "{{user}} angedchay ethay annelchay escriptionday",
"channel_icon_changed": "{{user}} angedchay ethay annelchay coniay",
"user_banned": "{{user}} asway annedbay",
"user_kicked": "{{user}} Asway ickeday",
"channel_ownership_changed": "{{from}} avegay {{to}} oupgray ownershipway",
"registered_at": "Egisteredray {{time}}"
},
"typing": {
"several": "Everalsay eoplepay areyay ingtypay…",
"multiple": "{{userlist}} andyay {{user}} areyay ingtypay…",
"single": "{{user}} isyay ingtypay…"
},
"attached_file": "Attachedyay {{filename}}",
"failed_upload": "Ailedfay otay uploadway!",
"uploading_file": "Uploadingway…",
"message_saved": "Avesay otay yourway otesnay",
"message_who": "{{person}}",
"message_where": "{{channel_name}}",
"notifications": {
"all": "Llaay Essagesmay",
"mention": "Entionsmay Nlyoay",
"muted": "Utedmay",
"default": "Seuay Efaultday",
"none": "Onenay"
},
"errors": {
"nochannels": "Histay erversay ashay onay hannelsay, roay ouyay on'tday avehay ccessaay otay nyaay.",
"nochannel": "Onay hannelay",
"title": "Opsoay, here'stay othingnay erehay!"
},
"nsfw": {
"channel": {
"confirm": "Ntereay Hannelcay",
"marked": "Histay hannelsay siay arkedsay saay SFWNay."
},
"confirm": "Iay onfirmcay hattay Iay maay taay eastlay 81ay earsyay ldoay."
},
"search": {
"sort": {
"latest": "Atestlay",
"oldest": "Ldestoay",
"relevance": "Elevanceray"
},
"title": "Earchsay"
},
"reply": {
"replying": "Eplyingray otay",
"toggle": "Oggletay authoryay ingpay"
},
"bridge": "idgebray",
"user_timed_out": "Useryay isway imedtay outway orfay {{time}}.",
"team": "Officialyay ommunicationcay",
"bridged": "Essagemay asway entsay onyay anotheryay latformpay",
"new_to_server": "Ewnay otay histay erversay",
"new_to_revolt": "Ewnay otay Evoltray",
"reactions": {
"others_reacted": "{{userlist}} ndaay {{count}} thersoay eactedaay",
"unknown_reacted": "{{count}} eoplepay eactedray",
"single_reacted": "1 ersonpay eactedpay",
"people_reacted": "{{people}} eactedpay"
}
},
"categories": {
"members": "Embersmay",
"channels": "Annelschay",
"participants": "Articipantspay",
"conversations": "Onversationscay"
},
"servers": {
"create": "Rreatecay aay erversay",
"description": "Erversay Escriptionday",
"channel_description": "Hannelcay Escriptionday",
"text_channel": "Exttay Hannelcay",
"voice_channel": "Oicevay Hannelcay",
"channel_type": "Hannelcay Ypetay",
"name": "Erversay Amenay",
"custom_banner": "Ustomcay Annerbay",
"owner": "Erversay Wneroay",
"channel_name": "Hannelcay Amenay",
"category_name": "Ategorycay amenay"
}
},
"navigation": {
"tabs": {
"saved": "Avedsay Otesnay",
"unreads": "Unreadsway",
"friends": "Iendsfray",
"dev": "Eveloperday",
"home": "Omehay"
}
},
"status": {
"offline": "Offlineway",
"invisible": "Invisibleway",
"busy": "Oday Otnay Isturbday",
"idle": "Idleway",
"online": "Onlineway",
"reconnect": "Econnectray",
"focus": "Ocusfay"
},
"permissions": {
"required": "Ermissionspay equiredray"
},
"home": {
"join-testers": "Oinjay ethay esterstay server",
"goto-testers": "Ogay otay ethay esterstay server",
"donate": "Onateday otay Revolt",
"feedback": "Ivegay eedbackfay onyay Evoltray",
"settings": "Openyay ettingssay",
"settings-tooltip": "Ouyay ancay alsoyay ight-clickray ethay useryay iconyay inyay ethay optay eftlay , oryay eftlay ickclay ityay ifyay ou'reyay alreadyyay omehay .",
"social": "Indfay erverssay & otsbay",
"directs": "Irectday Essagesmay",
"join-testers_desc": "Ouyay ancay eportray issuesyay andyay iscussday improvementsyay ithway usyay irectlyday erehay.",
"goto-testers_desc": "Ouyay ancay eportray issuesyay andyay iscussday improvementsyay ithway usyay irectlyday erehay.",
"donate_desc": "Upportsay ethay ojectpray ybay onatingday - ankthay ouyay!",
"feedback_desc": "Ltlay usyay owknay owhay eway ancay improveyay ouryay appyay ybay ivinggay usyay eedbackfay.",
"discover_desc": "Indfay ayay ommunitycay asedbay onyay ouryay obbieshay oryay interestsyay.",
"discover": "Iscoverday Evoltray",
"group": "Eatecray ayay oupgray",
"group_desc": "Inviteyay allyay ofyay ouryay iendsfray, omesay oolcay otsbay, andyay owthray ayay igbay artypay."
}
},
"login": {
"error": {
"resend": "Ailedfay otay esendray!",
"reset": "Ailedfay otay esetray!",
"login": "Ailedfay otay oginlay!",
"create": "Ailedfay otay egisterray!",
"verify": "Ailedfay otay erifyvay!"
},
"successful_registration": "Uccessfullysay egisteredray!",
"open_mail_provider": "{{provider}}",
"check_spam": "Easeplay eckchay amspay ifway youway an'tcay indfay itway",
"check_mail": "Eckchay yourway ailmay!",
"cancel": "Ancelcay equestray",
"resend": "Esendray erificationvay",
"missing_verification": "Idn'tday eceiveray anyay emailyay?",
"create": "Eatecray ayay ewnay accountyay",
"existing": "Alreadyway avehay anway accountway?",
"new": "Ewnay otay Evoltray?",
"remembered": "Ogay ackbay otay oginlay",
"set_password": "Etsay ewnay asswordpay",
"reset": "Esetray asswordpay",
"forgot": "Orgotfay yourway asswordpay?",
"enter": {
"current_password": "Enterway yourway urrentcay asswordpay.",
"invite": "Enterway yourway inviteway odecay.",
"password": "Enterway yourway asswordpay.",
"email": "Leasepay enteryay ouryay emailyay .",
"username": "Enteryay ouryay usernameyay.",
"new_password": "Enteryay ayay ewnay asswordpay."
},
"current_password": "Urrentcay Asswordpay",
"invite": "Inviteway Odecay",
"password": "Asswordpay",
"email": "Emailway",
"username": "Usernameway",
"register": "Egisterray",
"title": "Oginlay",
"email_delay": "Lease allow up to 10 minutes for it to arrivepay.",
"subtitle": "Ignsay intoyay evoltray",
"welcome": "Elcomeway!",
"welcome2": "Ellohay!",
"subtitle2": "Eatecray anyay accountyay",
"unofficial_instance": "Irdway-artypay instanceway.",
"recovery": "Ecoveryway Odecay",
"totp": "Authenticatorway Appway",
"new_password": "Ewnay Asswordpay",
"log_out_other": "oglay outyay foay allyay otheryay essionssay",
"verified_account": "Ouryay accountyay ashay eenbyay eriviedvay!",
"verifying_account": "Erifyingvay ouryay accountyay…",
"verified_continue": "Ontinuecay otay oginlay"
},
"general": {
"loading": "Oadinglay…",
"image_by": "Imageyay ybay",
"privacy": "Rivacypay Olicypay",
"tos": "Ermstay ofway Ervicesay",
"about": "Aboutyay",
"on": "Onyay",
"off": "Offyay",
"disabled": "Isabledday",
"unavailable": "Otnay availableyay",
"learn_more": "earnlay oremay"
},
"permissions": {
"BanMembers": {
"t": "Anbay Embersmay",
"d": "Allowsyay embersmay otay ermanentlypay emoveray embersmay omfray isthay erversay."
},
"KickMembers": {
"t": "Ickkay Embersmay",
"d": "Allowsyay embersmay otay emoveray embersmay omfray isthay erversay. ickedkay embersmay aymay ejoinray ithway anyay inviteyay."
},
"ChangeNickname": {
"d": "Allowsyay embersmay otay angechay eirthay icknamenay onyay isthay erversay.",
"t": "Angechay Icknamenay"
},
"ChangeAvatar": {
"d": "Allowsyay embersmay otay angechay eirthay erversay avataryay onyay isthay erversay.",
"t": "Angechay Avataryay"
},
"ManageChannels": {
"t": "Anagemay Annelschay",
"d": "Allowsyay embersmay otay eatecray, edityay andyay eleteday annelschay."
},
"ManageNicknames": {
"t": "Anagemay Icknamesnay",
"d": "Allowsyay embersmay otay angechay ethay icknamesnay ofyay otheryay embersmay."
},
"RemoveAvatars": {
"t": "Emoveray Avatarsyay",
"d": "Allowsyay embersmay otay emoveray ethay erversay avatarsyay ofyay otheryay embersmay onyay isthay erversay."
},
"ManageServer": {
"t": "Anagemay Erversay",
"d": "Allowsyay embersmay otay angechay isthay erver'ssay amenay, escriptionday, iconyay andyay otheryay elatedray informationyay."
},
"InviteOthers": {
"t": "Inviteyay Othersyay",
"d": "Allowsyay embersmay otay inviteyay otheryay usersyay otay ayay annelchay."
},
"SendMessage": {
"t": "Endsay Essagesmay",
"d": "Allowsyay embersmay otay endsay essagesmay inyay exttay annelschay."
},
"VoiceCall": {
"t": "Oicevay Allcay",
"d": "Allowsyay embersmay otay oinjay oicevay annelschay."
},
"ManageMessages": {
"t": "Anagemay Essagesmay",
"d": "Allowsyay embersmay otay eleteday essagesmay entsay ybay otheryay embersmay."
},
"ManageChannel": {
"t": "Anagemay Annelschay",
"d": "Allowsyay embersmay otay edityay oryay eleteday ayay annelchay."
},
"EmbedLinks": {
"d": "Allowsyay embersmay otay owshay embeddedyay ontentcay onyay inkslay eythay ostpay inyay exttay annelschay.",
"t": "Embedyay Inkslay"
},
"UploadFiles": {
"t": "Uploadyay Ilesfay",
"d": "Allowsyay embersmay otay uploadyay ilesfay inyay exttay annelschay."
},
"Masquerade": {
"t": "Asquerademay",
"d": "Allowsyay embersmay otay angechay eirthay amenay andyay avataryay er-messagepay."
},
"ManageRole": {
"t": "Anagemay Olesray",
"d": "Allowsyay embersmay otay eatecray, edityay andyay eleteday olesray ithway ayay owerlay ankray anthay eirsthay. alsoyay allowsyay emthay otay odifymay oleray ermissionspay onyay annelschay."
},
"ViewChannel": {
"d": "Allowsyay embersmay otay iewvay anyyay annelschay eythay avehay isthay ermissionpay onyay.",
"t": "Iewvay Annelchay"
},
"Speak": {
"t": "Eakspay",
"d": "Allowsway embersmay otay eakspay inway away oicevay annelchay."
},
"ManageWebhooks": {
"d": "Allowsway embersmay otay ontrolcay ebhooksway inway away annelchay.",
"t": "Anagemay Ebhooksway"
},
"MuteMembers": {
"t": "Utemay Embersmay",
"d": "Allowsway embersmay otay utemay othersway inway away oicevay annelchay."
},
"ManagePermissions": {
"t": "Anagemay Ermissionspay",
"d": "Allowsway embersmay otay angechay ermissionspay orfay annelschay andway olesray ithway away owerlay ankingray."
},
"ManageCustomisation": {
"d": "Allowsway embersmay otay eatecray, editway andway eleteday emojisway.",
"t": "Anagemay Ustomisationcay"
},
"TimeoutMembers": {
"t": "Imeouttay Embersmay",
"d": "Allowsway embersmay otay emporarilytay eventpray usersyay omfray interactingway ithway ethay erversay."
},
"ReadMessageHistory": {
"t": "Eadray Essagemay Istoryhay",
"d": "Allowsway embersmay otay eadray ethay essagemay istoryhay ofway isthay annelchay."
},
"SendEmbeds": {
"t": "Endsay Embedsway",
"d": "Allowsway embersmay otay endsay embeddedway ontentcay, etherwhay omfray inkslay orway ustomcay exttay embedsway."
},
"Connect": {
"d": "Allowsway embersmay otay onnectcay otay away oicevay annelchay.",
"t": "Onnectcay"
},
"Video": {
"t": "Ideovay",
"d": "Allowsway embersmay otay eamstray ideovay inway away oicevay annelchay."
},
"React": {
"t": "Useyay Eactionsray",
"d": "Allowsway embersmay otay eactray otay essagesmay."
},
"DeafenMembers": {
"t": "Eafenday Embersmay",
"d": "Allowsway embersmay otay eafenday othersway inway away oicevay annelchay."
},
"MoveMembers": {
"t": "Ovemay Embersmay",
"d": "Allowsway embersmay otay ovemay othersway etweenbay oicevay annelschay."
},
"AssignRoles": {
"t": "Assignway Olesray",
"d": "Allowsway embersmay otay assignway olesray elowbay eirthay ownway ankray otay otherway embersmay."
}
},
"shortcuts": {
"ctrlc": "Lctray + C"
},
"actions": {
"submit": "ubmitsay"
}
}