-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Expand file tree
/
Copy pathen.i18n.json
More file actions
6919 lines (6919 loc) · 471 KB
/
en.i18n.json
File metadata and controls
6919 lines (6919 loc) · 471 KB
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
{
"500": "Internal Server Error",
"private": "private",
"files": "files",
"#channel": "#channel",
"%_of_conversations": "% of Conversations",
"0_Errors_Only": "0 - Errors Only",
"12_Hour": "12-hour clock",
"1_Errors_and_Information": "1 - Errors and Information",
"24_Hour": "24-hour clock",
"2_Erros_Information_and_Debug": "2 - Errors, Information and Debug",
"@username": "@username",
"@username_message": "@username <message>",
"AI_Actions": "AI actions",
"API": "API",
"API_Add_Personal_Access_Token": "Add new Personal Access Token",
"API_Allow_Infinite_Count": "Allow Getting Everything",
"API_Allow_Infinite_Count_Description": "Should calls to the REST API be allowed to return everything in one call?",
"API_Analytics": "Analytics",
"API_Apply_permission_view-outside-room_on_users-list": "Apply permission `view-outside-room` to api `users.list`",
"API_Apply_permission_view-outside-room_on_users-list_Description": "Temporary setting to enforce permission. Will be removed on next Major release within the change to always enforce the permission",
"API_CORS_Origin": "CORS Origin",
"API_Default_Count": "Default Count",
"API_Default_Count_Description": "The default count for REST API results if the consumer did not provided any.",
"API_Drupal_URL": "Drupal Server URL",
"API_Drupal_URL_Description": "Example: `https://domain.com` (excluding trailing slash)",
"API_Embed": "Embed Link Previews",
"API_EmbedCacheExpirationDays": "Embed Cache Expiration Days",
"API_EmbedDisabledFor": "Disable Embed for Users",
"API_EmbedDisabledFor_Description": "Comma-separated list of usernames to disable the embedded link previews.",
"API_EmbedIgnoredHosts": "Embed Ignored Hosts",
"API_EmbedIgnoredHosts_Description": "Comma-separated list of hosts or CIDR addresses, eg. localhost, 127.0.0.1, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16",
"API_EmbedSafePorts": "Safe Ports",
"API_EmbedSafePorts_Description": "Comma-separated list of ports allowed for previewing.",
"API_Embed_Description": "Whether embedded link previews are enabled or not when a user posts a link to a website.",
"API_Embed_UserAgent": "Embed Request User Agent",
"API_Enable_CORS": "Enable CORS",
"API_Enable_Direct_Message_History_EndPoint": "Enable Direct Message History Endpoint",
"API_Enable_Direct_Message_History_EndPoint_Description": "This enables the `/api/v1/im.messages.others` which allows the viewing of direct messages sent by other users that the caller is not part of.",
"API_Enable_Personal_Access_Tokens": "Enable Personal Access Tokens to REST API",
"API_Enable_Personal_Access_Tokens_Description": "Enable personal access tokens for use with the REST API",
"API_Enable_Rate_Limiter": "Enable Rate Limiter",
"API_Enable_Rate_Limiter_Dev": "Enable Rate Limiter in development",
"API_Enable_Rate_Limiter_Dev_Description": "Should limit the amount of calls to the endpoints in the development environment?",
"API_Enable_Rate_Limiter_Limit_Calls_Default": "Default number calls to the rate limiter",
"API_Enable_Rate_Limiter_Limit_Calls_Default_Description": "Number of default calls for each endpoint of the REST API, allowed within the time range defined below",
"API_Enable_Rate_Limiter_Limit_Time_Default": "Default time limit for the rate limiter (in ms)",
"API_Enable_Rate_Limiter_Limit_Time_Default_Description": "Default timeout to limit the number of calls at each endpoint of the REST API(in ms)",
"API_Enable_Shields": "Enable Shields",
"API_Enable_Shields_Description": "Enable shields available at `/api/v1/shield.svg`",
"API_GitHub_Enterprise_URL": "Server URL",
"API_GitHub_Enterprise_URL_Description": "Example: `https://domain.com` (excluding trailing slash)",
"API_Gitlab_URL": "GitLab URL",
"API_Personal_Access_Token_Generated": "Personal Access Token successfully generated",
"API_Personal_Access_Token_Generated_Text_Token_s_UserId_s": "Please save your token carefully as you will no longer be able to view it afterwards. <br/>Token: <strong>{{token}}</strong><br/>Your user Id: <strong>{{userId}}</strong>",
"API_Personal_Access_Token_Name": "Personal Access Token Name",
"API_Personal_Access_Tokens_Regenerate_It": "Regenerate token",
"API_Personal_Access_Tokens_Regenerate_Modal": "If you lost or forgot your token, you can regenerate it, but remember that all applications that use this token should be updated",
"API_Personal_Access_Tokens_Remove_Modal": "Are you sure you wish to remove this personal access token?",
"API_Personal_Access_Tokens_To_REST_API": "Personal access tokens to REST API",
"API_Rate_Limiter": "API Rate Limiter",
"API_Shield_Types": "Shield Types",
"API_Shield_Types_Description": "Types of shields to enable as a comma separated list, choose from `online`, `channel` or `*` for all",
"API_Shield_user_require_auth": "Require authentication for users shields",
"API_Token": "API Token",
"API_Tokenpass_URL": "Tokenpass Server URL",
"API_Tokenpass_URL_Description": "Example: `https://domain.com` (excluding trailing slash)",
"API_Upper_Count_Limit": "Max Record Amount",
"API_Upper_Count_Limit_Description": "What is the maximum number of records the REST API should return (when not unlimited)?",
"API_Use_REST_For_DDP_Calls": "Use REST instead of websocket for Meteor calls",
"API_User_Limit": "User Limit for Adding All Users to Channel",
"API_Wordpress_URL": "WordPress URL",
"APIs": "APIs",
"A_cloud-based_platform_for_those_needing_a_plug-and-play_app": "A cloud-based platform for those needing a plug-and-play app.",
"A_new_owner_will_be_assigned_automatically_to__count__rooms": "A new owner will be assigned automatically to <bold>{{count}}</bold> rooms.",
"A_new_owner_will_be_assigned_automatically_to_the__roomName__room": "A new owner will be assigned automatically to the <bold>{{roomName}}</bold> room.",
"A_new_owner_will_be_assigned_automatically_to_those__count__rooms__rooms__": "A new owner will be assigned automatically to those <bold>{{count}}</bold> rooms:<br/> {{rooms}}.",
"A_secure_and_highly_private_self-managed_solution_for_conference_calls": "A secure and highly private self-managed solution for conference calls.",
"A_workspace_admin_needs_to_install_and_configure_a_conference_call_app": "A workspace admin needs to install and configure a conference call app.",
"Accept": "Accept",
"Accept_Call": "Accept Call",
"Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Accept incoming omnichannel requests even if there are no online agents",
"Accept_new_livechats_when_agent_is_idle": "Accept new omnichannel requests when the agent is idle",
"Accept_receive_inquiry_no_online_agents": "Allow department to receive forwarded inquiries even when there's no available agents",
"Accept_receive_inquiry_no_online_agents_Hint": "This method is effective only with automatic assignment routing methods, and does not apply to Manual Selection.",
"Accept_with_no_online_agents": "Accept with No Online Agents",
"Access_Token_URL": "Access Token URL",
"Access_Your_Account": "Access Your Account",
"Access_not_authorized": "Access not authorized",
"Accessibility": "Accessibility",
"Accessibility_activation": "Here you can activate a range of features to enhance your browsing experience.",
"Accessibility_and_Appearance": "Accessibility & appearance",
"Accessibility_feature_documentation": "Accessibility feature documentation",
"Accessibility_statement": "Accessibility statement",
"Accessing_permissions": "Accessing permissions",
"Account": "Account",
"Account_SID": "Account SID",
"Accounts": "Accounts",
"Accounts_Admin_Email_Approval_Needed_Default": "<p>The user <b>[name] ([email])</b> has been registered.</p><p>Please check \"Administration -> Users\" to activate or delete it.</p>",
"Accounts_Admin_Email_Approval_Needed_Subject_Default": "A new user registered and needs approval",
"Accounts_Admin_Email_Approval_Needed_With_Reason_Default": "<p>The user <b>[name] ([email])</b> has been registered.</p><p>Reason: <b>[reason]</b></p><p>Please check \"Administration -> Users\" to activate or delete it.</p>",
"Accounts_AllowAnonymousRead": "Allow Anonymous Read",
"Accounts_AllowAnonymousWrite": "Allow Anonymous Write",
"Accounts_AllowDeleteOwnAccount": "Allow Users to Delete Own Account",
"Accounts_AllowEmailChange": "Allow Email Change",
"Accounts_AllowEmailNotifications": "Allow Email Notifications",
"Accounts_AllowFeaturePreview": "Allow Feature Preview",
"Accounts_AllowFeaturePreview_Description": "Make feature preview available to all workspace members.",
"Accounts_AllowInvisibleStatusOption": "Allow Invisible status option",
"Accounts_AllowPasswordChange": "Allow Password Change",
"Accounts_AllowPasswordChangeForOAuthUsers": "Allow Password Change for OAuth Users",
"Accounts_AllowRealNameChange": "Allow Name Change",
"Accounts_AllowUserAvatarChange": "Allow User Avatar Change",
"Accounts_AllowUserProfileChange": "Allow User Profile Change",
"Accounts_AllowUserStatusMessageChange": "Allow Custom Status Message",
"Accounts_AllowUsernameChange": "Allow Username Change",
"Accounts_AllowedDomainsList": "Allowed Domains List",
"Accounts_AllowedDomainsList_Description": "Comma-separated list of allowed domains",
"Accounts_AvatarBlockUnauthenticatedAccess": "Block Unauthenticated Access to Avatars",
"Accounts_AvatarCacheTime": "Avatar cache time",
"Accounts_AvatarCacheTime_description": "Number of seconds the http protocol is told to cache the avatar images.",
"Accounts_AvatarExternalProviderUrl": "Avatar External Provider URL",
"Accounts_AvatarExternalProviderUrl_Description": "Example: `https://acme.com/api/v1/{username}`",
"Accounts_AvatarResize": "Resize Avatars",
"Accounts_AvatarSize": "Avatar Size",
"Accounts_BlockedDomainsList": "Blocked Domains List",
"Accounts_BlockedDomainsList_Description": "Comma-separated list of blocked domains",
"Accounts_BlockedUsernameList": "Blocked Username List",
"Accounts_BlockedUsernameList_Description": "Comma-separated list of blocked usernames (case-insensitive)",
"Accounts_CustomFieldsToShowInUserInfo": "Custom Fields to Show in User Info",
"Accounts_CustomFieldsToShowInUserInfo_Description": "Value must be an array of objects where the key is the label and the value the field name. Example: `[{\"Role Label\": \"role\"}, {\"Twitter Label\": \"twitter\"}]` more info at [Custom Fields](https://docs.rocket.chat/docs/custom-fields)",
"Accounts_CustomFields_Description": "Should be a valid JSON where keys are the field names containing a dictionary of field settings. Example: \n`{\"role\":{ \"type\": \"select\", \"defaultValue\": \"student\", \"options\": [\"teacher\", \"student\"], \"required\": true, \"modifyRecordField\": { \"array\": true, \"field\": \"roles\" } }, \"twitter\": { \"type\": \"text\", \"required\": true, \"minLength\": 2, \"maxLength\": 10 }}`",
"Accounts_DefaultUsernamePrefixSuggestion": "Default Username Prefix Suggestion",
"Accounts_Default_User_Preferences": "Default User Preferences",
"Accounts_Default_User_Preferences_alsoSendThreadToChannel_Description": "Allow users to select the Also send to channel behavior",
"Accounts_Default_User_Preferences_audioNotifications": "Audio Notifications Default Alert",
"Accounts_Default_User_Preferences_desktopNotifications": "Desktop Notifications Default Alert",
"Accounts_Default_User_Preferences_not_available": "Failed to retrieve User Preferences because they haven't been set up by the user yet",
"Accounts_Default_User_Preferences_omnichannelTranscriptEmail_Description": "Always send the transcript to contacts at the end of the conversations. This preference may be overriden by an admin setting.",
"Accounts_Default_User_Preferences_omnichannelTranscriptPDF_Description": "Always export the transcript as PDF at the end of conversations.",
"Accounts_Default_User_Preferences_pushNotifications": "Push Notifications Default Alert",
"Accounts_Default_User_Preferences_showThreadsInMainChannel_Description": "When enabled, all replies under a thread will also be displayed directly in the main room. When disabled, thread replies will be displayed based on the sender's choice.",
"Accounts_Description": "Modify workspace member account settings.",
"Accounts_Directory_DefaultView": "Default Directory Listing",
"Accounts_EmailVerification": "Require email verification to login",
"Accounts_EmailVerification_Description": "Ensure SMTP is configured to enable",
"Accounts_Email_Activated": "[name]<br/><br/><p>Your account was activated.</p>",
"Accounts_Email_Activated_Subject": "Account activated",
"Accounts_Email_Approved": "[name]<br/><br/><p>Your account was approved.</p>",
"Accounts_Email_Approved_Subject": "Account approved",
"Accounts_Email_Deactivated": "[name]<br/><br/><p>Your account was deactivated.</p>",
"Accounts_Email_Deactivated_Subject": "Account deactivated",
"Accounts_Enrollment_Email": "Enrollment Email",
"Accounts_Enrollment_Email_Default": "<h1>Welcome to <strong>[Site_Name]</strong></h1><p>Go to <a href=\"[Site_URL]\">[Site_URL]</a> and try the best open source chat solution available today!</p>",
"Accounts_Enrollment_Email_Description": "You may use the following placeholders: \n - `[name]`, `[fname]`, `[lname]` for the user's full name, first name or last name, respectively. \n - `[email]` for the user's email. \n - `[Site_Name]` and `[Site_URL]` for the Application Name and URL respectively. ",
"Accounts_Enrollment_Email_Subject_Default": "Welcome to [Site_Name]",
"Accounts_ForgetUserSessionOnWindowClose": "Forget User Session on Window Close",
"Accounts_Iframe_api_method": "Api Method",
"Accounts_Iframe_api_url": "API URL",
"Accounts_LoginExpiration": "Login Expiration in Days",
"Accounts_ManuallyApproveNewUsers": "Manually Approve New Users",
"Accounts_OAuth_Apple": "Sign in with Apple",
"Accounts_OAuth_Apple_Description": "If you want Apple login enabled only on mobile, you can leave all fields empty.",
"Accounts_OAuth_Custom_Access_Token_Param": "Param Name for access token",
"Accounts_OAuth_Custom_Authorize_Path": "Authorize Path",
"Accounts_OAuth_Custom_Avatar_Field": "Avatar field",
"Accounts_OAuth_Custom_Button_Color": "Button Color",
"Accounts_OAuth_Custom_Button_Label_Color": "Button Text Color",
"Accounts_OAuth_Custom_Button_Label_Text": "Button Text",
"Accounts_OAuth_Custom_Channel_Admin": "User Data Group Map",
"Accounts_OAuth_Custom_Channel_Map": "OAuth Group Channel Map",
"Accounts_OAuth_Custom_Email_Field": "Email field",
"Accounts_OAuth_Custom_Enable": "Enable",
"Accounts_OAuth_Custom_Groups_Claim": "Roles/Groups field for channel mapping",
"Accounts_OAuth_Custom_Identity_Path": "Identity Path",
"Accounts_OAuth_Custom_Identity_Token_Sent_Via": "Identity Token Sent Via",
"Accounts_OAuth_Custom_Key_Field": "Key Field",
"Accounts_OAuth_Custom_Login_Style": "Login Style",
"Accounts_OAuth_Custom_Map_Channels": "Map Roles/Groups to channels",
"Accounts_OAuth_Custom_Merge_Roles": "Merge Roles from SSO",
"Accounts_OAuth_Custom_Merge_Users": "Merge users",
"Accounts_OAuth_Custom_Merge_Users_Distinct_Services": "Merge users from distinct services",
"Accounts_OAuth_Custom_Merge_Users_Distinct_Services_Description": "When the given key field matches the one of an existing user, allow users from this OAuth service to be merged to existing users regardless of their origin service.",
"Accounts_OAuth_Custom_Name_Field": "Name field",
"Accounts_OAuth_Custom_Roles_Claim": "Roles/Groups field name",
"Accounts_OAuth_Custom_Roles_To_Sync": "Roles to Sync",
"Accounts_OAuth_Custom_Roles_To_Sync_Description": "OAuth Roles to sync on user login and creation (comma-separated).",
"Accounts_OAuth_Custom_Scope": "Scope",
"Accounts_OAuth_Custom_Secret": "Secret",
"Accounts_OAuth_Custom_Show_Button_On_Login_Page": "Show Button on Login Page",
"Accounts_OAuth_Custom_Token_Path": "Token Path",
"Accounts_OAuth_Custom_Token_Sent_Via": "Token Sent Via",
"Accounts_OAuth_Custom_Username_Field": "Username field",
"Accounts_OAuth_Custom_id": "Id",
"Accounts_OAuth_Drupal": "Drupal Login Enabled",
"Accounts_OAuth_Drupal_callback_url": "Drupal oAuth2 Redirect URI",
"Accounts_OAuth_Drupal_id": "Drupal oAuth2 Client ID",
"Accounts_OAuth_Drupal_secret": "Drupal oAuth2 Client Secret",
"Accounts_OAuth_Facebook": "Facebook Login",
"Accounts_OAuth_Facebook_callback_url": "Facebook Callback URL",
"Accounts_OAuth_Facebook_id": "Facebook App ID",
"Accounts_OAuth_Facebook_secret": "Facebook Secret",
"Accounts_OAuth_GitHub_Enterprise": "OAuth Enabled",
"Accounts_OAuth_GitHub_Enterprise_callback_url": "GitHub Enterprise Callback URL",
"Accounts_OAuth_GitHub_Enterprise_id": "Client Id",
"Accounts_OAuth_GitHub_Enterprise_secret": "Client Secret",
"Accounts_OAuth_Github": "OAuth Enabled",
"Accounts_OAuth_Github_callback_url": "Github Callback URL",
"Accounts_OAuth_Github_id": "Client Id",
"Accounts_OAuth_Github_secret": "Client Secret",
"Accounts_OAuth_Gitlab": "OAuth Enabled",
"Accounts_OAuth_Gitlab_callback_url": "GitLab Callback URL",
"Accounts_OAuth_Gitlab_id": "GitLab Id",
"Accounts_OAuth_Gitlab_identity_path": "Identity Path",
"Accounts_OAuth_Gitlab_merge_users": "Merge Users",
"Accounts_OAuth_Gitlab_secret": "Client Secret",
"Accounts_OAuth_Google": "Google Login",
"Accounts_OAuth_Google_callback_url": "Google Callback URL",
"Accounts_OAuth_Google_id": "Google Id",
"Accounts_OAuth_Google_secret": "Google Secret",
"Accounts_OAuth_Linkedin": "LinkedIn Login",
"Accounts_OAuth_Linkedin_callback_url": "Linkedin Callback URL",
"Accounts_OAuth_Linkedin_id": "LinkedIn Id",
"Accounts_OAuth_Linkedin_secret": "LinkedIn Secret",
"Accounts_OAuth_Meteor": "Meteor Login",
"Accounts_OAuth_Meteor_callback_url": "Meteor Callback URL",
"Accounts_OAuth_Meteor_id": "Meteor Id",
"Accounts_OAuth_Meteor_secret": "Meteor Secret",
"Accounts_OAuth_Nextcloud": "OAuth Enabled",
"Accounts_OAuth_Nextcloud_URL": "Nextcloud Server URL",
"Accounts_OAuth_Nextcloud_callback_url": "Nextcloud Callback URL",
"Accounts_OAuth_Nextcloud_id": "Nextcloud Id",
"Accounts_OAuth_Nextcloud_secret": "Client Secret",
"Accounts_OAuth_Proxy_host": "Proxy Host",
"Accounts_OAuth_Proxy_services": "Proxy Services",
"Accounts_OAuth_Tokenpass": "Tokenpass Login",
"Accounts_OAuth_Tokenpass_callback_url": "Tokenpass Callback URL",
"Accounts_OAuth_Tokenpass_id": "Tokenpass Id",
"Accounts_OAuth_Tokenpass_secret": "Tokenpass Secret",
"Accounts_OAuth_Twitter": "Twitter Login",
"Accounts_OAuth_Twitter_callback_url": "Twitter Callback URL",
"Accounts_OAuth_Twitter_id": "Twitter Id",
"Accounts_OAuth_Twitter_secret": "Twitter Secret",
"Accounts_OAuth_Wordpress": "WordPress Login",
"Accounts_OAuth_Wordpress_authorize_path": "Authorize Path",
"Accounts_OAuth_Wordpress_callback_url": "WordPress Callback URL",
"Accounts_OAuth_Wordpress_id": "WordPress Id",
"Accounts_OAuth_Wordpress_identity_path": "Identity Path",
"Accounts_OAuth_Wordpress_identity_token_sent_via": "Identity Token Sent Via",
"Accounts_OAuth_Wordpress_scope": "Scope",
"Accounts_OAuth_Wordpress_secret": "WordPress Secret",
"Accounts_OAuth_Wordpress_server_type_custom": "Custom",
"Accounts_OAuth_Wordpress_server_type_wordpress_com": "Wordpress.com",
"Accounts_OAuth_Wordpress_server_type_wp_oauth_server": "WP OAuth Server Plugin",
"Accounts_OAuth_Wordpress_token_path": "Token Path",
"Accounts_PasswordReset": "Password Reset",
"Accounts_Password_Policy_AtLeastOneLowercase": "At Least One Lowercase",
"Accounts_Password_Policy_AtLeastOneLowercase_Description": "Enforce that a password contain at least one lowercase character.",
"Accounts_Password_Policy_AtLeastOneNumber": "At Least One Number",
"Accounts_Password_Policy_AtLeastOneNumber_Description": "Enforce that a password contain at least one numerical character.",
"Accounts_Password_Policy_AtLeastOneSpecialCharacter": "At Least One Symbol",
"Accounts_Password_Policy_AtLeastOneSpecialCharacter_Description": "Enforce that a password contain at least one special character.",
"Accounts_Password_Policy_AtLeastOneUppercase": "At Least One Uppercase",
"Accounts_Password_Policy_AtLeastOneUppercase_Description": "Enforce that a password contain at least one uppercase character.",
"Accounts_Password_Policy_Enabled": "Enable Password Policy",
"Accounts_Password_Policy_Enabled_Description": "When enabled, user passwords must adhere to the policies set forth. Note: this only applies to new passwords, not existing passwords.",
"Accounts_Password_Policy_ForbidRepeatingCharacters": "Forbid Repeating Characters",
"Accounts_Password_Policy_ForbidRepeatingCharactersCount": "Max Repeating Characters",
"Accounts_Password_Policy_ForbidRepeatingCharactersCount_Description": "The amount of times a character can be repeating before it is not allowed.",
"Accounts_Password_Policy_ForbidRepeatingCharacters_Description": "Ensures passwords do not contain the same character repeating next to each other.",
"Accounts_Password_Policy_MaxLength": "Maximum Length",
"Accounts_Password_Policy_MaxLength_Description": "Ensures that passwords do not have more than this amount of characters. Use `-1` to disable.",
"Accounts_Password_Policy_MinLength": "Minimum Length",
"Accounts_Password_Policy_MinLength_Description": "Ensures that passwords must have at least this amount of characters. Use `-1` to disable.",
"Accounts_RegistrationForm": "Registration Form",
"Accounts_RegistrationForm_Disabled": "Disabled",
"Accounts_RegistrationForm_LinkReplacementText": "Registration Form Link Replacement Text",
"Accounts_RegistrationForm_Public": "Public",
"Accounts_RegistrationForm_SecretURL": "Registration Form Secret URL",
"Accounts_RegistrationForm_SecretURL_Description": "You must provide a random string that will be added to your registration URL. Example: `https://open.rocket.chat/register/[secret_hash]`",
"Accounts_RegistrationForm_Secret_URL": "Secret URL",
"Accounts_Registration_AuthenticationServices_Default_Roles": "Default Roles for Authentication Services",
"Accounts_Registration_AuthenticationServices_Default_Roles_Description": "Default roles (comma-separated) users will be given when registering through authentication services",
"Accounts_Registration_AuthenticationServices_Enabled": "Registration with Authentication Services",
"Accounts_Registration_InviteUrlType": "Invite URL Type",
"Accounts_Registration_InviteUrlType_Direct": "Direct",
"Accounts_Registration_InviteUrlType_Proxy": "Proxy",
"Accounts_Registration_Users_Default_Roles": "Default Roles for Users",
"Accounts_Registration_Users_Default_Roles_Description": "Default roles (comma-separated) users will be given when registering through manual registration (including via API)",
"Accounts_Registration_Users_Default_Roles_Enabled": "Enable Default Roles for Manual Registration",
"Accounts_RequireNameForSignUp": "Require Name For Signup",
"Accounts_RequirePasswordConfirmation": "Require Password Confirmation",
"Accounts_RoomAvatarExternalProviderUrl": "Room Avatar External Provider URL",
"Accounts_RoomAvatarExternalProviderUrl_Description": "Example: `https://acme.com/api/v1/{roomId}`",
"Accounts_SearchFields": "Fields to Consider in Search",
"Accounts_Send_Email_When_Activating": "Send email to user when user is activated",
"Accounts_Send_Email_When_Deactivating": "Send email to user when user is deactivated",
"Accounts_SetDefaultAvatar": "Set Default Avatar",
"Accounts_SetDefaultAvatar_Description": "Tries to determine default avatar based on OAuth Account or Gravatar",
"Accounts_Set_Email_Of_External_Accounts_as_Verified": "Set email of external accounts as verified",
"Accounts_Set_Email_Of_External_Accounts_as_Verified_Description": "Accounts created from external services, like LDAP, OAuth, etc, will have their emails verified automatically",
"Accounts_ShowFormLogin": "Show Default Login Form",
"Accounts_TwoFactorAuthentication_By_Email_Auto_Opt_In": "Auto opt in new users for Two Factor via Email",
"Accounts_TwoFactorAuthentication_By_Email_Auto_Opt_In_Description": "New users will have the Two Factor Authentication via Email enabled by default. They will be able to disable it in their profile page.",
"Accounts_TwoFactorAuthentication_By_Email_Code_Expiration": "Time to expire the code sent via email in seconds",
"Accounts_TwoFactorAuthentication_By_Email_Enabled": "Enable Two Factor Authentication via Email",
"Accounts_TwoFactorAuthentication_By_Email_Enabled_Description": "Users with email verified and the option enabled in their profile page will receive an email with a temporary code to authorize certain actions like login, save the profile, etc.",
"Accounts_TwoFactorAuthentication_By_TOTP_Enabled": "Enable Two Factor Authentication via TOTP",
"Accounts_TwoFactorAuthentication_By_TOTP_Enabled_Description": "Users can setup their Two Factor Authentication using any TOTP App, like Google Authenticator or Authy.",
"Accounts_TwoFactorAuthentication_Enabled": "Enable Two Factor Authentication",
"Accounts_TwoFactorAuthentication_Enabled_Description": "If deactivated, this setting will deactivate all Two Factor Authentication. \nTo force users to use Two Factor Authentication, the admin has to configure the 'user' role to enforce it.",
"Accounts_TwoFactorAuthentication_Enforce_Password_Fallback": "Enforce password fallback",
"Accounts_TwoFactorAuthentication_Enforce_Password_Fallback_Description": "Users will be forced to enter their password, for important actions, if no other Two Factor Authentication method is enabled for that user and a password is set for him.",
"Accounts_TwoFactorAuthentication_MaxDelta": "Maximum Delta",
"Accounts_TwoFactorAuthentication_MaxDelta_Description": "The Maximum Delta determines how many tokens are valid at any given time. Tokens are generated every 30 seconds, and are valid for (30 * Maximum Delta) seconds. \nExample: With a Maximum Delta set to 10, each token can be used up to 300 seconds before or after it's timestamp. This is useful when the client's clock is not properly synced with the server.",
"Accounts_TwoFactorAuthentication_Max_Invalid_Email_Code_Attempts": "Maximun Invalid Email OTP Codes Allowed",
"Accounts_TwoFactorAuthentication_Max_Invalid_Email_Code_Attempts_Description": "The system allows a maximum number of invalid email OTP codes, after which a new code is automatically generated. We highly recommend using this setting along with 'Block failed login attempts by Username'.",
"Accounts_TwoFactorAuthentication_RememberFor": "Remember Two Factor for (seconds)",
"Accounts_TwoFactorAuthentication_RememberFor_Description": "Do not request two factor authorization code if it was already provided before in the given time.",
"Accounts_UseDNSDomainCheck": "Use DNS Domain Check",
"Accounts_UseDefaultBlockedDomainsList": "Use Default Blocked Domains List",
"Accounts_UserAddedEmailSubject_Default": "You have been added to [Site_Name]",
"Accounts_UserAddedEmail_Default": "<h1>Welcome to <strong>[Site_Name]</strong></h1><p>Go to <a href=\"[Site_URL]\">[Site_URL]</a> and try the best open source chat solution available today!</p><p>You may login using your email: [email] and password: [password]. You may be required to change it after your first login.",
"Accounts_UserAddedEmail_Description": "You may use the following placeholders: \n - `[name]`, `[fname]`, `[lname]` for the user's full name, first name or last name, respectively. \n - `[email]` for the user's email. \n - `[password]` for the user's password. \n - `[Site_Name]` and `[Site_URL]` for the Application Name and URL respectively. ",
"Accounts_Verify_Email_For_External_Accounts": "Mark Email for External Accounts Verified",
"Accounts_denyUnverifiedEmail": "Deny unverified email",
"Accounts_iframe_enabled": "Enabled",
"Accounts_iframe_url": "Iframe URL",
"Accounts_twoFactorAuthentication_email_available_for_OAuth_users": "Make two factor via email available for oAuth users",
"Accounts_twoFactorAuthentication_email_available_for_OAuth_users_Description": "People that use oAuth will receive an email with a temporary code to authorize actions like login, save profile, etc.",
"Action": "Action",
"Action_Available_After_Custom_Content_Added": "This action will become available after the custom content has been added",
"Action_Available_After_Custom_Content_Added_And_Visible": "This action will become available after the custom content has been added and made visible to everyone",
"Action_not_available_encrypted_content": "{{action}} not available on encrypted content",
"Action_required": "Action required",
"Activate": "Activate",
"Activation": "Activation",
"Active": "Active",
"ActiveSessions": "Active sessions",
"ActiveSessionsPeak": "Active sessions peak",
"ActiveSessionsPeak_InfoText": "Highest amount of active connections in the past 30 days",
"ActiveSessions_InfoText": "Total concurrent connections. A single user can be connected multiple times. User presence service is disabled at 200 or more to prevent performance issues.",
"ActiveSessions_available": "sessions available",
"Active_connections": "Active connections",
"Active_users": "Active users",
"Activity": "Activity",
"Actor": "Actor",
"Add": "Add",
"Add-on": "Add-on",
"Add-on_required": "Add-on required",
"Add-on_required_modal_enable_content": "App cannot be enabled without the required subscription add-on. Contact sales to get the add-on for this app.",
"Add_Domain": "Add Domain",
"Add_Reaction": "Add reaction",
"Add_Role": "Add Role",
"Add_Sender_To_ReplyTo": "Add Sender to Reply-To",
"Add_Server": "Add Server",
"Add_URL": "Add URL",
"Add_User": "Add User",
"Add_a_Message": "Add a Message",
"Add_agent": "Add agent",
"Add_contact": "Add contact",
"Add_custom_oauth": "Add custom OAuth",
"Add_email": "Add email",
"Add_emoji": "Add emoji",
"Add_files_from": "Add files from",
"Add_link": "Add link",
"Add_manager": "Add manager",
"Add_members": "Add Members",
"Add_monitor": "Add monitor",
"Add_more_users": "Add more users",
"Add_people": "Add people",
"Add_phone": "Add phone",
"Add_them": "Add them",
"Add_topic": "Add topic",
"Add_user": "Add user",
"Add_users": "Add users",
"Added__username__to_team": "<strong>added</strong> @{{user_added}} to this Team",
"Added__username__to_this_team": "added @{{user_added}} to this team",
"Adding_OAuth_Services": "Adding OAuth Services",
"Adding_permission": "Adding permission",
"Adding_user": "Adding user",
"Additional_Feedback": "Additional Feedback",
"Additional_emails": "Additional Emails",
"Address": "Address",
"Adjustable_font_size": "Adjustable font size",
"Adjustable_font_size_description": "Designed for those who prefer larger or smaller text for improved readability. This flexibility promotes inclusivity by empowering users to tailor the software interface to their specific needs.",
"Adjustable_layout": "Adjustable layout",
"Admin_Info": "Admin Info",
"Admin_disabled_encryption": "Your administrator did not enable E2E encryption.",
"Administration": "Administration",
"Adult_images_are_not_allowed": "Adult images are not allowed",
"Advanced_contact_profile": "Advanced contact profile",
"Advanced_contact_profile_description": "Manage multiple emails and phone numbers for a single contact, enabling a comprehensive multi-channel history that keeps you well-informed and improves communication efficiency.",
"Advanced_settings": "Advanced settings",
"Aerospace_and_Defense": "Aerospace & Defense",
"After_OAuth2_authentication_users_will_be_redirected_to_this_URL": "After OAuth2 authentication, users will be redirected to an URL on this list. You can add one URL per line.",
"After_guest_registration": "After guest registration",
"Agent": "Agent",
"Agent_Info": "Agent Info",
"Agent_Name": "Agent Name",
"Agent_Name_Placeholder": "Please enter an agent name...",
"Agent_Without_Extensions": "Agent Without Extensions",
"Agent_added": "Agent added",
"Agent_deactivated": "Agent was deactivated",
"Agent_messages": "Agent Messages",
"Agent_removed": "Agent removed",
"Agents": "Agents",
"Agree": "Agree",
"AirGapped_Restriction_Warning": "**Your air-gapped workspace will enter read-only mode in {{remainingDays}} days.** \n Users will still be able to access rooms and read existing messages but will be unable to send new messages. \n Reconnect it to the internet or [upgrade to a premium license](https://go.rocket.chat/i/air-gapped) to prevent this.",
"Airgapped_workspace_restriction": "This air-gapped workspace is in read-only mode. <1>Connect it to the internet or upgrade to a premium plan to restore full functionality.</1>",
"Airgapped_workspace_warning": "This air-gapped workspace will enter read-only mode in {{remainingDays}} days. <1>Connect it to the internet or upgrade to a premium plan to prevent this.</1>",
"Alerts": "Alerts",
"Alias": "Alias",
"Alias_Format": "Alias Format",
"Alias_Format_Description": "Import messages from Slack with an alias; %s is replaced by the username of the user. If empty, no alias will be used.",
"Alias_Set": "Alias Set",
"Aliases": "Aliases",
"All": "All",
"All_Apps": "All Apps",
"All_Prices": "All prices",
"All_Settings": "All Settings",
"All_added_tokens_will_be_required_by_the_user": "All added tokens will be required by the user",
"All_categories": "All categories",
"All_channels": "All channels",
"All_closed_chats_have_been_removed": "All closed chats have been removed",
"All_logs": "All logs",
"All_messages": "All messages",
"All_roles": "All roles",
"All_rooms": "All rooms",
"All_status": "All status",
"All_time": "All time",
"All_users": "All users",
"All_users_in_the_channel_can_write_new_messages": "All users in the channel can write new messages",
"All_visible": "All visible",
"Allow_Invalid_SelfSigned_Certs": "Allow Invalid Self-Signed Certs",
"Allow_Invalid_SelfSigned_Certs_Description": "Allow invalid and self-signed SSL certificate's for link validation and previews.",
"Allow_Marketing_Emails": "Allow Marketing Emails",
"Allow_Online_Agents_Outside_Business_Hours": "Allow online agents outside of business hours",
"Allow_Online_Agents_Outside_Office_Hours": "Allow online agents outside of office hours",
"Allow_Save_Media_to_Gallery": "Allow Save Media to Gallery",
"Allow_collect_and_store_HTTP_header_informations": "Allow to collect and store HTTP header informations",
"Allow_collect_and_store_HTTP_header_informations_description": "This setting determines whether Livechat is allowed to store information collected from HTTP header data, such as IP address, User-Agent, and so on.",
"Allow_switching_departments": "Allow Visitor to Switch Departments",
"Almost_done": "Almost done",
"Alphabetical": "Alphabetical",
"Also_send_thread_message_to_channel_behavior": "Also send thread message to channel behavior",
"Also_send_to_channel": "Also send to channel",
"Always_open_in_new_window": "Always Open in New Window",
"Always_send_the_transcript_to_contacts_at_the_end_of_the_conversations": "Always send the transcript to contacts at the end of the conversations.",
"Always_show_thread_replies_in_main_channel": "Always show thread replies in main channel",
"An_app_needs_to_be_installed_and_configured": "An app needs to be installed and configured.",
"An_update_is_available": "An update is available",
"Analytic_reports": "Analytic reports",
"Analytics": "Analytics",
"Analytics_Description": "See how users interact with your workspace.",
"Analytics_Google": "Google Analytics",
"Analytics_Google_id": "Tracking ID",
"Analytics_features_enabled": "Features Enabled",
"Analytics_features_messages_Description": "Tracks custom events related to actions a user does on messages.",
"Analytics_features_rooms_Description": "Tracks custom events related to actions on a channel or group (create, leave, delete).",
"Analytics_features_users_Description": "Tracks custom events related to actions related to users (password reset times, profile picture change, etc).",
"Analytics_page_briefing_first_paragraph": "Rocket.Chat collects anonymous usage data, such as feature usage and session lengths, to improve the product for everyone.",
"Analytics_page_briefing_second_paragraph": "We protect your privacy by never collecting personal or sensitive data. This section shows what is collected, reinforcing our commitment to transparency and trust.",
"Analyze_practical_usage": "Analyze practical usage statistics about users, messages and channels",
"And_more": "And {{length}} more",
"Animals_and_Nature": "Animals & Nature",
"Announcement": "Announcement",
"Anonymous": "Anonymous",
"Answer_call": "Answer Call",
"Anyone_can_access": "Anyone can access",
"Anyone_can_react_to_messages": "Anyone can react to messages",
"Anyone_can_send_new_messages": "Anyone can send new messages",
"Apiai_Key": "Api.ai Key",
"Apiai_Language": "Api.ai Language",
"App": "App",
"App_Details": "App details",
"App_Info": "App Info",
"App_Information": "App Information",
"App_Installation": "App Installation",
"App_Installation_Deprecation": "Install apps from URL is deprecated and will be removed in the next major release.",
"App_Installation_Deprecation_Title": "Deprecation Warning",
"App_Request_Admin_Message": "Hi {{admin_name}}, {{user_name}} submitted a request to install {{app_name}} app on this workspace. \n \n This is the message they included: \n>{{message}} \n \n To learn more and install the {{app_name}} app, [click here]({{learn_more}}).",
"App_Settings_Saved_Successfully": "{{appName}} saved successfully",
"App_Store": "App Store",
"App_Url_to_Install_From": "Install from URL",
"App_Url_to_Install_From_File": "Install from file",
"App_author_homepage": "author homepage",
"App_cannot_be_enabled_without_add-on": "App cannot be enabled without add-on.",
"App_has_been_disabled_addon_message_one": "The app {{appNames}} has been disabled because of an invalid add-on. A valid add-on subscription is required to re-enable it",
"App_has_been_disabled_addon_message_other": "The apps {{appNames}} have been disabled because of invalid add-ons. A valid add-on subscription is required to re-enable them",
"App_id": "App Id",
"App_limit_exceeded": "App limit exceeded",
"App_limit_reached": "App limit reached",
"App_name": "App name",
"App_not_enabled": "App not enabled",
"App_not_found": "App not found",
"App_request_enduser_message": "The app you requested, {{appName}}, has just been installed on this workspace. \n [Click here]({{learnmore}}) to learn about the app.",
"App_requests_by_workspace": "App requests by workspace members appear here",
"App_status_auto_enabled": "Enabled",
"App_status_constructed": "Constructed",
"App_status_disabled": "Disabled",
"App_status_error_disabled": "Disabled: Uncaught Error",
"App_status_initialized": "Initialized",
"App_status_invalid_license_disabled": "Disabled: Invalid License",
"App_status_invalid_settings_disabled": "Disabled: Configuration Needed",
"App_status_manually_disabled": "Disabled: Manually",
"App_status_manually_enabled": "Enabled",
"App_status_unknown": "Unknown",
"App_support_url": "support url",
"App_user_not_allowed_to_login": "App users are not allowed to log in directly.",
"App_version_incompatible_tooltip": "App incompatible with Rocket.Chat version",
"App_will_lose_grandfathered_status": "**This app will lose its app limit policy exemption.** \n \nWorkspaces on Community can have up to {{limit}} apps enabled. Uninstalling this app will cause it to lose its exemption policy.",
"App_will_lose_grandfathered_status_private": "**This app will lose its app limit policy exemption.** \n \nBecause Community workspaces cannot enable private apps, this workspace will require a premium plan in order to enable this app again in future.",
"Appearance": "Appearance",
"Application_Name": "Application Name",
"Application_added": "Application added",
"Application_delete_warning": "You will not be able to recover this Application!",
"Application_updated": "Application updated",
"Apply": "Apply",
"Apply_and_refresh_all_clients": "Apply and refresh all clients",
"Apply_filters": "Apply filters",
"Apps": "Apps",
"Apps_Cannot_Be_Updated": "App cannot be updated",
"Apps_Count_Enabled_one": "{{count}} app enabled",
"Apps_Count_Enabled_other": "{{count}} apps enabled",
"Apps_Count_Enabled_tooltip": "Community workspaces can enable up to {{number}} {{context}} apps",
"Apps_Currently_Enabled": "{{enabled}} of {{limit}} {{context}} apps currently enabled",
"Apps_Engine_Version": "Apps Engine Version",
"Apps_Error_": "Unknown app error.",
"Apps_Error_app_file_error": "Failed to get a file to install for the App.",
"Apps_Error_app_storage_error": "Failed to save app file on storage.",
"Apps_Error_app_user_error": "Failed to create app user.",
"Apps_Error_private_app_install_disabled": "Private app installation and updates are disabled in this workspace",
"Apps_Essential_Alert": "This app is essential for the following events:",
"Apps_Essential_Disclaimer": "Events listed above will be disrupted if this app is disabled. If you want Rocket.Chat to work without this app's functionality, you need to uninstall it",
"Apps_Framework_Development_Mode": "Enable development mode",
"Apps_Framework_Development_Mode_Description": "Development mode allows the installation of Apps that are not from the Rocket.Chat's Marketplace.",
"Apps_Framework_Source_Package_Storage_FileSystem_Alert": "Make sure the chosen directory exist and Rocket.Chat can access it (e.g. permission to read/write)",
"Apps_Framework_Source_Package_Storage_FileSystem_Path": "Directory for storing apps source package",
"Apps_Framework_Source_Package_Storage_FileSystem_Path_Description": "Absolute path in the filesystem for storing the apps' source code (in zip file format)",
"Apps_Framework_Source_Package_Storage_Type": "Apps' Source Package Storage type",
"Apps_Framework_Source_Package_Storage_Type_Alert": "Changing where the apps are stored may cause instabilities in apps there are already installed",
"Apps_Framework_Source_Package_Storage_Type_Description": "Choose where all the apps' source code will be stored. Apps can have multiple megabytes in size each.",
"Apps_Framework_enabled": "Enable the App Framework",
"Apps_Game_Center": "Game Center",
"Apps_Game_Center_Back": "Back to Game Center",
"Apps_Game_Center_Invite_Friends": "Invite your friends to join",
"Apps_Game_Center_Play_Game_Together": "@here Let's play {{name}} together!",
"Apps_InfoText_limited": "Community workspaces can enable up to {{marketplaceAppsMaxCount}} marketplace apps. Private apps can only be enabled in <1>premium plans</1>.",
"Apps_Interface_IPostExternalComponentClosed": "Event happening after an external component is closed",
"Apps_Interface_IPostExternalComponentOpened": "Event happening after an external component is opened",
"Apps_Interface_IPostMessageDeleted": "Event happening after a message is deleted",
"Apps_Interface_IPostMessageSent": "Event happening after a message is sent",
"Apps_Interface_IPostMessageUpdated": "Event happening after a message is updated",
"Apps_Interface_IPostRoomCreate": "Event happening after a room is created",
"Apps_Interface_IPostRoomDeleted": "Event happening after a room is deleted",
"Apps_Interface_IPostRoomUserJoined": "Event happening after a user joins a room (private group, public channel)",
"Apps_Interface_IPreMessageDeletePrevent": "Event happening before a message is deleted",
"Apps_Interface_IPreMessageSentExtend": "Event happening before a message is sent",
"Apps_Interface_IPreMessageSentModify": "Event happening before a message is sent",
"Apps_Interface_IPreMessageSentPrevent": "Event happening before a message is sent",
"Apps_Interface_IPreMessageUpdatedExtend": "Event happening before a message is updated",
"Apps_Interface_IPreMessageUpdatedModify": "Event happening before a message is updated",
"Apps_Interface_IPreMessageUpdatedPrevent": "Event happening before a message is updated",
"Apps_Interface_IPreRoomCreateExtend": "Event happening before a room is created",
"Apps_Interface_IPreRoomCreateModify": "Event happening before a room is created",
"Apps_Interface_IPreRoomCreatePrevent": "Event happening before a room is created",
"Apps_Interface_IPreRoomDeletePrevent": "Event happening before a room is deleted",
"Apps_Interface_IPreRoomUserJoined": "Event happening before a user joins a room (private group, public channel)",
"Apps_License_Message_appId": "License hasn't been issued for this app",
"Apps_License_Message_bundle": "License issued for a bundle that does not contain the app",
"Apps_License_Message_expire": "License is no longer valid and needs to be renewed",
"Apps_License_Message_maxSeats": "License does not accomodate the current amount of active users. Please increase the number of seats",
"Apps_License_Message_publicKey": "There has been an error trying to decrypt the license. Please sync your workspace in the Connectivity Services and try again",
"Apps_License_Message_renewal": "License has expired and needs to be renewed",
"Apps_License_Message_seats": "License does not have enough seats to accommodate the current amount of active users. Please increase the number of seats",
"Apps_Logs_TTL": "Number of days to keep logs from apps stored",
"Apps_Logs_TTL_14days": "14 days",
"Apps_Logs_TTL_30days": "30 days",
"Apps_Logs_TTL_7days": "7 days",
"Apps_Logs_TTL_Alert": "Depending on the size of the Logs collection, changing this setting may cause slowness for some moments",
"Apps_Manual_Update_Modal_Body": "Do you want to update it?",
"Apps_Manual_Update_Modal_Title": "This app is already installed",
"Apps_Marketplace_Deactivate_App_Prompt": "Do you really want to disable this app?",
"Apps_Marketplace_Login_Required_Description": "Purchasing apps from the Rocket.Chat Marketplace requires registering your workspace and logging in.",
"Apps_Marketplace_Login_Required_Title": "Marketplace Login Required",
"Apps_Marketplace_Modify_App_Subscription": "Modify Subscription",
"Apps_Marketplace_Uninstall_App_Prompt": "Do you really want to uninstall this app?",
"Apps_Marketplace_Uninstall_Subscribed_App_Anyway": "Uninstall it anyway",
"Apps_Marketplace_Uninstall_Subscribed_App_Prompt": "This app has an active subscription and uninstalling will not cancel it. If you'd like to do that, please modify your subscription before uninstalling.",
"Apps_Marketplace_pricingPlan_+*_monthly": " {{price}}+* / month",
"Apps_Marketplace_pricingPlan_+*_monthly_perUser": " {{price}}+* / month per user",
"Apps_Marketplace_pricingPlan_+*_monthly_perUser_trialDays": " {{price}}+* / month per user-{{trialDays}}-day trial",
"Apps_Marketplace_pricingPlan_+*_monthly_trialDays": " {{price}}+* / month-{{trialDays}}-day trial",
"Apps_Marketplace_pricingPlan_+*_yearly": " {{price}}+* / year",
"Apps_Marketplace_pricingPlan_+*_yearly_perUser": " {{price}}+* / year per user",
"Apps_Marketplace_pricingPlan_+*_yearly_perUser_trialDays": " {{price}}+* / year per user-{{trialDays}}-day trial",
"Apps_Marketplace_pricingPlan_+*_yearly_trialDays": " {{price}}+* / year-{{trialDays}}-day trial",
"Apps_Marketplace_pricingPlan_monthly": "{{price}} / month",
"Apps_Marketplace_pricingPlan_monthly_perUser": "{{price}} / month per user",
"Apps_Marketplace_pricingPlan_monthly_perUser_trialDays": "{{price}} / month per user-{{trialDays}}-day trial",
"Apps_Marketplace_pricingPlan_monthly_trialDays": "{{price}} / month-{{trialDays}}-day trial",
"Apps_Marketplace_pricingPlan_yearly_perUser_trialDays": "{{price}} / year per user-{{trialDays}}-day trial",
"Apps_Marketplace_pricingPlan_yearly_trialDays": "{{price}} / year-{{trialDays}}-day trial",
"Apps_Permissions_No_Permissions_Required": "The App does not require additional permissions",
"Apps_Permissions_Review_Modal_Subtitle": "This app would like access to the following permissions. Do you agree?",
"Apps_Permissions_Review_Modal_Title": "Required Permissions",
"Apps_Permissions_api": "Register new HTTP endpoints",
"Apps_Permissions_cloud_workspace-token": "Interact with Cloud Services on behalf of this server",
"Apps_Permissions_env_read": "Access minimal information about this server environment",
"Apps_Permissions_livechat-custom-fields_write": "Modify Livechat custom field configuration",
"Apps_Permissions_livechat-department_multiple": "Access to multiple Livechat departments information",
"Apps_Permissions_livechat-department_read": "Access Livechat department information",
"Apps_Permissions_livechat-department_write": "Modify Livechat department information",
"Apps_Permissions_livechat-message_read": "Access Livechat message information",
"Apps_Permissions_livechat-message_write": "Modify Livechat message information",
"Apps_Permissions_livechat-room_read": "Access Livechat room information",
"Apps_Permissions_livechat-room_write": "Modify Livechat room information",
"Apps_Permissions_livechat-status_read": "Access Livechat status information",
"Apps_Permissions_livechat-visitor_read": "Access Livechat visitor information",
"Apps_Permissions_livechat-visitor_write": "Modify Livechat visitor information",
"Apps_Permissions_message_read": "Access messages",
"Apps_Permissions_message_write": "Send and modify messages",
"Apps_Permissions_networking": "Access to this server network",
"Apps_Permissions_persistence": "Store internal data in the database",
"Apps_Permissions_room_read": "Access room information",
"Apps_Permissions_room_write": "Create and modify rooms",
"Apps_Permissions_scheduler": "Register and maintain scheduled jobs",
"Apps_Permissions_server-setting_read": "Access settings in this server",
"Apps_Permissions_server-setting_write": "Modify settings in this server",
"Apps_Permissions_slashcommand": "Register new slash commands",
"Apps_Permissions_ui_interact": "Interact with the UI",
"Apps_Permissions_upload_read": "Access files uploaded to this server",
"Apps_Permissions_upload_write": "Upload files to this server",
"Apps_Permissions_user_read": "Access user information",
"Apps_Permissions_user_write": "Modify user information",
"Apps_Private_App_Is_Exempt": "{{appName}} is already installed and exempt from the app limit policy.\nExempted apps cannot be updated.",
"Apps_Settings": "App's Settings",
"Apps_User_Already_Exists": "The username \"{{username}}\" is already being used. Rename or remove the user using it to install this App",
"Apps_WhatIsIt": "Apps: What Are They?",
"Apps_WhatIsIt_paragraph1": "A new icon in the administration area! What does this mean and what are Apps?",
"Apps_WhatIsIt_paragraph2": "First off, Apps in this context do not refer to the mobile applications. In fact, it would be best to think of them in terms of plugins or advanced integrations.",
"Apps_WhatIsIt_paragraph3": "Secondly, they are dynamic scripts or packages which will allow you to customize your Rocket.Chat instance without having to fork the codebase. But do keep in mind, this is a new feature set and due to that it might not be 100% stable. Also, we are still developing the feature set so not everything can be customized at this point in time. For more information about getting started developing an app, go here to read:",
"Apps_WhatIsIt_paragraph4": "But with that said, if you are interested in enabling this feature and trying it out then here click this button to enable the Apps system.",
"Apps_context_enterprise": "Enterprise",
"Apps_context_explore": "Explore",
"Apps_context_installed": "Installed",
"Apps_context_premium": "Premium",
"Apps_context_private": "Private Apps",
"Apps_context_requested": "Requested",
"Apps_disabled_when_Enterprise_trial_ended": "Apps disabled when Enterprise trial ended",
"Apps_disabled_when_Premium_trial_ended": "Apps disabled when Premium plan trial ended",
"Apps_disabled_when_Premium_trial_ended_description": "Community workspaces can enable up to 5 marketplace apps. Private apps can only be enabled in premium plans. Ask your workspace admin to reenable apps.",
"Apps_disabled_when_Premium_trial_ended_description_admin": "Community workspaces can enable up to 5 marketplace apps. Private apps can only be enabled in premium plans. Reenable the apps you require.",
"Archive": "Archive",
"Archived": "Archived",
"Are_you_sure": "Are you sure?",
"Are_you_sure_delete_department": "Are you sure you want to delete this department? This action cannot be undone. Please enter the department name to confirm.",
"Are_you_sure_you_want_to_clear_all_unread_messages": "Are you sure you want to clear all unread messages?",
"Are_you_sure_you_want_to_close_this_chat": "Are you sure you want to close this chat?",
"Are_you_sure_you_want_to_delete_this_record": "Are you sure you want to delete this record?",
"Are_you_sure_you_want_to_delete_your_account": "Are you sure you want to delete your account?",
"Are_you_sure_you_want_to_disable_Facebook_integration": "Are you sure you want to disable Facebook integration?",
"Are_you_sure_you_want_to_pin_this_message": "Are you sure you want to pin this message?",
"Are_you_sure_you_want_to_reset_the_name_of_all_priorities": "Are you sure you want to reset the name of all priorities?",
"Ask_enable_advanced_contact_profile": "Ask your workspace admin to enable advanced contact profile",
"Asset_preview": "Asset preview",
"Assets": "Assets",
"Assets_Description": "Modify your workspace's logo, icon, favicon and more.",
"Assets_livechat_widget_logo": "Livechat widget logo (svg, png, jpg)",
"Assign_admin": "Assigning admin",
"Assign_extension": "Assign extension",
"Assign_new_conversations_to_bot_agent": "Assign new conversations to bot agent",
"Assign_new_conversations_to_bot_agent_description": "The routing system will attempt to find a bot agent before addressing new conversations to a human agent.",
"Associate": "Associate",
"Associate_Agent": "Associate Agent",
"Associate_Agent_to_Extension": "Associate Agent to Extension",
"Associate_Extension": "Associate Extension",
"Associate_User_to_Extension": "Associate User to Extension",
"At_least_one_added_token_is_required_by_the_user": "At least one added token is required by the user",
"AtlassianCrowd": "Atlassian Crowd",
"AtlassianCrowd_Description": "Integrate Atlassian Crowd.",
"Attachment_File_Uploaded": "File Uploaded",
"Attribute_handling": "Attribute handling",
"Audio": "Audio",
"Audio_Notification_Value_Description": "Can be any custom sound or the default ones: beep, chelle, ding, droplet, highbell, seasons",
"Audio_Notifications_Default_Alert": "Audio Notifications Default Alert",
"Audio_Notifications_Value": "Default Message Notification Audio",
"Audio_message": "Audio message",
"Audio_record": "Audio record",
"Audio_recorder": "Audio recorder",
"Audios": "Audios",
"Audit": "Audit",
"Auditing": "Auditing",
"Auth": "Auth",
"Auth_Token": "Auth Token",
"Authentication": "Authentication",
"Author": "Author",
"Author_Information": "Author Information",
"Author_Site": "Author site",
"Authorization_URL": "Authorization URL",
"Authorize": "Authorize",
"Authorize_access_to_your_account": "Authorize access to your account",
"AutoLinker": "AutoLinker",
"AutoLinker_Email": "AutoLinker Email",
"AutoLinker_Phone": "AutoLinker Phone",
"AutoLinker_Phone_Description": "Automatically linked for Phone numbers. e.g. `(123)456-7890`",
"AutoLinker_StripPrefix": "AutoLinker Strip Prefix",
"AutoLinker_StripPrefix_Description": "Short display. e.g. https://rocket.chat => rocket.chat",
"AutoLinker_UrlsRegExp": "AutoLinker URL Regular Expression",
"AutoLinker_Urls_Scheme": "AutoLinker Scheme:// URLs",
"AutoLinker_Urls_TLD": "AutoLinker TLD URLs",
"AutoLinker_Urls_www": "AutoLinker 'www' URLs",
"AutoTranslate": "Auto-Translate",
"AutoTranslate_APIKey": "API Key",
"AutoTranslate_AutoEnableOnJoinRoom": "Auto-Translate for non-default language members",
"AutoTranslate_AutoEnableOnJoinRoom_Description": "If enabled, whenever a user with a language preference different than the workspace default joins a room, it will be automatically translated for them.",
"AutoTranslate_Change_Language_Description": "Changing the auto-translate language does not translate previous messages.",
"AutoTranslate_DeepL": "DeepL",
"AutoTranslate_Disabled_for_room": "Auto-translate disabled for #{{roomName}}",
"AutoTranslate_Enabled": "Enable Auto-Translate",
"AutoTranslate_Enabled_Description": "Enabling auto-translation will allow people with the `auto-translate` permission to have all messages automatically translated into their selected language. Fees may apply.",
"AutoTranslate_Enabled_for_room": "Auto-translate enabled for #{{roomName}}",
"AutoTranslate_Google": "Google",
"AutoTranslate_Microsoft": "Microsoft",
"AutoTranslate_Microsoft_API_Key": "Ocp-Apim-Subscription-Key",
"AutoTranslate_ServiceProvider": "Service Provider",
"AutoTranslate_language_set_to": "Auto-translate language set to {{language}}",
"Auto_Load_Images": "Auto Load Images",
"Auto_Selection": "Auto Selection",
"Auto_Translate": "Auto-Translate",
"Automatic_Translation": "Automatic Translation",
"Automatic_translation_not_available": "Automatic translation not available",
"Automatic_translation_not_available_info": "This room has E2E encryption enabled, translation cannot work with encrypted messages",
"Available": "Available",
"Available_agents": "Available agents",
"Available_departments": "Available Departments",
"Available_extensions": "Available extensions",
"Avatar": "Avatar",
"Avatar_URL": "Avatar URL",
"Avatar_changed_successfully": "Avatar changed successfully",
"Avatar_format_invalid": "Invalid Format. Only image type is allowed",
"Avatar_url_invalid_or_error": "The url provided is invalid or not accessible. Please try again, but with a different url.",
"Avatars": "Avatars",
"Avg_chat_duration": "Average of Chat Duration",
"Avg_first_response_time": "Average of First Response Time",
"Avg_of_abandoned_chats": "Average of Abandoned Chats",
"Avg_of_available_service_time": "Average of Service Available Time",
"Avg_of_chat_duration_time": "Average of Chat Duration Time",
"Avg_of_service_time": "Average of Service Time",
"Avg_of_waiting_time": "Average of Waiting Time",
"Avg_reaction_time": "Average of Reaction Time",
"Avg_response_time": "Average of Response Time",
"Awaiting_confirmation": "Awaiting confirmation",
"Away": "Away",
"BBB_Enable_Teams": "Enable for Teams",
"BBB_End_Meeting": "End Meeting",
"BBB_Join_Meeting": "Join Meeting",
"BBB_Start_Meeting": "Start Meeting",
"BBB_Video_Call": "BBB Video Call",
"BBB_You_have_no_permission_to_start_a_call": "You have no permission to start a call",
"Back": "Back",
"Back_in_history": "Back in history",
"Back_to_canned_responses": "Back to canned responses",
"Back_to_Manage_Apps": "Back to Manage Apps",
"Back_to__roomName__channel": "Back to {{roomName}} channel",
"Back_to__roomName__team": "Back to {{roomName}} team",
"Back_to_applications": "Back to applications",
"Back_to_calendar": "Back to calendar",
"Back_to_chat": "Back to chat",
"Back_to_home": "Back to home",
"Back_to_imports": "Back to imports",
"Back_to_integration_detail": "Back to the integration detail",
"Back_to_integrations": "Back to integrations",
"Back_to_login": "Back to login",
"Back_to_permissions": "Back to permissions",
"Back_to_threads": "Back to threads",
"Backup_codes": "Backup codes",
"Be_the_first_to_join": "Be the first to join",
"Belongs_To": "Belongs To",
"Best_first_response_time": "Best first response time",
"Beta_feature_Depends_on_Video_Conference_to_be_enabled": "Beta feature. Depends on Video Conference to be enabled.",
"Better": "Better",
"Bio": "Bio",
"Bio_Placeholder": "Bio Placeholder",
"Block": "Block",
"Block_IP_Address": "Block IP Address",
"Block_Multiple_Failed_Logins_Attempts_Until_Block_By_Ip": "Amount of failed attempts before blocking IP address",
"Block_Multiple_Failed_Logins_Attempts_Until_Block_by_User": "Amount of failed attempts before blocking user",
"Block_Multiple_Failed_Logins_By_Ip": "Block failed login attempts by IP",
"Block_Multiple_Failed_Logins_By_User": "Block failed login attempts by Username",
"Block_Multiple_Failed_Logins_Enable_Collect_Login_data_Description": "Stores IP and username from log in attempts to a collection on database",
"Block_Multiple_Failed_Logins_Enabled": "Enable collect log in data",
"Block_Multiple_Failed_Logins_Ip_Whitelist": "IP Whitelist",
"Block_Multiple_Failed_Logins_Ip_Whitelist_Description": "Comma-separated list of whitelisted IPs",
"Block_Multiple_Failed_Logins_Notify_Failed": "Notify of failed login attempts",
"Block_Multiple_Failed_Logins_Notify_Failed_Channel": "Channel to send the notifications",
"Block_Multiple_Failed_Logins_Notify_Failed_Channel_Desc": "This is where notifications will be received. Make sure the channel exists. The channel name should not include # symbol",
"Block_Multiple_Failed_Logins_Time_To_Unblock_By_Ip_In_Minutes": "Duration of IP address block (in minutes)",
"Block_Multiple_Failed_Logins_Time_To_Unblock_By_Ip_In_Minutes_Description": "This is the time the IP address is blocked by, and the time in which the failed attempts can happen before the counter resets",
"Block_Multiple_Failed_Logins_Time_To_Unblock_By_User_In_Minutes": "Duration of user block (in minutes)",
"Block_Multiple_Failed_Logins_Time_To_Unblock_By_User_In_Minutes_Description": "This is the time the user is blocked by, and the time in which the failed attempts can happen before the counter resets",
"Block_User": "Block User",
"Block_channel": "Block channel",
"Block_channel_description": "Are you sure you want to block this channel? Messages from this conversation will no longer reach this workspace.",
"Blockchain": "Blockchain",
"Blocked": "Blocked",
"Blocked_IP_Addresses": "Blocked IP addresses",
"Blockstack": "Blockstack",
"Blockstack_Auth_Description": "Auth description",
"Blockstack_ButtonLabelText": "Button label text",
"Blockstack_Description": "Give workspace members the ability to sign in without relying on any third parties or remote servers.",
"Blockstack_Generate_Username": "Generate username",
"Body": "Body",
"Bold": "Bold",
"Bot": "Bot",
"BotHelpers_userFields": "User Fields",
"BotHelpers_userFields_Description": "CSV of user fields that can be accessed by bots helper methods.",
"Bots": "Bots",
"Bots_Description": "Set the fields that can be referenced and used when developing bots.",
"Branch": "Branch",
"Broadcast": "Broadcast",
"Broadcast_Connected_Instances": "Broadcast Connected Instances",
"Broadcast_channel": "Broadcast Channel",
"Broadcast_channel_Description": "Only authorized users can write new messages, but the other users will be able to reply",
"Broadcast_hint_enabled": "Only {{roomType}} owners can write new messages but anyone can reply in a thread",
"Broadcasting_api_key": "Broadcasting API Key",
"Broadcasting_client_id": "Broadcasting Client ID",
"Broadcasting_client_secret": "Broadcasting Client Secret",
"Broadcasting_enabled": "Broadcasting Enabled",
"Broadcasting_media_server_url": "Broadcasting Media Server URL",
"Browse_Files": "Browse Files",
"Browser": "Browser",
"Browser_does_not_support_audio_element": "Your browser does not support the audio element.",
"Browser_does_not_support_recording_video": "Your browser does not support recording video",
"Browser_does_not_support_video_element": "Your browser does not support the video element.",
"Bugsnag_api_key": "Bugsnag API Key",
"Build_Environment": "Build Environment",
"Bundles": "Bundles",
"Busiest_day": "Busiest Day",
"Busiest_time": "Busiest Time",
"Business_Hour": "Business Hour",
"Business_Hour_Removed": "Business Hour Removed",
"Business_Hours": "Business Hours",
"Business_hours_enabled": "Business hours enabled",
"Business_hours_is_disabled": "Business hours is disabled",
"Business_hours_is_disabled_description": "Enable business hours at the workspace admin panel to let customers know when you're available and when can they expect a response.",
"Business_hours_updated": "Business hours updated",
"Business_hours_will_update_automatically": "Business hours will update automatically",
"Busy": "Busy",
"Buy": "Buy",
"Buy_more": "Buy more",
"Buy_more_seats": "Buy more seats",
"By": "By",
"CAS": "CAS",
"CAS_Creation_User_Enabled": "Allow user creation",
"CAS_Creation_User_Enabled_Description": "Allow CAS User creation from data provided by the CAS ticket.",
"CAS_Description": "Central Authentication Service allows members to use one set of credentials to sign in to multiple sites over multiple protocols.",
"CAS_Login_Layout": "CAS Login Layout",
"CAS_Sync_User_Data_Enabled": "Always Sync User Data",
"CAS_Sync_User_Data_Enabled_Description": "Always synchronize external CAS User data into available attributes upon login. Note: Attributes are always synced upon account creation anyway.",
"CAS_Sync_User_Data_FieldMap": "Attribute Map",
"CAS_Sync_User_Data_FieldMap_Description": "Use this JSON input to build internal attributes (key) from external attributes (value). External attribute names enclosed with '%' will interpolated in value strings. \nExample, `{\"email\":\"%email%\", \"name\":\"%firstname%, %lastname%\"}` \n \nThe attribute map is always interpolated. In CAS 1.0 only the `username` attribute is available. Available internal attributes are: username, name, email, rooms; rooms is a comma separated list of rooms to join upon user creation e.g: `{\"rooms\": \"%team%,%department%\"}` would join CAS users on creation to their team and department channel.",
"CAS_autoclose": "Autoclose Login Popup",
"CAS_base_url": "SSO Base URL",
"CAS_base_url_Description": "The base URL of your external SSO service e.g: `https://sso.example.undef/sso/`",
"CAS_button_color": "Login Button Background Color",
"CAS_button_label_color": "Login Button Text Color",
"CAS_button_label_text": "Login Button Label",
"CAS_enabled": "Enabled",
"CAS_login_url": "SSO Login URL",
"CAS_login_url_Description": "The login URL of your external SSO service e.g: `https://sso.example.undef/sso/login`",
"CAS_popup_height": "Login Popup Height",
"CAS_popup_width": "Login Popup Width",
"CAS_trust_username": "Trust CAS username",
"CAS_trust_username_description": "When enabled, Rocket.Chat will trust that any username from CAS belongs to the same user on Rocket.Chat. \nThis may be needed if a user is renamed on CAS, but may also allow people to take control of Rocket.Chat accounts by renaming their own CAS users.",
"CAS_version": "CAS Version",
"CAS_version_Description": "Only use a supported CAS version supported by your CAS SSO service.",
"CDN_JSCSS_PREFIX": "CDN Prefix for JS/CSS",
"CDN_PREFIX": "CDN Prefix",
"CDN_PREFIX_ALL": "Use CDN Prefix for all assets",
"COPY_TO_CLIPBOARD": "COPY TO CLIPBOARD",
"CRM_Integration": "CRM Integration",
"CROWD_Allow_Custom_Username": "Allow custom username in Rocket.Chat",
"CROWD_Reject_Unauthorized": "Reject Unauthorized",
"CSV": "CSV",
"Calendar_BusyStatus_Enabled": "Outlook calendar status sync",
"Calendar_BusyStatus_Enabled_Description": "Automatically sets user status to busy during scheduled Outlook meetings and returns it to the previous status afterward.",
"Calendar_MeetingUrl_Regex": "Meeting url Regular Expression",
"Calendar_MeetingUrl_Regex_Description": "Expression used to detect meeting URLs in event descriptions. The first matching group with a valid url will be used. HTML encoded urls will be decoded automatically.",
"Calendar_settings": "Calendar settings",
"Call": "Call",
"Call_Already_Ended": "Call Already Ended",
"Call_Information": "Call Information",
"Call_again": "Call again",
"Call_back": "Call back",
"Call_declined": "Call Declined!",
"Call_ended": "Call ended",
"Call_history_provides_a_record_of_when_calls_took_place_and_who_joined": "Call history provides a record of when calls took place and who joined.",
"Call_not_found": "Call not found",
"Call_not_found_error": "This could happen when the call URL is not valid, or you're having connection issues. Please check with the source of the call URL and try again, or talk to your workspace administrator if the problem persists",
"Call_number": "Call number",
"Call_number_premium_only": "Call number (Premium plans only)",
"Call_ongoing": "Call ongoing",
"Call_provider": "Call Provider",
"Call_ringer_volume": "Call ringer volume",
"Call_ringer_volume_hint": "For all incoming voice and video call notifications",
"Call_started": "Call started",
"Call_terminated": "Call terminated",
"Call_transfered_to__name__": "Call transfered to {{name}}",
"Call_unavailable_for_federation": "Call is unavailable for Federated rooms",
"Call_was_not_answered": "Call was not answered",
"Caller": "Caller",
"Caller_Id": "Caller ID",
"Calling": "Calling",
"Calling__roomName__": "Calling {{roomName}}",
"Calls": "Calls",
"Calls_in_queue": "{{calls}} call in queue",
"Calls_in_queue_one": "{{count}} call in queue",
"Calls_in_queue_other": "{{count}} calls in queue",
"Calls_in_queue_zero": "Queue is empty",
"Cam_off": "Cam Off",
"Cam_on": "Cam On",
"Camera_access_not_allowed": "Camera access was not allowed, please check your browser settings.",
"Cancel": "Cancel",
"Cancel__planName__subscription": "Cancel {{planName}} subscription",
"Cancel_message_input": "Cancel",
"Cancel_recording": "Cancel recording",
"Cancel_subscription": "Cancel subscription",
"Cancel_subscription_message": "<strong>This workspace will downgrage to Community and lose free access to premium capabilities.</strong><br/><br/> While you can keep using Rocket.Chat, your team will lose access to unlimited mobile push notifications, read receipts, marketplace apps <4>and other capabilities</4>.",
"Canceled": "Canceled",
"Canned_Response_Created": "Canned Response created",
"Canned_Response_Delete_Warning": "Deleting a canned response cannot be undone.",
"Canned_Response_Removed": "Canned Response Removed",
"Canned_Response_Sharing_Department_Description": "Anyone in the selected department can access this canned response",
"Canned_Response_Sharing_Private_Description": "Only you and Omnichannel managers can access this canned response",
"Canned_Response_Sharing_Public_Description": "Anyone can access this canned response",
"Canned_Response_Updated": "Canned Response updated",
"Canned_Responses": "Canned Responses",
"Canned_Responses_Enable": "Enable Canned Responses",
"Cannot_disable_while_on_call": "Can't change status during calls ",
"Cannot_invite_users_to_direct_rooms": "Cannot invite users to direct rooms",
"Cannot_open_conversation_with_yourself": "Cannot Direct Message with yourself",
"Cannot_share_your_location": "Cannot share your location...",
"Cannot_upload_file_character_limit": "Cannot upload file, description is over the {{count}} character limit",
"Cant_join": "Can't join",
"Categories": "Categories",
"Categories*": "Categories*",
"Certificates_and_Keys": "Certificates and Keys",
"Change_Room_Type": "Changing the Room Type",
"Changed_from": "Changed from",
"Changed_to": "Changed to",
"Changing_email": "Changing email",
"Channel": "Channel",
"Channel_Archived": "Channel with name `#%s` has been archived successfully",
"Channel_Export": "Channel Export",
"Channel_Name_Placeholder": "Please enter channel name...",
"Channel_Unarchived": "Channel with name `#%s` has been Unarchived successfully",
"Channel__roomName__": "Channel {{roomName}}.",
"Channel_already_Unarchived": "Channel with name `#%s` is already in Unarchived state",
"Channel_already_exist": "The channel `#%s` already exists.",
"Channel_already_exist_static": "The channel already exists.",
"Channel_created": "Channel `#%s` created.",
"Channel_doesnt_exist": "The channel `#%s` does not exist.",
"Channel_info": "Channel info",
"Channel_name": "Channel Name",
"Channel_not_joined": "Channel not joined",
"Channel_to_listen_on": "Channel to listen on",
"Channel_what_is_this_channel_about": "What is this channel about?",
"Channels": "Channels",
"Channels_added": "Channels added sucessfully",
"Channels_are_where_your_team_communicate": "Channels are where your team communicate",
"Channels_list": "List of public channels",
"Chart": "Chart",
"Chat_Duration": "Chat Duration",
"Chat_History": "Chat History",
"Chat_Now": "Chat Now",
"Chat_On_Hold": "Chat On-Hold",
"Chat_On_Hold_Successfully": "This chat was successfully placed On-Hold",
"Chat_button": "Chat button",
"Chat_close": "Chat Close",
"Chat_closed": "Chat closed",
"Chat_closed_by_agent": "Chat closed by agent",
"Chat_closed_successfully": "Chat closed successfully",
"Chat_opened_by_visitor": "Chat opened by the visitor",
"Chat_queued": "Chat Queued",
"Chat_removed": "Chat Removed",
"Chat_resumed": "Chat Resumed",
"Chat_start": "Chat Start",
"Chat_started": "Chat started",
"Chat_taken": "Chat Taken",
"Chat_transcript": "Chat transcript",
"Chat_window": "Chat window",
"Chat_with_leader": "Chat with leader",
"Chatops_Enabled": "Enable Chatops",
"Chatops_Title": "Chatops Panel",
"Chatops_Username": "Chatops Username",
"Chats": "Chats",
"Chats_removed": "Chats Removed",
"Check_All": "Check All",