-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathen_US.json
1041 lines (1041 loc) · 44.9 KB
/
en_US.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
994
995
996
997
998
999
1000
{
"general": {
"about": "About",
"tos": "Terms of Service",
"privacy": "Privacy Policy",
"image_by": "Image by",
"loading": "Loading…",
"on": "On",
"off": "Off",
"disabled": "Disabled",
"unavailable": "Unavailable",
"learn_more": "Learn more"
},
"login": {
"title": "Login",
"register": "Register",
"username": "Username",
"email": "Email",
"password": "Password",
"invite": "Invite Code",
"current_password": "Current Password",
"enter": {
"username": "Enter your preferred username.",
"email": "Please enter your email.",
"password": "Enter your password.",
"invite": "Enter your invite code.",
"current_password": "Enter your current password.",
"new_password": "Enter a new password."
},
"forgot": "Forgot your password?",
"reset": "Reset password",
"set_password": "Set new password",
"remembered": "Go back to login",
"new": "New to Revolt?",
"existing": "Already have an account?",
"create": "Create a new account",
"missing_verification": "Didn't receive an email?",
"resend": "Resend verification",
"cancel": "Cancel request",
"check_mail": "Check your mail!",
"email_delay": "Please allow up to 10 minutes for it to arrive.",
"check_spam": "Please check your spam folder if you don't see it",
"open_mail_provider": "Open {{provider}}",
"successful_registration": "Successfully registered!",
"error": {
"create": "Failed to register!",
"login": "Failed to login!",
"reset": "Failed to reset!",
"resend": "Failed to resend!",
"verify": "Failed to verify!"
},
"welcome2": "Hello!",
"subtitle2": "Create an account",
"welcome": "Welcome!",
"subtitle": "Sign into Revolt",
"unofficial_instance": "Third-party instance.",
"totp": "Authenticator App",
"recovery": "Recovery Code",
"verifying_account": "Verifying your account…",
"verified_account": "Your account has been verified!",
"verified_continue": "Continue to login",
"new_password": "New Password",
"log_out_other": "Log out of all other sessions"
},
"app": {
"status": {
"online": "Online",
"idle": "Idle",
"busy": "Do Not Disturb",
"invisible": "Invisible",
"offline": "Offline",
"reconnect": "Reconnect",
"focus": "Focus"
},
"navigation": {
"tabs": {
"home": "Home",
"dev": "Developer",
"friends": "Friends",
"unreads": "Unreads",
"saved": "Saved Notes"
}
},
"main": {
"categories": {
"conversations": "Conversations",
"participants": "Participants",
"channels": "Channels",
"members": "Members"
},
"channel": {
"message_where": "Message {{channel_name}}",
"message_who": "Message @{{person}}",
"message_saved": "Save to your notes",
"uploading_file": "Uploading…",
"failed_upload": "Failed to upload!",
"attached_file": "Attached {{filename}}",
"typing": {
"single": "{{user}} is typing…",
"multiple": "{{userlist}} and {{user}} are typing…",
"several": "Several people are typing…"
},
"system": {
"user_joined": "{{user}} joined",
"user_left": "{{user}} left",
"user_kicked": "{{user}} was kicked",
"user_banned": "{{user}} was banned",
"added_by": "{{user}} was added by {{other_user}}",
"removed_by": "{{user}} was removed by {{other_user}}",
"channel_renamed": "{{user}} renamed the channel to {{name}}",
"channel_description_changed": "{{user}} changed the channel description",
"channel_icon_changed": "{{user}} changed the channel icon",
"channel_ownership_changed": "{{from}} gave {{to}} group ownership",
"registered_at": "Registered {{time}}"
},
"start": {
"group": "This is the start of your conversation.",
"saved": "This is where your notes start."
},
"voice": {
"connected": "Voice connected",
"leave": "Leave",
"mute": "Mute",
"unmute": "Unmute"
},
"misc": {
"viewing_old": "Viewing older messages",
"jump_present": "Jump to present",
"jump_beginning": "Jump to the beginning",
"spoiler_attachment": "Spoiler",
"failed_load": "Couldn't load message.",
"no_sending": "You don't have permission to send messages in this channel.",
"blocked_messages": "{{count}} blocked messages",
"blocked_user": "Blocked User",
"sent_file": "Sent an attachment",
"sent_multiple_files": "Sent multiple attachments",
"new_messages": "New messages since {{time_ago}}",
"load_file": "Load file",
"timed_out": "You are timed out for {{time}}.",
"not_loaded": "Message not loaded, click to jump"
},
"nsfw": {
"channel": {
"marked": "This channel is marked as NSFW.",
"confirm": "Enter Channel"
},
"confirm": "I confirm that I am at least 18 years old."
},
"unknown_user": "<Unknown User>",
"edited": "(edited)",
"bot": "Bot",
"notifications": {
"default": "Use Default",
"all": "All Messages",
"mention": "Mentions Only",
"none": "None",
"muted": "Muted"
},
"search": {
"title": "Search",
"sort": {
"relevance": "Relevance",
"latest": "Latest",
"oldest": "Oldest"
}
},
"errors": {
"title": "Oops, there's nothing here!",
"nochannels": "This server has no channels, or you don't have access to any.",
"nochannel": "No channel"
},
"reply": {
"replying": "Replying to",
"toggle": "Toggle author ping"
},
"bridge": "bridge",
"user_timed_out": "User is timed out for {{time}}.",
"bridged": "Message was sent on another platform",
"team": "Official Communication",
"new_to_revolt": "New to Revolt",
"new_to_server": "New to this server",
"reactions": {
"others_reacted": "{{userlist}} and {{count}} others reacted",
"unknown_reacted": "{{count}} people reacted",
"single_reacted": "1 person reacted",
"people_reacted": "{{people}} reacted"
}
},
"groups": {
"create": "Create a group",
"name": "Group Name",
"description": "Group Description",
"owner": "Group Owner"
},
"servers": {
"create": "Create a server",
"name": "Server Name",
"description": "Server Description",
"channel_name": "Channel Name",
"channel_type": "Channel Type",
"channel_description": "Channel Description",
"custom_banner": "Custom Banner",
"owner": "Server Owner",
"text_channel": "Text Channel",
"voice_channel": "Voice Channel",
"category_name": "Category Name"
}
},
"settings": {
"title": "Settings",
"categories": {
"user_settings": "User Settings",
"client_settings": "Client Settings",
"danger_zone": "Danger Zone"
},
"actions": {
"remove": "Remove",
"upload": "Upload",
"max_filesize": "(max {{filesize}})",
"edit": "Edit {{name}}"
},
"pages": {
"account": {
"title": "My Account",
"change_field": "Change",
"unique_id": "This is a unique user identifier for your account.",
"2fa": {
"title": "Two-factor Authentication",
"description": "Add an extra layer of security by enabling 2FA on your account.",
"add_auth": "Add Authenticator",
"remove_auth": "Remove Authenticator",
"two_factor_off": "You haven't enabled two-factor authentication!",
"view_recovery": "View Recovery Codes",
"view_recovery_long": "View and download your 2FA recovery codes.",
"generate_recovery": "Generate Backup Codes",
"generate_recovery_long": "Get ready to use 2FA by setting up a backup method.",
"two_factor_on": "Two-factor authentication is currently on."
},
"manage": {
"title": "Account Management",
"description": "Disable or delete your account at any time. This will log you out and fully delete your account, including your chat history and friends.",
"disable": "Disable Account",
"delete": "Delete Account",
"disable_description": "You won't be able to access your account unless you contact support - however, your data will not be deleted.",
"delete_description": "Your account and all of your data (including your messages and friends list) will be queued for deletion. A confirmation email will be sent - you can cancel this within 7 days by contacting support."
}
},
"profile": {
"title": "Profile",
"info": "Information",
"fetching": "Fetching your profile…",
"placeholder": "Write something about yourself…",
"profile_picture": "Profile Picture",
"custom_background": "Custom Background",
"edit_background": "Edit Background",
"edit_profile": "Edit Profile"
},
"sessions": {
"title": "Sessions",
"active_sessions": "Active Sessions",
"this_device": "This Device",
"created": "Created {{time_ago}}",
"logout": "Log out of all other sessions"
},
"audio": {
"title": "Voice Settings",
"input_device": "Microphone",
"output_device": "Speaker / Headphones",
"tip_retry": "You didn't give Revolt permission to access your microphone. Please {{retryBtn}}.",
"device_label_NA": "N/A",
"button_retry": "Retry",
"tip_grant_permission": "You need to grant permission to access audio settings.",
"button_grant": "Grant permission"
},
"appearance": {
"title": "Appearance",
"theme": "Theme",
"display": {
"default": "Default",
"compact": "Compact",
"default_description": "Beautiful, sleek and modern.",
"compact_description": "Good old IRC."
},
"color": {
"light": "light",
"dark": "dark"
},
"accent_selector": "Accent Color",
"emoji_pack": "Emoji Pack",
"message_display": "Message Display",
"advanced": "Advanced Options",
"overrides": "Theme Overrides",
"reset_overrides": "Reset overrides",
"import": "Import a theme",
"import_theme": "Import theme from string",
"theme_data": "Theme Data",
"custom_css": "Custom CSS",
"sync": "Sync Options",
"font": "Font",
"mono_font": "Monospace Font Selector",
"ligatures": "Font Ligatures",
"ligatures_desc": "For supported fonts, ligatures combine characters together - for example, turning -> into an arrow.",
"theme_options": {
"title": "Theme Options",
"follow_desc": "if this is enabled, you won’t be able to change your theme or use a custom one.",
"seasonal": "Seasonal Theme",
"follow": "Follow system theme",
"transparency": "Transparency Effects",
"transparency_desc": "Enables transparency effects (like frosted glass) throughout the app.",
"seasonal_desc": "Displays effects in the home tab during holiday seasons."
},
"discover": {
"title": "Discover Themes",
"description": "Browse themes made by the community"
},
"appearance_options": {
"title": "Appearance Options",
"show_send": "Always show Send Message button",
"show_send_desc": "If disabled, the Send Message button will only appear on mobile.",
"show_account_age": "Always show account age next to join messages",
"show_account_age_desc": "If disabled, the account age will only be shown for new users."
},
"colours": {
"title": "Colors"
},
"emoji": {
"title": "Emoji"
},
"fonts": {
"title": "Fonts"
},
"advanced_options": {
"title": "Advanced options"
}
},
"notifications": {
"title": "Notifications",
"push_notifications": "Push Notifications",
"enable_desktop": "Enable Desktop Notifications",
"enable_push": "Enable Push Notifications",
"sounds": "Sounds",
"descriptions": {
"enable_desktop": "This will give you notifications while your app is open.",
"enable_push": "Enable to receive notifications when you're offline."
},
"sound": {
"message": "Message Received",
"outbound": "Message Sent",
"call_join": "User Joined Call",
"call_leave": "User Left Call"
}
},
"language": {
"title": "Language",
"select": "Select your language",
"const": "Constructed languages",
"other": "Other language options"
},
"sync": {
"title": "Sync",
"categories": "Sync Categories",
"descriptions": {
"appearance": "This will sync options such as emoji packs and message density.",
"theme": "This will sync your chosen theme, colors and any custom CSS.",
"locale": "This will sync your currently chosen language."
},
"options": "Sync Options"
},
"native": {
"title": "Desktop Settings"
},
"experiments": {
"title": "Experiments",
"features": "Available Features",
"not_available": "No experiments are available at this time."
},
"donate": {
"title": "Donate"
},
"source_code": "Source Code",
"bots": {
"title": "My Bots",
"create_bot": "Create a Bot",
"copy_invite": "Copy Invite Link",
"add": "Add Bot",
"token": "Token",
"public_bot_tip": "Bot is public. Anyone can invite it.",
"private_bot_tip": "Bot is private. Only you can invite it.",
"public_bot": "Public Bot",
"public_bot_desc": "Whether to allow other users to invite this bot.",
"interactions_url": "Interactions URL",
"reserved": "Note: This field is reserved for the future.",
"unique_id": "This is a unique identifier for your bot. This is not the bot's token.",
"profile": "Bot Profile"
},
"feedback": {
"title": "Feedback",
"suggest": "Submit feature suggestion",
"suggest_desc": "Suggest new Revolt features on GitHub discussions.",
"issue": "Create a new issue",
"issue_desc": "To help us more easily find and assess issues, you can create an issue on GitHub.",
"bug": "Bug Tracker",
"bug_desc": "View currently active bug reports here.",
"description": "Submit feedback"
},
"logOut": "Log Out",
"theme_shop": {
"title": "Theme Shop",
"category": {
"highest": "Highest rated",
"viewall": "View all",
"manage": "Manage saved",
"new": "New this week",
"default": "Default themes",
"saved": "Saved"
},
"active": "Currently active",
"description": "Browse hundreds of themes, created and curated by the community.",
"search": "Search themes…",
"use": "Use theme",
"by": "by"
},
"plugins": {
"title": "Plugins",
"delete_plugin": "Delete",
"wip": "Warning: This feature is still in development.",
"no_plugins": "No plugins are currently installed."
},
"accessibility": {
"title": "Accessibility",
"reduced_motion": "Reduced Motion",
"descriptions": {
"reduced_motion": "If this is enabled, animations and motion effects won't play or will be less intense."
}
}
},
"channel_pages": {
"overview": {
"title": "Overview",
"name": "Channel Name",
"description": "Channel Description"
},
"permissions": {
"title": "Permissions"
},
"webhooks": {
"title": "Webhooks"
}
},
"server_pages": {
"overview": {
"title": "Overview",
"name": "Server Name",
"description": "Channel Description",
"system_messages": "System Message Channels"
},
"members": {
"title": "Members"
},
"invites": {
"title": "Invites",
"code": "Invite Code",
"invitor": "Inviter",
"channel": "Channel",
"revoke": "Revoke"
},
"bans": {
"title": "Bans",
"user": "User",
"reason": "Ban Reason",
"revoke": "Revoke",
"no_reason": "No ban reason."
},
"roles": {
"title": "Roles"
},
"categories": {
"title": "Categories"
},
"management": {
"title": "User Management"
},
"customisation": {
"title": "Customization"
},
"emojis": {
"title": "Emojis",
"upload": "Upload Emoji"
}
},
"tips": {
"account": {
"a": "Looking to customize your public profile?",
"b": "Head over to your profile settings."
},
"languages": {
"a": "Missing a language you want?",
"b": "Help contribute more translations."
},
"sessions": {
"a": "If you see an unknown session on the list,",
"b": "secure your account by changing your password and using 2FA."
}
},
"permissions": {
"default_role": "Default",
"server": "Server Permissions",
"channel": "Channel Permissions",
"create_role": "Create a new role",
"role_name": "Role Name",
"delete_role": "Delete Role",
"hoist_role": "Hoist Role",
"hoist_desc": "Display this role above others.",
"title": "Permissions for {{role}}",
"edit_title": "Edit Permissions",
"role_colour": "Role Color",
"role_options": "Role Options",
"role_ranking": "Role Ranking"
}
},
"special": {
"copy_username": "Click to copy username",
"copy": "Click to copy",
"friends": {
"pending": "Pending requests",
"sent": "Outgoing",
"blocked": "Blocked",
"incoming": "Incoming friend request.",
"outgoing": "Outgoing friend request.",
"nobody": "Nobody here yet!",
"from": {
"single": "From {{user}}",
"multiple": "From {{userlist}} and {{user}}",
"several": "From {{userlist}} and {{count}} more…"
}
},
"status": {
"offline": "Offline.",
"disconnected": "Disconnected.",
"connecting": "Connecting…",
"reconnecting": "Reconnecting…"
},
"modals": {
"error": "An error occurred!",
"clipboard": {
"unavailable": "Clipboard is unavailable!",
"https": "You are currently not in a HTTPS context.",
"copy": "Manual Copy:"
},
"signed_out": "You were signed out!",
"token_reveal": "{{name}}'s Token",
"onboarding": {
"welcome": "Welcome to",
"pick": "Pick a username that you want people to be able to find you by, this can be changed later in settings."
},
"prompt": {
"confirm_leave": "Leave {{name}}?",
"confirm_leave_long": "You won't be able to rejoin unless you are re-invited.",
"confirm_close_dm": "Close conversation with {{name}}?",
"confirm_close_dm_long": "You can re-open it later but it will disappear on both sides.",
"confirm_delete": "Delete {{name}}?",
"confirm_delete_long": "Once it's deleted, there's no going back.",
"confirm_delete_message_long": "Are you sure you want to delete this?",
"create_invite_generate": "Generating invite…",
"create_invite_created": "Here is your new invite code:",
"confirm_kick": "Are you sure you want to kick {{name}}?",
"confirm_ban": "You are about to ban {{name}}",
"confirm_ban_reason": "Ban Reason",
"unfriend_user": "Unfriend {{name}}?",
"unfriend_user_long": "You may not be able to talk to them again until you add them back.",
"block_user": "Block {{name}}?",
"block_user_long": "Are you sure you want to block {{name}}? They will also be removed from your friends list.",
"silent_leave": "Silently Leave",
"members_not_notified": "Other members will not be notified"
},
"account": {
"change": {
"username": "Change your username",
"email": "Change your email",
"password": "Change your password"
},
"failed": "Failed to change!"
},
"external_links": {
"title": "External links can be dangerous!",
"short": "Are you sure you want to go to:",
"trust_domain": "Trust this domain"
},
"actions": {
"ok": "Ok",
"ban": "Ban",
"kick": "Kick",
"save": "Save",
"hide": "Hide",
"edit": "Edit",
"block": "Block",
"close": "Close",
"leave": "Leave",
"back": "Go back",
"remove": "Remove",
"delete": "Delete",
"create": "Create",
"reveal": "Reveal",
"update": "Update",
"cancel": "Cancel",
"preview": "Preview",
"reload": "Reload App",
"continue": "Continue",
"send_email": "Send Email",
"confirm": "Confirm",
"done": "Done",
"reset": "Reset",
"report": "Report",
"dont_block": "Don't block"
},
"sessions": {
"short": "You cannot undo this action.",
"accept": "Remove all sessions",
"title": "Are you sure you want to clear your sessions?"
},
"changelogs": {
"description": "Read about updates of Revolt.",
"older": "View older updates",
"title": "Changelogs"
},
"confirm": "Confirm action",
"mfa": {
"recovery_codes": "Your recovery codes",
"save_codes": "Please save these to a safe location.",
"confirm": "Please confirm using a selected method.",
"select_method": "Please select a method to authenticate your request.",
"enable_totp": "Enable authenticator app",
"prompt_totp": "Please scan or use the token below in your authentication app.",
"enter_code": "Enter Code"
},
"out_of_date": {
"title": "Your client is out of date!",
"description": "It must be updated in order to work with recent changes.",
"version": "Your client is at {{client}}, whereas the server requires the server {{server}}.",
"ignore": "Ignore updated",
"attempting": "Trying to update…"
},
"report": {
"no_reason": "No reason specified / other reason",
"message": "Report Message",
"by_name": "Report {{name}}",
"reason": "Reason",
"additional_context": "Additional Information",
"content_reason": {
"Illegal": "Content breaks one or more laws",
"SpamAbuse": "This is spam or platform abuse",
"PromotesHarm": "Content promotes harm to others or self",
"Malware": "This is malware",
"Harassment": "This is harassment or abuse targeted at another user"
},
"user_reason": {
"SpamAbuse": "User is sending spam or otherwise abusing the platform",
"InappropriateProfile": "User's profile is inappropriate for a general audience",
"Impersonation": "This user is impersonating someone else",
"BanEvasion": "This user is evading a ban",
"Underage": "This user is not old enough to have an account"
},
"reported": "Reported",
"thank_you": "Thank you for helping to keep Revolt safe. We will review your report as soon as possible.",
"block_user": "Would you like to block this user?"
}
},
"popovers": {
"user_profile": {
"profile": "Profile",
"mutual_friends": "Mutual Friends",
"mutual_groups": "Mutual Groups",
"mutual_servers": "Mutual Servers",
"empty": "It's a bit empty in here…",
"no_users": "No mutual friends",
"no_groups": "No mutual groups",
"no_servers": "No mutual servers",
"sub": {
"badges": "Badges",
"information": "Information",
"connections": "Connections"
},
"badges": {
"translator": "Translator",
"supporter": "Supporter",
"responsible_disclosure": "Responsibly Disclosed Security Issue(s)",
"early_adopter": "Early Adopter",
"moderation": "Platform Moderation",
"founder": "Founder"
}
},
"user_picker": {
"select": "Select friends to add."
},
"create_bot": {
"title": "Create a new bot",
"failed": "Failed to create a bot!"
},
"server_identity": {
"nickname": "Nickname",
"title": "Change identity on {{server}}",
"avatar": "User photo"
}
},
"requires_online": "You need to be online to view this.",
"invite": {
"invited_by": "Invited by {{user}}",
"login": "Login to Revolt",
"accept": "Accept Invite",
"user_count": "{{member_count}} users",
"invalid": "Invalid invite!",
"invalid_desc": "The invite may not exist or you don't have permission to join."
},
"server-badges": {
"official": "Official Server",
"verified": "Verified Server"
}
},
"context_menu": {
"copy_id": "Copy ID",
"copy_selection": "Copy selection",
"copy_text": "Copy text",
"copy_uid": "Copy user ID",
"copy_sid": "Copy server ID",
"copy_cid": "Copy channel ID",
"copy_mid": "Copy message ID",
"copy_message_link": "Copy message link",
"mention": "Mention",
"message_user": "Message",
"view_profile": "View profile",
"mark_as_read": "Mark as read",
"retry_message": "Retry send",
"cancel_message": "Cancel send",
"reply_message": "Reply",
"quote_message": "Quote message",
"edit_message": "Edit message",
"delete_message": "Delete message",
"remove_member": "Remove from group",
"kick_member": "Kick member",
"ban_member": "Ban member",
"open_file": "Open file",
"save_file": "Save file",
"open_image": "Open image",
"save_image": "Save image",
"open_video": "Open video",
"save_video": "Save video",
"copy_link": "Copy link",
"open_link": "Open link",
"block_user": "Block user",
"unblock_user": "Unblock user",
"add_friend": "Add friend",
"remove_friend": "Remove friend",
"cancel_friend": "Cancel request",
"custom_status": "Custom status",
"clear_status": "Clear status",
"set_custom_status": "Set a custom status",
"leave_group": "Leave group",
"leave_server": "Leave server",
"close_dm": "Close DM",
"delete_server": "Delete server",
"edit_identity": "Edit identity",
"delete_channel": "Delete channel",
"create_channel": "Create channel",
"create_category": "Create category",
"create_invite": "Create invite",
"open_notification_options": "Notification options",
"open_channel_settings": "Channel settings",
"open_server_settings": "Server settings",
"open_group_settings": "Group settings",
"mark_unread": "Mark as unread",
"make_owner": "Transfer Group Ownership",
"report_message": "Report message",
"report_user": "Report user",
"report_server": "Report server"
},
"permissions": {
"required": "Permissions required"
},
"home": {
"join-testers": "Join the testers server",
"goto-testers": "Go to the testers server",
"donate": "Donate to Revolt",
"feedback": "Give feedback on Revolt",
"settings": "Open settings",
"settings-tooltip": "You can also right-click the user icon in the top left, or left click it if you're already home.",
"social": "Find servers & bots",
"directs": "Direct Messages",
"join-testers_desc": "You can report issues and discuss improvements with us directly here.",
"goto-testers_desc": "You can report issues and discuss improvements with us directly here.",
"donate_desc": "Support the project by donating - thank you!",
"feedback_desc": "Let us know how we can improve our app by giving us feedback.",
"discover": "Discover Revolt",
"discover_desc": "Find a community based on your hobbies or interests.",
"group": "Create a group",
"group_desc": "Invite all of your friends, some cool bots, and throw a big party."
}
},
"quantities": {
"members": {
"one": "1 Member",
"many": "{{count}} Members"
},
"dropFiles": {
"many": "Drop {{count}} files",
"one": "Drop a file"
}
},
"dayjs": {
"lastDay": "[Yesterday at] {{time}}",
"sameDay": "[Today at] {{time}}",
"nextDay": "[Tomorrow at] {{time}}",
"lastWeek": "[Last] dddd [at] {{time}}",
"nextWeek": "dddd [at] {{time}}",
"defaults": {
"date_separator": "/",
"date_format": "simplified",
"twelvehour": "yes"
}
},
"notifications": {
"sent_request": "@{{person}} sent you a friend request.",
"now_friends": "You are now friends with @{{person}}!"
},
"error": {
"NetworkError": "Network error.",
"Unauthorized": "Unauthorized.",
"Unlabelled": "Something happened.",
"FailedValidation": "Failed to validate fields.",
"DatabaseError": "Database error.",
"InternalError": "Internal error.",
"MissingPermission": "Missing permission.",
"UnknownError": "See console.",
"OperationFailed": "Operation failed.",
"RenderFail": "Template rendering failed.",
"MissingHeaders": "Missing headers.",
"InvalidSession": "Invalid session.",
"UnverifiedAccount": "Unverified account.",
"UnknownUser": "Unknown user.",
"EmailInUse": "Email in use.",
"EmailFailed": "Email failed to send.",
"InvalidCredentials": "Email or password is wrong.",
"InvalidToken": "Invalid token",
"MissingInvite": "Missing invite code in request.",
"InvalidInvite": "Invalid code",
"AlreadyOnboarded": "Already finished onboarding.",
"UsernameTaken": "That username is taken.",
"AlreadyFriends": "Already friends with this user.",
"AlreadySentRequest": "Already sent a request to this user.",
"Blocked": "You have blocked this user.",
"BlockedOther": "This user has blocked you.",
"NoEffect": "This request had no effect.",
"RequiredField": "Required",
"TooShort": "Too short",
"TooLong": "Too long",
"InvalidEmail": "Invalid email address",
"Unavailable": "Unavailable.",
"FileTooLarge": "File is too large.",
"FailedToReceive": "Server failed to receive your file.",
"MissingData": "Request is missing data.",
"ProbeError": "Failed to get file metadata.",
"IoError": "Server encountered an I/O error.",
"UnsupportedBrowser": "Browser is missing support for this feature.",
"DeniedNotification": "You denied notification access, check page settings.",
"CompromisedPassword": "This password is compromised.",
"ReachedMaximumBots": "You've reached the maximum amount of bots.",
"AudioPermissionBlock": "No access to your microphone, please check your browser's configuration.",
"DiscriminatorChangeRatelimited": "Too many tag changes."
},
"shortcuts": {
"ctrlc": "Ctrl + C"
},
"permissions": {
"ManageChannels": {
"t": "Manage Channels",
"d": "Allows members to create, edit and delete channels."
},
"ManageServer": {
"t": "Manage Server",
"d": "Allows members to change this server's name, description, icon and other related information."
},
"KickMembers": {
"t": "Kick Members",
"d": "Allows members to remove members from this server. Kicked members may rejoin with an invite."
},
"BanMembers": {
"t": "Ban Members",
"d": "Allows members to permanently remove members from this server."
},
"ChangeNickname": {
"t": "Change Nickname",
"d": "Allows members to change their nickname on this server."
},
"ManageNicknames": {
"t": "Manage Nicknames",
"d": "Allows members to change the nicknames of other members."
},
"ChangeAvatar": {
"t": "Change Avatar",
"d": "Allows members to change their server avatar on this server."
},
"RemoveAvatars": {
"t": "Remove Avatars",
"d": "Allows members to remove the server avatars of other members on this server."
},
"SendMessage": {
"t": "Send Messages",
"d": "Allows members to send messages in text channels."
},
"ManageMessages": {
"t": "Manage Messages",
"d": "Allows members to delete messages sent by other members."
},
"ManageChannel": {
"t": "Manage Channels",
"d": "Allows members to edit or delete a channel."
},
"VoiceCall": {
"t": "Voice Call",
"d": "Allows members to join voice channels."
},
"InviteOthers": {
"t": "Invite Others",
"d": "Allows members to invite other users to a channel."
},
"EmbedLinks": {
"t": "Embed Links",
"d": "Allows members to show embedded content on links they post in text channels."
},
"UploadFiles": {
"t": "Upload Files",
"d": "Allows members to upload files in text channels."
},
"Masquerade": {
"t": "Masquerade",
"d": "Allows members to change their name and avatar per-message."
},
"ManageRole": {
"t": "Manage Roles",
"d": "Allows members to create, edit and delete roles with a lower rank than theirs. Also allows them to modify role permissions on channels."
},
"ViewChannel": {
"t": "View Channel",
"d": "Allows members to view any channels they have this permission on."
},
"ManagePermissions": {
"t": "Manage Permissions",
"d": "Allows members to change permissions for channels and roles with a lower ranking."
},
"ReadMessageHistory": {
"t": "Read Message History",
"d": "Allows members to read the message history of this channel."
},
"Connect": {
"t": "Connect",
"d": "Allows members to connect to a voice channel."
},
"ManageWebhooks": {
"t": "Manage Webhooks",
"d": "Allows members to control webhooks in a channel."
},
"SendEmbeds": {
"t": "Send Embeds",
"d": "Allows members to send embedded content, whether from links or custom text embeds."
},
"DeafenMembers": {
"d": "Allows members to deafen others in a voice channel.",
"t": "Deafen Members"
},
"MoveMembers": {
"t": "Move Members",
"d": "Allows members to move others between voice channels."
},
"Video": {
"d": "Allows members to stream video in a voice channel.",
"t": "Video"
},
"MuteMembers": {
"t": "Mute Members",
"d": "Allows members to mute others in a voice channel."
},
"TimeoutMembers": {
"t": "Timeout Members",
"d": "Allows members to temporarily prevent users from interacting with the server."
},
"AssignRoles": {
"t": "Assign Roles",
"d": "Allows members to assign roles below their own rank to other members."
},
"Speak": {
"t": "Speak",
"d": "Allows members to speak in a voice channel."
},
"ManageCustomisation": {
"t": "Manage Customization",
"d": "Allows members to create, edit and delete emojis."
},
"React": {
"t": "Use Reactions",
"d": "Allows members to react to messages."
}