-
Notifications
You must be signed in to change notification settings - Fork 11.1k
/
Copy pathnl.i18n.json
2831 lines (2831 loc) · 185 KB
/
nl.i18n.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
{
"403": "Verboden",
"500": "Interne Server Fout",
"#channel": "#kanaal",
"0_Errors_Only": "0 - Alleen fouten",
"1_Errors_and_Information": "1 - Fouten en infomatie",
"2_Erros_Information_and_Debug": "2 - Fouten, informatie en debuginformatie",
"@username": "@username",
"@username_message": "@gebruikersnaam <message>",
"__username__is_no_longer__role__defined_by__user_by_": "__username__ is niet langer __role__, door __user_by__",
"__username__was_set__role__by__user_by_": "__username__ werd __role__ instellen door __user_by__",
"Accept": "Aanvaarden",
"Accept_incoming_livechat_requests_even_if_there_are_no_online_agents": "Accepteer inkomende livechat-verzoeken, ook als er geen online agenten zijn",
"Accept_with_no_online_agents": "Accepteer zonder online agenten",
"access-mailer": "Open Mailer Screen",
"access-mailer_description": "Toestemming voor het verzenden van massa-e-mail naar alle gebruikers.",
"access-permissions": "Toegang machtigingen scherm",
"access-permissions_description": "Wijzig de rechten voor verschillende rollen.",
"Access_not_authorized": "Toegang niet geautoriseerd",
"Access_Token_URL": "Access Token URL",
"Accessing_permissions": "Toegang tot machtigingen",
"Account_SID": "account SID",
"Accounts": "Accounts",
"Accounts_Admin_Email_Approval_Needed_Default": "<p>De gebruiker <b>[naam] ([email])</b>is geregistreerd.</p><p>Controleer \"Beheer ->Gebruikers\" om deze te activeren of verwijderen.</p>",
"Accounts_Admin_Email_Approval_Needed_Subject_Default": "Een nieuwe gebruiker geregistreerd en moet worden goedgekeurd",
"Accounts_Admin_Email_Approval_Needed_With_Reason_Default": "<p>De gebruiker <b>[naam] ([email])</b>is geregistreerd.</p><p>Reden: <b>[reden]</b></p><p>Controleer \"Beheer ->Gebruikers\" om deze te activeren of verwijderen.</p>",
"Accounts_AllowAnonymousRead": "Anoniem lezen toestaan",
"Accounts_AllowAnonymousWrite": "Anoniem schrijven toestaan",
"Accounts_AllowDeleteOwnAccount": "Sta gebruikers toe om eigen account te verwijderen",
"Accounts_AllowedDomainsList": "Toegestaan Domeinen Lijst",
"Accounts_AllowedDomainsList_Description": "Komma-gescheiden lijst van toegestande domeinen",
"Accounts_AllowEmailChange": "Sta e-mail wijzigen toe",
"Accounts_AllowPasswordChange": "Toestaan wachtwoord wijzigen",
"Accounts_AllowRealNameChange": "Sta naamverandering toe",
"Accounts_AllowUserAvatarChange": "Sta wijzigen van gebruikers Avatar toe",
"Accounts_AllowUsernameChange": "Toestaan wijzigen gebruikersnaam",
"Accounts_AllowUserProfileChange": "Sta wijzen van gebruikers profiel toe",
"Accounts_AvatarCacheTime": "Avatar cache tijd",
"Accounts_AvatarCacheTime_description": "Het aantal seconden dat het http-protocol wordt verteld om de avatarafbeeldingen in de cache op te slaan.",
"Accounts_AvatarResize": "Wijzig Avatar grootte",
"Accounts_AvatarSize": "Avatar grootte",
"Accounts_BlockedDomainsList": "Geblokkeerde domeinen List",
"Accounts_BlockedDomainsList_Description": "Door komma's gescheiden lijst van geblokkeerde domeinen",
"Accounts_BlockedUsernameList": "Geblokkeerde Gebruikersnaam List",
"Accounts_BlockedUsernameList_Description": "Komma's gescheiden lijst met geblokkeerde gebruikersnamen (niet hoofdlettergevoelig)",
"Accounts_CustomFields_Description": "Moet een geldige JSON zijn waarbij sleutels de veldnamen zijn die een woordenboek met veldinstellingen bevatten. Voorbeeld:<br/><code>{\n\"rol\": {\n\"type\": \"selecteren\",\n\"defaultValue\": \"student\",\n\"opties\": [\"leraar\", \"student\"],\n\"vereist\": waar,\n\"modifyRecordField\": {\n\"array\": waar,\n\"veld\": \"rollen\"\n}\n},\n\"twitter\": {\n\"typ Text\",\n\"vereist\": waar,\n\"MinLength\": 2,\n\"maxLengte\": 10\n}\n}</code>",
"Accounts_CustomFieldsToShowInUserInfo": "Aangepaste velden om weer te geven in gebruikersinfo",
"Accounts_Default_User_Preferences": "Standaard gebruikersvoorkeuren",
"Accounts_Default_User_Preferences_audioNotifications": "Geluidsmeldingen Standaardwaarschuwing",
"Accounts_Default_User_Preferences_desktopNotifications": "Desktopmeldingen Standaardwaarschuwing",
"Accounts_Default_User_Preferences_mobileNotifications": "Mobiele meldingen Standaardwaarschuwing",
"Accounts_Default_User_Preferences_not_available": "Het ophalen van gebruikersvoorkeuren is mislukt omdat ze nog niet door de gebruiker zijn ingesteld",
"Accounts_DefaultUsernamePrefixSuggestion": "Standaard gebruikersnaam Prefix Suggestie",
"Accounts_denyUnverifiedEmail": "Weiger ongeverifieerde e-mail",
"Accounts_Email_Activated": "[naam]<br/><br/><p>Uw account is geactiveerd.</p>",
"Accounts_Email_Activated_Subject": "Account geactiveerd",
"Accounts_Email_Approved": "[naam]<br/><br/><p>Uw account is goedgekeurd.</p>",
"Accounts_Email_Approved_Subject": "Account goedgekeurd",
"Accounts_Email_Deactivated": "[naam]<br/><br/><p>Uw account is gedeactiveerd.</p>",
"Accounts_Enrollment_Email_Default": "<h1>Welkom bij <strong>[Site_Name]</strong></h1><p>Ga naar <a href=\"[Site_URL]\">[Site_URL]</a> en probeer de beste open source chat-oplossing die vandaag beschikbaar zijn! </p>",
"Accounts_Email_Deactivated_Subject": "Account gedeactiveerd",
"Accounts_EmailVerification": "E-mail verificatie",
"Accounts_EmailVerification_Description": "Zorg ervoor dat u de juiste SMTP-instellingen om deze functie te gebruiken",
"Accounts_Enrollment_Email_Subject_Default": "Welkom bij [Site_Name]",
"Accounts_Enrollment_Email": "Registratie E-mail",
"Accounts_Enrollment_Email_Description": "You may use [name], [fname], [lname] for the user's full name, first name or last name, respectively.<br/>You may use [email] for the user's e-mail.",
"Accounts_ForgetUserSessionOnWindowClose": "Gebruikerssessie vergeten bij sluiten van venster",
"Accounts_Iframe_api_method": "API-methode",
"Accounts_Iframe_api_url": "Api Url",
"Accounts_iframe_enabled": "Ingeschakeld",
"Accounts_iframe_url": "iframe Url",
"Accounts_LoginExpiration": "Login Vervaltermijn in Dagen",
"Accounts_ManuallyApproveNewUsers": "Handmatig goedkeuren Nieuwe Gebruikers",
"Accounts_OAuth_Custom_Authorize_Path": "Machtigen Path",
"Accounts_OAuth_Custom_Button_Color": "Knop Color",
"Accounts_OAuth_Custom_Button_Label_Color": "Knop Tekst Kleur",
"Accounts_OAuth_Custom_Button_Label_Text": "Knop Tekst",
"Accounts_OAuth_Custom_Enable": "Inschakelen",
"Accounts_OAuth_Custom_id": "Id",
"Accounts_OAuth_Custom_Identity_Path": "Identiteit Path",
"Accounts_OAuth_Custom_Identity_Token_Sent_Via": "Identity Token Sent Via",
"Accounts_OAuth_Custom_Login_Style": "Login Stijl",
"Accounts_OAuth_Custom_Merge_Users": "Gebruikers samenvoegen",
"Accounts_OAuth_Custom_Scope": "strekking",
"Accounts_OAuth_Custom_Secret": "Geheim",
"Accounts_OAuth_Custom_Token_Path": "Token Path",
"Accounts_OAuth_Custom_Token_Sent_Via": "Token Sent Via",
"Accounts_OAuth_Custom_Username_Field": "Gebruikersnaam veld",
"Accounts_OAuth_Drupal": "Drupal Login Enabled",
"Accounts_OAuth_Drupal_callback_url": "Drupal oAuth2 URI omleiden",
"Accounts_OAuth_Drupal_id": "Drupal oAuth2 Client-ID",
"Accounts_OAuth_Drupal_secret": "Drupal oAuth2 Client Secret",
"Accounts_OAuth_Facebook": "Facebook Inloggen",
"Accounts_OAuth_Facebook_callback_url": "Facebook Callback URL",
"Accounts_OAuth_Facebook_id": "Facebook App Id",
"Accounts_OAuth_Facebook_secret": "Facebook Secret",
"Accounts_OAuth_Github": "OAuth Ingeschakeld",
"Accounts_OAuth_Github_callback_url": "Github Callback URL",
"Accounts_OAuth_GitHub_Enterprise": "OAuth Ingeschakeld",
"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_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_secret": "Client Secret",
"Accounts_OAuth_Google": "Google Inloggen",
"Accounts_OAuth_Google_callback_url": "Google Callback URL",
"Accounts_OAuth_Google_id": "Google Id",
"Accounts_OAuth_Google_secret": "Google Secret",
"Accounts_OAuth_Linkedin": "LinkedIn Inloggen",
"Accounts_OAuth_Linkedin_callback_url": "Linkedin Callback URL",
"Accounts_OAuth_Linkedin_id": "LinkedIn Id",
"Accounts_OAuth_Linkedin_secret": "LinkedIn Secret",
"Accounts_OAuth_Meteor": "Meteor Inloggen",
"Accounts_OAuth_Meteor_callback_url": "Meteor Callback URL",
"Accounts_OAuth_Meteor_id": "Meteor Id",
"Accounts_OAuth_Meteor_secret": "Meteor Secret",
"Accounts_OAuth_Proxy_host": "Proxy host",
"Accounts_OAuth_Proxy_services": "Proxyservices",
"Accounts_OAuth_Tokenpass": "Aanmelden bij Tokenpass",
"Accounts_OAuth_Tokenpass_callback_url": "Tokenpass Callback-URL",
"Accounts_OAuth_Tokenpass_id": "Tokenpass-ID",
"Accounts_OAuth_Tokenpass_secret": "Tokenpass geheim",
"Accounts_OAuth_Twitter": "Twitter Inloggen",
"Accounts_OAuth_Twitter_callback_url": "Twitter Callback URL",
"Accounts_OAuth_Twitter_id": "Twitter Id",
"Accounts_OAuth_Twitter_secret": "Twitter Secret",
"Accounts_OAuth_Wordpress": "WordPress Inloggen",
"Accounts_OAuth_Wordpress_authorize_path": "Machtigen Path",
"Accounts_OAuth_Wordpress_callback_url": "WordPress Callback URL",
"Accounts_OAuth_Wordpress_id": "WordPress Id",
"Accounts_OAuth_Wordpress_identity_path": "Identiteit Path",
"Accounts_OAuth_Wordpress_identity_token_sent_via": "Identity Token Sent Via",
"Accounts_OAuth_Wordpress_scope": "strekking",
"Accounts_OAuth_Wordpress_secret": "WordPress Geheim (secret)",
"Accounts_OAuth_Wordpress_server_type_custom": "gewoonte",
"Accounts_OAuth_Wordpress_server_type_wordpress_com": "Wordpress.com",
"Accounts_OAuth_Wordpress_server_type_wp_oauth_server": "WP OAuth Server-plug-in",
"Accounts_OAuth_Wordpress_token_path": "Token Path",
"Accounts_Password_Policy_AtLeastOneLowercase": "Ten minste één kleine letters",
"Accounts_Password_Policy_AtLeastOneLowercase_Description": "Zorg ervoor dat een wachtwoord ten minste één kleine letter bevat.",
"Accounts_Password_Policy_AtLeastOneNumber": "Ten minste één nummer",
"Accounts_Password_Policy_AtLeastOneNumber_Description": "Dwing erop dat een wachtwoord ten minste één numeriek teken bevat.",
"Accounts_Password_Policy_AtLeastOneSpecialCharacter": "Ten minste één symbool",
"Accounts_Password_Policy_AtLeastOneSpecialCharacter_Description": "Dwing erop dat een wachtwoord ten minste één speciaal teken bevat.",
"Accounts_Password_Policy_AtLeastOneUppercase": "Ten minste één hoofdletter",
"Accounts_Password_Policy_AtLeastOneUppercase_Description": "Zorg ervoor dat een wachtwoord ten minste één kleine letter bevat.",
"Accounts_Password_Policy_Enabled": "Schakel wachtwoordbeleid in",
"Accounts_Password_Policy_Enabled_Description": "Indien ingeschakeld, moeten gebruikerswachtwoorden voldoen aan het beleid dat is uiteengezet. Opmerking: dit is alleen van toepassing op nieuwe wachtwoorden en niet op bestaande wachtwoorden.",
"Accounts_Password_Policy_ForbidRepeatingCharacters": "Verbied het herhalen van karakters",
"Accounts_Password_Policy_ForbidRepeatingCharacters_Description": "Garandeert dat wachtwoorden niet hetzelfde personage bevatten dat zich naast elkaar herhaalt.",
"Accounts_Password_Policy_ForbidRepeatingCharactersCount": "Max tekens herhalen",
"Accounts_Password_Policy_ForbidRepeatingCharactersCount_Description": "Het aantal keren dat een karakter kan worden herhaald voordat het niet is toegestaan.",
"Accounts_Password_Policy_MaxLength": "Maximale lengte",
"Accounts_Password_Policy_MaxLength_Description": "Garandeert dat wachtwoorden niet meer dan dit aantal tekens bevatten. Gebruik `-1` om uit te schakelen.",
"Accounts_Password_Policy_MinLength": "Minimale lengte",
"Accounts_Password_Policy_MinLength_Description": "Zorgt ervoor dat wachtwoorden ten minste zoveel tekens bevatten. Gebruik `-1` om uit te schakelen.",
"Accounts_PasswordReset": "Wachtwoord reset",
"Accounts_Registration_AuthenticationServices_Default_Roles": "Standaardrollen voor authenticatiediensten",
"Accounts_Registration_AuthenticationServices_Default_Roles_Description": "Standaardrollen (door komma's gescheiden) gebruikers worden gegeven bij registratie via authenticatieservices",
"Accounts_Registration_AuthenticationServices_Enabled": "Registration with Authentication Services",
"Accounts_RegistrationForm": "Registratieformulier",
"Accounts_RegistrationForm_Disabled": "Uitgeschakeld",
"Accounts_RegistrationForm_LinkReplacementText": "Registration Form Link Replacement Text",
"Accounts_RegistrationForm_Public": "Openbaar",
"Accounts_RegistrationForm_Secret_URL": "Geheime URL",
"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_RequireNameForSignUp": "Vereis naam tijdens registratie",
"Accounts_RequirePasswordConfirmation": "Vereist wachtwoordbevestiging",
"Accounts_SearchFields": "Velden die in Google Zoeken moeten worden beschouwd",
"Accounts_SetDefaultAvatar": "Standaard avatar instellen",
"Accounts_SetDefaultAvatar_Description": "Probeert de standaardavatar te bepalen op basis van OAuth-account of Gravatar",
"Accounts_ShowFormLogin": "Laat formulier-gebaseerd loginscherm zien",
"Accounts_TwoFactorAuthentication_Enabled": "Schakel twee-factorenauthenticatie in",
"Accounts_TwoFactorAuthentication_MaxDelta": "Maximale Delta",
"Accounts_UserAddedEmail_Default": "<h1>Welkom bij <strong>[Site_Name]</strong></h1><p> Ga naar <a href=\"[Site_URL]\">[Site_URL]</a> en probeer de beste open source chat-oplossing die vandaag beschikbaar zijn! </p><p> U kunt inloggen met uw e-mail: [email] en wachtwoord: [password]. U kan nodig zijn om het te veranderen na uw eerste login.",
"Accounts_TwoFactorAuthentication_MaxDelta_Description": "De maximale delta bepaalt hoeveel tokens op een bepaald moment geldig zijn. Tokens worden elke 30 seconden gegenereerd en zijn geldig voor (30 * Maximum Delta) seconden. <br/>Voorbeeld: met een Maximum Delta ingesteld op 10, kan elk token maximaal 300 seconden vóór of na de tijdstempel worden gebruikt. Dit is handig als de klok van de client niet correct is gesynchroniseerd met de server.",
"Accounts_UseDefaultBlockedDomainsList": "Gebruik Default geblokkeerde domeinen List",
"Accounts_UseDNSDomainCheck": "Gebruik DNS-domein controleren",
"Accounts_UserAddedEmailSubject_Default": "Je hebt toegevoegd aan [Site_Name]",
"Accounts_UserAddedEmail_Description": "U mag de volgende plaatshouders gebruiken: <br/><ul><li> [name], [fname], [lname] voor de volledige naam van de gebruiker, voornaam of achternaam, respectievelijk. </li><li> [email] voor e-mail van de gebruiker. </li><li> [password] voor het wachtwoord van de gebruiker. </li><li> [Site_Name] en [Site_URL] voor de toepassing Naam en URL respectievelijk. </li></ul>",
"Activate": "Activeren",
"Activity": "Activiteit",
"Add": "Toevoegen",
"add-oauth-service": "Voeg OAuth-service toe",
"add-oauth-service_description": "Toestemming om een nieuwe OAuth-dienst toe te voegen",
"add-user": "Voeg gebruiker toe",
"add-user-to-any-c-room": "Gebruiker toevoegen aan elk openbaar kanaal",
"add-user-to-any-c-room_description": "Toestemming om een gebruiker aan een openbaar kanaal toe te voegen",
"add-user-to-any-p-room": "Gebruiker toevoegen aan een privékanaal",
"add-user-to-any-p-room_description": "Toestemming om een gebruiker toe te voegen aan een privékanaal",
"add-user-to-joined-room": "Gebruiker toevoegen aan elk gekoppeld kanaal",
"add-user-to-joined-room_description": "Toestemming om een gebruiker toe te voegen aan een momenteel verbonden kanaal",
"add-user_description": "Toestemming om nieuwe gebruikers toe te voegen aan de server via het gebruikersscherm",
"Add_agent": "Voeg agent toe",
"Add_custom_oauth": "Voeg aangepaste OAuth toe",
"Add_Domain": "Voeg domein toe",
"Add_files_from": "Bestanden toevoegen van",
"Add_manager": "Manager toevoegen",
"Add_Role": "Rol toevoegen",
"Add_user": "Gebruikers toevoegen",
"Add_User": "Voeg gebruiker toe",
"Add_users": "Gebruikers toevoegen",
"Adding_OAuth_Services": "Het toevoegen van OAuth Services",
"Adding_permission": "toestemming te voegen",
"Adding_user": "gebruiker toevoegen",
"Additional_emails": "Extra e-mails",
"Additional_Feedback": "Extra feedback",
"additional_integrations_Bots": "Als je op zoek bent naar het integreren van je eigen bot, zoek dan niet verder dan onze Hubot-adapter. <a href='https://github.com/RocketChat/hubot-rocketchat' target='_blank'>https://github.com/RocketChat/hubot-rocketchat</a>",
"additional_integrations_Zapier": "Wilt u andere software en applicaties integreren met Rocket.Chat, maar heeft u geen tijd om het handmatig te doen? Dan stellen we voor om Zapier te gebruiken die we volledig ondersteunen. Lees er meer over in onze documentatie. <a href='https://rocket.chat/docs/administrator-guides/integrations/zapier/using-zaps/' target='_blank'>https://rocket.chat/docs/administrator-guides/integrations/zapier/using-zaps/</a>",
"Admin_Info": "Admin-info",
"Administration": "Administratie",
"Adult_images_are_not_allowed": "Volwassen afbeeldingen zijn niet toegestaan",
"Advocacy": "voorspraak",
"After_OAuth2_authentication_users_will_be_redirected_to_this_URL": "After OAuth2 authentication, users will be redirected to this URL",
"Agent": "Agent",
"Agent_added": "Agent toegevoegd",
"Agent_removed": "Agent verwijderd",
"Alerts": "Waarschuwingen",
"Alias": "Alias",
"Alias_Format": "Alias-indeling",
"Alias_Format_Description": "Importeer berichten van Slack met een alias; %s wordt vervangen door de gebruikersnaam van de gebruiker. Als deze leeg is, wordt er geen alias gebruikt.",
"Alias_Set": "Alias instellen",
"All": "Alle",
"All_added_tokens_will_be_required_by_the_user": "Alle toegevoegde tokens worden door de gebruiker vereist",
"All_channels": "Alle kanalen",
"All_logs": "Alle logs",
"All_messages": "alle berichten",
"All_users": "Alle gebruikers",
"All_users_in_the_channel_can_write_new_messages": "Alle gebruikers in het kanaal kunnen nieuwe berichten schrijven",
"Allow_Invalid_SelfSigned_Certs": "Sta Ongeldige Self-Signed Certs toe",
"Allow_Invalid_SelfSigned_Certs_Description": "Allow invalid and self-signed SSL certificate's for link validation and previews.",
"Allow_switching_departments": "Toestaan dat bezoekers van afdeling wisselen",
"Allow_Marketing_Emails": "Marketing-e-mails toestaan",
"Alphabetical": "Alfabetische",
"Always_open_in_new_window": "Altijd in een nieuw venster openen",
"Analytics": "Analytics",
"Analytics_features_enabled": "features Ingeschakeld",
"Analytics_features_messages_Description": "Tracks aangepaste gebeurtenissen die verband houden met acties die een gebruiker doet op berichten.",
"Analytics_features_rooms_Description": "Tracks aangepaste gebeurtenissen die verband houden met acties op een kanaal of groep (creëren, verlof, verwijderen).",
"Analytics_features_users_Description": "Tracks aangepaste gebeurtenissen die verband houden met acties met betrekking tot de gebruikers (wachtwoord reset keer, profielfoto verandering, etc).",
"Analytics_Google": "Google Analytics",
"Analytics_Google_id": "Tracking-ID",
"and": "en",
"And_more": "En meer __length __",
"Animals_and_Nature": "Planten en dieren",
"Announcement": "Aankondiging",
"API": "API",
"API_Allow_Infinite_Count": "Laat alles komen",
"API_Allow_Infinite_Count_Description": "Moeten oproepen naar de REST API alles in één keer teruggeven?",
"API_Analytics": "Analytics",
"API_CORS_Origin": "CORS Origin",
"API_Default_Count": "Standaard aantal",
"API_Default_Count_Description": "Het standaardtelling voor REST API-resultaten als de consument dit niet heeft opgegeven.",
"API_Drupal_URL": "Drupal Server-URL",
"API_Drupal_URL_Description": "Voorbeeld: https://domain.com (exclusief trailing slash)",
"API_Embed": "Embed",
"API_Embed_Description": "Of voorbeelden van ingesloten koppelingen zijn ingeschakeld of niet wanneer een gebruiker een koppeling naar een website plaatst.",
"API_Embed_UserAgent": "Insluiten User Agent aanvragen",
"API_EmbedCacheExpirationDays": "Sluit Cache-verloopdagen in",
"API_EmbedDisabledFor": "Embed voor gebruikers uitschakelen",
"API_EmbedDisabledFor_Description": "Komma's gescheiden lijst van gebruikersnamen",
"API_EmbedIgnoredHosts": "Insluiten Genegeerd Hosts",
"API_EmbedIgnoredHosts_Description": "Komma's gescheiden lijst met hosts of CIDR adressen, bijv. 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": "Door komma's gescheiden lijst van poorten toegestaan voor het bekijken.",
"API_Enable_CORS": "Schakel CORS in",
"API_Enable_Direct_Message_History_EndPoint": "Schakel eindpunt eindpunt directe bericht in",
"API_Enable_Direct_Message_History_EndPoint_Description": "Dit maakt de `/ api / v1 / im.history.others` mogelijk, die het bekijken van directe berichten toestaat, verzonden door andere gebruikers waar de beller geen deel van uitmaakt.",
"API_Enable_Shields": "Schakel Shields in",
"API_Enable_Shields_Description": "Schakel shields beschikbaar op `/ api / v1 / shield.svg`",
"API_GitHub_Enterprise_URL": "Server URL",
"API_GitHub_Enterprise_URL_Description": "Voorbeeld: http://domain.com (exclusief slash)",
"API_Gitlab_URL": "GitLab URL",
"API_Shield_Types": "Schild typen",
"API_Shield_Types_Description": "Typen schilden die kunnen worden ingeschakeld als een door komma's gescheiden lijst, kies 'online', `kanaal` of` * `voor iedereen",
"API_Token": "API Token",
"API_Tokenpass_URL": "Tokenpass-server-URL",
"API_Tokenpass_URL_Description": "Voorbeeld: https://domain.com (exclusief trailing slash)",
"API_Upper_Count_Limit": "Max. Recordbedrag",
"API_Upper_Count_Limit_Description": "Wat is het maximale aantal records dat de REST-API moet retourneren (wanneer niet onbeperkt)?",
"API_User_Limit": "Gebruiker Limiet voor het toevoegen van alle gebruikers op kanaal",
"API_Wordpress_URL": "WordPress URL",
"Apiai_Key": "Api.ai Key",
"Apiai_Language": "Api.ai Taal",
"App_author_homepage": "startpagina van de auteur",
"App_Information": "App-informatie",
"App_Installation": "App-installatie",
"App_status_auto_enabled": "Ingeschakeld",
"App_status_compiler_error_disabled": "Uitgeschakeld: fout compiler",
"App_status_constructed": "Gebouwd",
"App_status_disabled": "Gehandicapte",
"App_status_error_disabled": "Uitgeschakeld: niet-afgevangen fout",
"App_status_initialized": "Begonnen",
"App_status_invalid_settings_disabled": "Uitgeschakeld: configuratie vereist",
"App_status_manually_disabled": "Uitgeschakeld: handmatig",
"App_status_manually_enabled": "Ingeschakeld",
"App_status_unknown": "Onbekend",
"App_support_url": "ondersteuning voor URL's",
"Appearance": "Uiterlijk",
"Application_added": "Applicatie toegevoegd",
"Application_Name": "Naam van de toepassing",
"Application_updated": "Applicatie bijgewerkt",
"Apply": "Solliciteren",
"Apply_and_refresh_all_clients": "Toe te passen en te vernieuwen alle cliënten",
"Apps": "Apps",
"Apps_Framework_enabled": "Schakel het app-framework in",
"Apps_Settings": "App-instellingen",
"Apps_WhatIsIt": "Apps: wat zijn ze?",
"Apps_WhatIsIt_paragraph1": "Een nieuw pictogram in het administratiegebied! Wat betekent dit en wat zijn apps?",
"Apps_WhatIsIt_paragraph2": "Allereerst verwijzen Apps in deze context niet naar de mobiele applicaties. In feite zou het het beste zijn om ze te beschouwen in termen van plug-ins of geavanceerde integraties.",
"Apps_WhatIsIt_paragraph3": "Ten tweede zijn het dynamische scripts of pakketten waarmee u uw Rocket.Chat-instantie kunt aanpassen zonder dat u de codebase hoeft af te vuren. Maar houd er rekening mee dat dit een nieuwe functieset is en daarom mogelijk niet 100%stabiel is. We zijn ook bezig met het ontwikkelen van de functieset, zodat niet alles op dit moment op maat gemaakt kan worden. Ga naar: voor meer informatie over het starten van het ontwikkelen van een app:",
"Apps_WhatIsIt_paragraph4": "Maar met dat gezegd, als je geïnteresseerd bent in het inschakelen van deze functie en het uitproberen, klik dan op deze knop om het Apps-systeem in te schakelen.",
"Archive": "Archiveren",
"archive-room": "Archiefkamer",
"archive-room_description": "Toestemming om een kanaal te archiveren",
"are_also_typing": "zijn ook aan het typen",
"are_typing": "zijn aan het typen",
"Are_you_sure": "Weet u het zeker?",
"Are_you_sure_you_want_to_delete_your_account": "Weet je zeker dat je je account wilt verwijderen?",
"Are_you_sure_you_want_to_disable_Facebook_integration": "Weet je zeker dat je Facebook-integratie wilt uitschakelen?",
"assign-admin-role": "Wijs beheerdersrol toe",
"assign-admin-role_description": "Toestemming om de beheerdersrol aan andere gebruikers toe te wijzen",
"Assign_admin": "Beheerder toewijzen",
"at": "op",
"At_least_one_added_token_is_required_by_the_user": "Ten minste één toegevoegd token is vereist door de gebruiker",
"AtlassianCrowd": "Atlassian Crowd",
"Attachment_File_Uploaded": "Bestand geüpload",
"Attribute_handling": "Behandeling van attributen",
"Audio": "audio",
"Audio_message": "Audio bericht",
"Audio_Notification_Value_Description": "Dit kan elk aangepast geluid zijn of standaard: beep, chelle, ding, droplet, highbell, seizoenen",
"Audio_Notifications_Default_Alert": "Geluidsmeldingen Standaardwaarschuwing",
"Audio_Notifications_Value": "Standaard berichtmelding Audio",
"Auth_Token": "Auth Token",
"Author": "Auteur",
"Author_Information": "Auteurs informatie",
"Authorization_URL": "Authorization URL",
"Authorize": "Authorizeren",
"auto-translate": "Automatisch vertalen",
"auto-translate_description": "Toestemming om het automatische vertaalhulpmiddel te gebruiken",
"Auto_Load_Images": "Automatisch afbeeldingen laden",
"Auto_Translate": "Auto-Translate",
"AutoLinker_Email": "AutoLinker Email",
"AutoLinker_Phone": "AutoLinker Phone",
"AutoLinker_Phone_Description": "Automatisch gekoppeld voor telefoonnummers. bijvoorbeeld `(123) 456-7890`",
"AutoLinker_StripPrefix": "AutoLinker Strip voorvoegsel",
"AutoLinker_StripPrefix_Description": "Beknopte weergave. bv https://rocket.chat => rocket.chat",
"AutoLinker_Urls_Scheme": "AutoLinker Schema: // URLs",
"AutoLinker_Urls_TLD": "AutoLinker TLD URLs",
"AutoLinker_Urls_www": "URL's AutoLinker 'www'",
"AutoLinker_UrlsRegExp": "AutoLinker URL reguliere expressie",
"Automatic_Translation": "Automatische vertaling",
"AutoTranslate_Change_Language_Description": "Als u de taal voor automatisch vertalen wijzigt, worden eerdere berichten niet vertaald.",
"AutoTranslate_Enabled": "Schakel Auto-Vertalen in",
"AutoTranslate_Enabled_Description": "Als u automatische vertaling inschakelt, kunnen mensen met de <code class=\"inline\">automatisch</code>toestemming krijgen om alle berichten automatisch in de geselecteerde taal te laten vertalen. Er kunnen kosten van toepassing zijn, zie <a target=\"_blank\" href=\"https://cloud.google.com/translate/pricing\">Google's documentatie</a>",
"AutoTranslate_GoogleAPIKey": "Google API Key",
"Available": "Beschikbaar",
"Available_agents": "Beschikbare agenten",
"Avatar": "Verander uw foto",
"Avatar_changed_successfully": "Afbeelding is gewijzigd",
"Avatar_URL": "Afbeelding URL",
"Avatar_url_invalid_or_error": "De gegeven URL is ongeldig of niet bereikbaar. Probeer het opnieuw met een andere URL.",
"away": "Afwezig",
"Away": "Afwezig",
"away_female": "afwezig",
"Away_female": "Afwezig",
"away_male": "afwezig",
"Away_male": "Afwezig",
"Back": "Terug",
"Back_to_applications": "Terug naar toepassingen",
"Back_to_chat": "Terug naar chat",
"Back_to_integration_detail": "Terug naar het integratiedetail",
"Back_to_integrations": "Terug naar integraties",
"Back_to_login": "Terug naar Inloggen",
"Back_to_Manage_Apps": "Terug naar Apps beheren",
"Back_to_permissions": "Terug naar machtigingen",
"Backup_codes": "Back-upcodes",
"ban-user": "Verban gebruiker",
"ban-user_description": "Toestemming om een gebruiker van een kanaal te verbannen",
"Beta_feature_Depends_on_Video_Conference_to_be_enabled": "Beta-functie. Afhankelijk van Video Conference om ingeschakeld te worden.",
"Block_User": "Blokkeer gebruiker",
"Blockchain": "Blockchain",
"Body": "Body",
"bold": "vetgedrukt",
"bot_request": "Botaanvraag",
"BotHelpers_userFields": "Gebruikersvelden",
"BotHelpers_userFields_Description": "CSV van gebruikersvelden die toegankelijk zijn met behulp van de robots.",
"Bots": "bots",
"Branch": "Tak",
"Broadcast_channel": "Broadcast Channel",
"Broadcast_channel_Description": "Alleen geautoriseerde gebruikers kunnen nieuwe berichten schrijven, maar de andere gebruikers kunnen antwoorden",
"Broadcast_Connected_Instances": "Broadcast Connected Instances",
"Bugsnag_api_key": "Bugsnag API Key",
"Build_Environment": "Bouwomgeving",
"bulk-create-c": "Bulk Maak kanalen",
"bulk-create-c_description": "Toestemming om in bulk kanalen te maken",
"bulk-register-user": "Bulk Maak kanalen",
"bulk-register-user_description": "Toestemming om in bulk kanalen te maken",
"busy": "Bezet",
"Busy": "Bezet",
"busy_female": "bezet",
"Busy_female": "Bezet",
"busy_male": "bezet",
"Busy_male": "Bezet",
"by": "door",
"cache_cleared": "Cache gewist",
"Cancel": "Annuleren",
"Cancel_message_input": "Annuleren",
"Cannot_invite_users_to_direct_rooms": "Kan niet-gebruikers aan direct kamers nodigen",
"Cannot_open_conversation_with_yourself": "Kan bericht niet met uzelf leiden",
"CAS_autoclose": "Autoclose Login Popup",
"CAS_base_url": "SSO-basis-URL",
"CAS_base_url_Description": "De basis-URL van uw externe SSO-service, bijvoorbeeld: https: //sso.example.undef/sso/",
"CAS_button_color": "Login-knop Achtergrondkleur",
"CAS_button_label_color": "Login-knop Tekstkleur",
"CAS_button_label_text": "Login Button Label",
"CAS_enabled": "Ingeschakeld",
"CAS_Login_Layout": "CAS-aanmelding",
"CAS_login_url": "SSO-inlog-URL",
"CAS_login_url_Description": "De aanmeldings-URL van uw externe SSO-service, bijvoorbeeld: https: //sso.example.undef/sso/login",
"CAS_popup_height": "Login Popup Hoogte",
"CAS_popup_width": "Login Popup Width",
"CAS_Sync_User_Data_Enabled": "Synchroniseer altijd gebruikersgegevens",
"CAS_Sync_User_Data_Enabled_Description": "Synchroniseer altijd externe CAS-gebruikersgegevens in beschikbare attributen bij het inloggen. Opmerking: Attributen worden sowieso altijd gesynchroniseerd bij het maken van een account.",
"CAS_Sync_User_Data_FieldMap": "Kenmerkkaart",
"CAS_Sync_User_Data_FieldMap_Description": "Gebruik deze JSON-invoer om interne attributen (sleutel) te bouwen op basis van externe attributen (waarde). Externe attribuutnamen ingesloten met '%' worden geïnterpoleerd in waardestrings.<br/>Voorbeeld, `{\" email \":\"% email% \",\" name \":\"% firstname%,% lastname% \"}`<br/><br/>De kenmerkkaart wordt altijd geïnterpoleerd. In CAS 1.0 is alleen het kenmerk `gebruikersnaam 'beschikbaar. Beschikbare interne kenmerken zijn: gebruikersnaam, naam, e-mail, kamers; rooms is een door komma's gescheiden lijst van kamers om deel te nemen na het maken van de gebruiker, bijvoorbeeld: {\"rooms\": \"% team%,% department%\"} zou CAS-gebruikers bij de creatie vergezellen naar hun team- en afdelingskanaal.",
"CAS_version": "CAS-versie",
"CAS_version_Description": "Gebruik alleen een ondersteunde CAS-versie die wordt ondersteund door uw CAS SSO-service.",
"CDN_PREFIX": "CDN Prefix",
"Certificates_and_Keys": "Certificaten en sleutels",
"Change_Room_Type": "Het ruimtetype veranderen",
"Changing_email": "Veranderen van e-mail",
"channel": "kanaal",
"Channel": "Kanaal",
"Channel_already_exist": "Het kanaal '#%s' bestaat al.",
"Channel_already_exist_static": "Het kanaal bestaat al.",
"Channel_already_Unarchived": "Kanaal met de naam `#%s` is al in staat-gearchiveerde",
"Channel_Archived": "Kanaal met de naam `#%s` is succesvol gearchiveerd",
"Channel_created": "Kanaal `#%s` gemaakt.",
"Channel_doesnt_exist": "Het kanaal `#%s` bestaat niet.",
"Channel_name": "kanaal naam",
"Channel_Name_Placeholder": "Voer de kanaalnaam in ...",
"Channel_to_listen_on": "Kanaal om op te luisteren",
"Channel_Unarchived": "Kanaal met de naam `#%s` is met succes-gearchiveerde geweest",
"Channels": "Kanalen",
"Channels_are_where_your_team_communicate": "Kanalen zijn waar uw team communiceert",
"Channels_list": "Lijst van de openbare kanalen",
"Chat_button": "Chat button",
"Chat_closed": "Chat gesloten",
"Chat_closed_successfully": "Chat met succes afgesloten",
"Chat_Now": "Praat nu",
"Chat_window": "chatvenster",
"Chatops_Enabled": "Chatops Inschakelen",
"Chatops_Title": "Chatops Panel",
"Chatops_Username": "Chatops Gebruikersnaam",
"Chatpal_AdminPage": "Chatpal-beheerderspagina",
"Chatpal_All_Results": "Alle",
"Chatpal_API_Key": "API Key",
"Chatpal_API_Key_Description": "U heeft nog geen <strong>API-sleutel</strong>? <a class=\"chatpal-admin-link\" href=\"./admin/chatpal\" >Ontvang er een!</a>",
"Chatpal_Backend": "Backend Type",
"Chatpal_Backend_Description": "Selecteer of u Chatpal als een service of als installatie op locatie wilt gebruiken",
"Chatpal_Base_URL": "Base URL",
"Chatpal_Base_URL_Description": "Een korte beschrijving van het uitvoeren van een lokale instantie <a target=\"_blank\" class=\"chatpal-admin-link\" href=\"https://github.com/chatpal/chatpal-search-standalone\" >op github</a>. De URL moet absolue zijn en verwijzen naar de chatpal-kern, bijvoorbeeld http: // localhost: 8983 / SOLR / chatpal.",
"Chatpal_Batch_Size": "Index Batch-grootte",
"Chatpal_Batch_Size_Description": "De batchgrootte van indexdocumenten (bij bootstrappen)",
"Chatpal_create_key": "Sleutel maken",
"Chatpal_created_key_successfully": "API-Key is succesvol gemaakt",
"Chatpal_Default_Result_Type": "Standaard resultaattype",
"Chatpal_Default_Result_Type_Description": "Bepaalt welk resultaattype wordt weergegeven op resultaat. Alles betekent dat een overzicht voor alle typen wordt verstrekt.",
"Chatpal_Email_Address": "E-mailadres",
"Chatpal_ERROR_Email_must_be_set": "E-mail moet zijn ingesteld",
"Chatpal_ERROR_Email_must_be_valid": "Email moet geldig zijn",
"Chatpal_ERROR_TAC_must_be_checked": "Algemene voorwaarden moeten worden gecontroleerd",
"Chatpal_ERROR_username_already_exists": "Gebruikersnaam bestaat al",
"Chatpal_Get_more_information_about_chatpal_on_our_website": "Meer informatie over Chatpal op <a target=\"_blank\" href=\"http://chatpal.io\" >http://chatpal.io</a>!",
"Chatpal_go_to_message": "Springen",
"Chatpal_go_to_room": "Springen",
"Chatpal_go_to_user": "Stuur een direct bericht",
"Chatpal_HTTP_Headers": "Http Headers",
"Chatpal_HTTP_Headers_Description": "Lijst met HTTP-headers, één kopregel per regel. Formaat: naam: waarde",
"Chatpal_Main_Language": "Hoofdtaal",
"Chatpal_Main_Language_Description": "De taal die het meest wordt gebruikt in gesprekken",
"Chatpal_Messages": "Berichten",
"Chatpal_Messages_Only": "Berichten",
"Chatpal_More": "Meer",
"Chatpal_No_Results": "Geen resultaten",
"Chatpal_no_search_results": "Geen resultaat",
"Chatpal_one_search_result": "1 resultaat gevonden",
"Chatpal_Rooms": "Kamers",
"Chatpal_run_search": "Zoeken",
"Chatpal_search_page_of": "Pagina%s van%s",
"Chatpal_search_results": "%s resultaten gevonden",
"Chatpal_Search_Results": "Zoekresultaten",
"Chatpal_Suggestion_Enabled": "Suggesties ingeschakeld",
"Chatpal_TAC_read": "Ik heb de algemene voorwaarden gelezen",
"Chatpal_Terms_and_Conditions": "Termen en voorwaarden",
"Chatpal_Timeout_Size": "Indextime-out",
"Chatpal_Timeout_Size_Description": "De tijd tussen 2 indexvensters in ms (bij bootstrappen)",
"Chatpal_Users": "Gebruikers",
"Chatpal_Welcome": "Veel plezier met zoeken!",
"Chatpal_Window_Size": "Index venstergrootte",
"Chatpal_Window_Size_Description": "De grootte van indexvensters in uren (bij bootstrappen)",
"Choose_a_room": "Kies een kamer",
"Choose_messages": "Kies berichten",
"Choose_the_alias_that_will_appear_before_the_username_in_messages": "Kies de alias die zal verschijnen voor de gebruikersnaam in berichten.",
"Choose_the_username_that_this_integration_will_post_as": "Kies de gebruikersnaam als welke deze integratie zal posten.",
"clean-channel-history": "Reinig kanaalgeschiedenis",
"clean-channel-history_description": "Toestemming om de geschiedenis van kanalen te wissen",
"clear": "Duidelijk",
"Clear_all_unreads_question": "Wis alle ongelezen?",
"clear_cache_now": "Cache nu wissen",
"clear_history": "Geschiedenis wissen",
"Click_here": "Klik hier",
"Click_here_for_more_info": "Klik hier voor meer info",
"Click_the_messages_you_would_like_to_send_by_email": "Klik op de berichten die u per e-mail wilt verzenden",
"Click_to_join": "Klik om lid te worden!",
"Client_ID": "Client ID",
"Client_Secret": "Client Secret",
"Clients_will_refresh_in_a_few_seconds": "Klanten zullen vernieuwen in een paar seconden",
"close": "Sluiten",
"Close": "Dicht",
"close-livechat-room": "Livechat-kamer sluiten",
"close-livechat-room_description": "Toestemming om het huidige LiveChat-kanaal te sluiten",
"close-others-livechat-room": "Livechat-kamer sluiten",
"close-others-livechat-room_description": "Toestemming om andere LiveChat-kanalen te sluiten",
"Closed": "Gesloten",
"Closed_by_visitor": "Gesloten door bezoeker",
"Closing_chat": "closing-chat",
"Collapse_Embedded_Media_By_Default": "Klap ingebedde media standaard in",
"Color": "Kleur",
"Commands": "Commando's",
"Comment_to_leave_on_closing_session": "Commentaar bij het verlaten van de sluitingsessie",
"Common_Access": "Gemeenschappelijke toegang",
"Community": "Gemeenschap",
"Compact": "Compact",
"Condensed": "Condensed",
"Computer": "Computer",
"Confirm_password": "Bevestig uw wachtwoord",
"Connection_Closed": "Verbinding gesloten",
"Connection_Reset": "Verbindingsreset",
"Consulting": "Overleg plegen",
"Consumer_Goods": "Consumentengoederen",
"Contains_Security_Fixes": "Bevat beveiligingsfixes",
"Content": "Inhoud",
"Continue": "Voortzetten",
"Continuous_sound_notifications_for_new_livechat_room": "Continue geluidsmeldingen voor nieuwe livechatroom",
"Conversation": "Gesprek",
"Conversation_closed": "Gesprek gesloten: __comment__.",
"Conversation_finished_message": "Gesprek beëindigd bericht",
"conversation_with_s": "het gesprek met% s",
"Convert_Ascii_Emojis": "ASCII naar Emoji Converteren ",
"Copied": "gekopieerde",
"Copy": "Kopiëren",
"Copy_to_clipboard": "Kopieer naar klembord",
"COPY_TO_CLIPBOARD": "KOPIEER NAAR KLEMBORD",
"Count": "Aantal",
"Country": "Land",
"Country_Afghanistan": "Afghanistan",
"Country_Albania": "Albanië",
"Country_Algeria": "Algerije",
"Country_American_Samoa": "Amerikaans Samoa",
"Country_Andorra": "Andorra",
"Country_Angola": "Angola",
"Country_Anguilla": "Anguilla",
"Country_Antarctica": "Antarctica",
"Country_Antigua_and_Barbuda": "Antigua en Barbuda",
"Country_Argentina": "Argentinië",
"Country_Armenia": "Armenië",
"Country_Aruba": "Aruba",
"Country_Australia": "Australië",
"Country_Austria": "Oostenrijk",
"Country_Azerbaijan": "Azerbeidzjan",
"Country_Bahamas": "Bahamas",
"Country_Bahrain": "Bahrein",
"Country_Bangladesh": "Bangladesh",
"Country_Barbados": "Barbados",
"Country_Belarus": "Wit-Rusland",
"Country_Belgium": "België",
"Country_Belize": "Belize",
"Country_Benin": "Benin",
"Country_Bermuda": "Bermuda",
"Country_Bhutan": "Bhutan",
"Country_Bolivia": "Bolivia",
"Country_Bosnia_and_Herzegovina": "Bosnië-Herzegovina",
"Country_Botswana": "Botswana",
"Country_Bouvet_Island": "Bouvet Island",
"Country_Brazil": "Brazilië",
"Country_British_Indian_Ocean_Territory": "Brits-Indisch oceaan gebied",
"Country_Brunei_Darussalam": "Brunei Darussalam",
"Country_Bulgaria": "Bulgarije",
"Country_Burkina_Faso": "Burkina Faso",
"Country_Burundi": "Boeroendi",
"Country_Cambodia": "Cambodja",
"Country_Cameroon": "Kameroen",
"Country_Canada": "Canada",
"Country_Cape_Verde": "Kaapverdië",
"Country_Cayman_Islands": "Kaaiman Eilanden",
"Country_Central_African_Republic": "Centraal Afrikaanse Republiek",
"Country_Chad": "Tsjaad",
"Country_Chile": "Chili",
"Country_China": "China",
"Country_Christmas_Island": "Kersteiland",
"Country_Cocos_Keeling_Islands": "Cocos (Keeling) eilanden",
"Country_Colombia": "Colombia",
"Country_Comoros": "Comoren",
"Country_Congo": "Congo",
"Country_Congo_The_Democratic_Republic_of_The": "Congo, Democratische Republiek",
"Country_Cook_Islands": "Cook eilanden",
"Country_Costa_Rica": "Costa Rica",
"Country_Cote_Divoire": "Cote D'ivoire",
"Country_Croatia": "Kroatië",
"Country_Cuba": "Cuba",
"Country_Cyprus": "Cyprus",
"Country_Czech_Republic": "Tsjechische Republiek",
"Country_Denmark": "Denemarken",
"Country_Djibouti": "Djibouti",
"Country_Dominica": "Dominica",
"Country_Dominican_Republic": "Dominicaanse Republiek",
"Country_Ecuador": "Ecuador",
"Country_Egypt": "Egypte",
"Country_El_Salvador": "El Salvador",
"Country_Equatorial_Guinea": "Equatoriaal-Guinea",
"Country_Eritrea": "Eritrea",
"Country_Estonia": "Estland",
"Country_Ethiopia": "Ethiopië",
"Country_Falkland_Islands_Malvinas": "Falkland Eilanden (Malvinas)",
"Country_Faroe_Islands": "Faroe Islands",
"Country_Fiji": "Fiji",
"Country_Finland": "Finland",
"Country_France": "Frankrijk",
"Country_French_Guiana": "Frans Guyana",
"Country_French_Polynesia": "Frans-Polynesië",
"Country_French_Southern_Territories": "Franse zuidelijke gebieden",
"Country_Gabon": "Gabon",
"Country_Gambia": "Gambia",
"Country_Georgia": "Georgië",
"Country_Germany": "Duitsland",
"Country_Ghana": "Ghana",
"Country_Gibraltar": "Gibraltar",
"Country_Greece": "Griekenland",
"Country_Greenland": "Groenland",
"Country_Grenada": "Grenada",
"Country_Guadeloupe": "Guadeloupe",
"Country_Guam": "Guam",
"Country_Guatemala": "Guatemala",
"Country_Guinea": "Guinea",
"Country_Guinea_bissau": "Guinee-Bissau",
"Country_Guyana": "Guyana",
"Country_Haiti": "Haïti",
"Country_Heard_Island_and_Mcdonald_Islands": "Heard Island en McDonald Islands",
"Country_Holy_See_Vatican_City_State": "Heilige Stoel (Vaticaanstad)",
"Country_Honduras": "Honduras",
"Country_Hong_Kong": "Hong Kong",
"Country_Hungary": "Hongarije",
"Country_Iceland": "IJsland",
"Country_India": "Indië",
"Country_Indonesia": "Indonesië",
"Country_Iran_Islamic_Republic_of": "Iran, Islamitische Republiek",
"Country_Iraq": "Irak",
"Country_Ireland": "Ierland",
"Country_Israel": "Israël",
"Country_Italy": "Italië",
"Country_Jamaica": "Jamaica",
"Country_Japan": "Japan",
"Country_Jordan": "Jordanië",
"Country_Kazakhstan": "Kazachstan",
"Country_Kenya": "Kenia",
"Country_Kiribati": "Kiribati",
"Country_Korea_Democratic_Peoples_Republic_of": "Korea, Democratische Volksrepubliek",
"Country_Korea_Republic_of": "Korea, republiek van",
"Country_Kuwait": "Koeweit",
"Country_Kyrgyzstan": "Kirgizië",
"Country_Lao_Peoples_Democratic_Republic": "Lao Democratische Volksrepubliek",
"Country_Latvia": "Letland",
"Country_Lebanon": "Libanon",
"Country_Lesotho": "Lesotho",
"Country_Liberia": "Liberia",
"Country_Libyan_Arab_Jamahiriya": "Libië",
"Country_Liechtenstein": "Liechtenstein",
"Country_Lithuania": "Litouwen",
"Country_Luxembourg": "Luxemburg",
"Country_Macao": "Macao",
"Country_Macedonia_The_Former_Yugoslav_Republic_of": "Macedonië, de voormalige Joegoslavische Republiek",
"Country_Madagascar": "Madagascar",
"Country_Malawi": "Malawi",
"Country_Malaysia": "Maleisië",
"Country_Maldives": "Maldiven",
"Country_Mali": "Mali",
"Country_Malta": "Malta",
"Country_Marshall_Islands": "Marshall eilanden",
"Country_Martinique": "Martinique",
"Country_Mauritania": "Mauritanië",
"Country_Mauritius": "Mauritius",
"Country_Mayotte": "Mayotte",
"Country_Mexico": "Mexico",
"Country_Micronesia_Federated_States_of": "Micronesië, Federale Staten van",
"Country_Moldova_Republic_of": "Moldavië, Republiek van",
"Country_Monaco": "Monaco",
"Country_Mongolia": "Mongolië",
"Country_Montserrat": "Montserrat",
"Country_Morocco": "Marokko",
"Country_Mozambique": "Mozambique",
"Country_Myanmar": "Myanmar",
"Country_Namibia": "Namibië",
"Country_Nauru": "Nauru",
"Country_Nepal": "Nepal",
"Country_Netherlands": "Nederland",
"Country_Netherlands_Antilles": "Nederlandse Antillen",
"Country_New_Caledonia": "Nieuw-Caledonië",
"Country_New_Zealand": "Nieuw Zeeland",
"Country_Nicaragua": "Nicaragua",
"Country_Niger": "Niger",
"Country_Nigeria": "Nigeria",
"Country_Niue": "niue",
"Country_Norfolk_Island": "Norfolk Island",
"Country_Northern_Mariana_Islands": "noordelijke Mariana eilanden",
"Country_Norway": "Noorwegen",
"Country_Oman": "Oman",
"Country_Pakistan": "Pakistan",
"Country_Palau": "Palau",
"Country_Palestinian_Territory_Occupied": "Bezet Palestijns gebied",
"Country_Panama": "Panama",
"Country_Papua_New_Guinea": "Papoea-Nieuw-Guinea",
"Country_Paraguay": "Paraguay",
"Country_Peru": "Peru",
"Country_Philippines": "Filippijnen",
"Country_Pitcairn": "Pitcairn",
"Country_Poland": "Polen",
"Country_Portugal": "Portugal",
"Country_Puerto_Rico": "Puerto Rico",
"Country_Qatar": "Katar",
"Country_Reunion": "Bijeenkomst",
"Country_Romania": "Roemenië",
"Country_Russian_Federation": "Russische Federatie",
"Country_Rwanda": "Rwanda",
"Country_Saint_Helena": "Sint Helena",
"Country_Saint_Kitts_and_Nevis": "Saint Kitts en Nevis",
"Country_Saint_Lucia": "Saint Lucia",
"Country_Saint_Pierre_and_Miquelon": "Saint Pierre en Miquelon",
"Country_Saint_Vincent_and_The_Grenadines": "Saint Vincent en de Grenadines",
"Country_Samoa": "Samoa",
"Country_San_Marino": "San Marino",
"Country_Sao_Tome_and_Principe": "Sao Tome en Principe",
"Country_Saudi_Arabia": "Saoedi-Arabië",
"Country_Senegal": "Senegal",
"Country_Serbia_and_Montenegro": "Servië en Montenegro",
"Country_Seychelles": "Seychellen",
"Country_Sierra_Leone": "Sierra Leone",
"Country_Singapore": "Singapore",
"Country_Slovakia": "Slowakije",
"Country_Slovenia": "Slovenië",
"Country_Solomon_Islands": "Solomon eilanden",
"Country_Somalia": "Somalië",
"Country_South_Africa": "Zuid-Afrika",
"Country_South_Georgia_and_The_South_Sandwich_Islands": "South Georgia en The South Sandwich Islands",
"Country_Spain": "Spanje",
"Country_Sri_Lanka": "Sri Lanka",
"Country_Sudan": "Soedan",
"Country_Suriname": "Suriname",
"Country_Svalbard_and_Jan_Mayen": "Svalbard en Jan Mayen",
"Country_Swaziland": "Swaziland",
"Country_Sweden": "Zweden",
"Country_Switzerland": "Zwitserland",
"Country_Syrian_Arab_Republic": "Syrische Arabische Republiek",
"Country_Taiwan_Province_of_China": "Taiwan, provincie China",
"Country_Tajikistan": "Tadzjikistan",
"Country_Tanzania_United_Republic_of": "Tanzania, Verenigde Republiek van",
"Country_Thailand": "Thailand",
"Country_Timor_leste": "Oost-Timor",
"Country_Togo": "Gaan",
"Country_Tokelau": "Tokelau",
"Country_Tonga": "Tonga",
"Country_Trinidad_and_Tobago": "Trinidad en Tobago",
"Country_Tunisia": "Tunesië",
"Country_Turkey": "Turkije",
"Country_Turkmenistan": "Turkmenistan",
"Country_Turks_and_Caicos_Islands": "Turks- en Caicoseilanden",
"Country_Tuvalu": "Tuvalu",
"Country_Uganda": "Oeganda",
"Country_Ukraine": "Oekraïne",
"Country_United_Arab_Emirates": "Verenigde Arabische Emiraten",
"Country_United_Kingdom": "Verenigd Koninkrijk",
"Country_United_States": "Verenigde Staten",
"Country_United_States_Minor_Outlying_Islands": "Kleine afgelegen eilanden van de Verenigde Staten",
"Country_Uruguay": "Uruguay",
"Country_Uzbekistan": "Oezbekistan",
"Country_Vanuatu": "Vanuatu",
"Country_Venezuela": "Venezuela",
"Country_Viet_Nam": "Viet Nam",
"Country_Virgin_Islands_British": "Britse Maagdeneilanden",
"Country_Virgin_Islands_US": "Virgin Islands, US",
"Country_Wallis_and_Futuna": "Wallis en Futuna",
"Country_Western_Sahara": "Westelijke Sahara",
"Country_Yemen": "Jemen",
"Country_Zambia": "Zambia",
"Country_Zimbabwe": "Zimbabwe",
"Cozy": "Knus",
"Create": "creëren",
"create-c": "Maak openbare kanalen",
"create-c_description": "Toestemming om openbare kanalen te maken",
"create-d": "Directe berichten maken",
"create-d_description": "Toestemming om directe berichten te starten",
"create-p": "Maak privékanalen",
"create-p_description": "Toestemming om privékanalen te maken",
"create-user": "Gebruikers maken",
"create-user_description": "Toestemming om gebruikers te maken",
"Create_A_New_Channel": "Een nieuw kanaal aanmaken",
"Create_new": "Maak nieuw",
"Create_unique_rules_for_this_channel": "Maak unieke regels voor dit kanaal",
"Created_at": "Gemaakt op",
"Created_at_s_by_s": "Gemaakt op <strong>%s</strong> door <strong>%s</strong>",
"Created_at_s_by_s_triggered_by_s": "Gemaakt op <strong>%s</strong>door <strong>%s</strong>getriggerd door <strong>%s</strong>",
"CRM_Integration": "CRM-integratie",
"CROWD_Reject_Unauthorized": "Weigeren ongeautoriseerd",
"Crowd_sync_interval_Description": "Het interval tussen synchronisaties. Voorbeeld `elke 24 uur 'of' op de eerste dag van de week ', meer voorbeelden op [Cron Text Parser] (http://bunkat.github.io/later/parsers.html#text)",
"Current_Chats": "huidige Chats",
"Current_Status": "Huidige status",
"Custom": "gewoonte",
"Custom_agent": "Douanebeambte",
"Custom_Emoji": "Aangepaste Emoji",
"Custom_Emoji_Add": "Voeg nieuwe emoji toe",
"Custom_Emoji_Added_Successfully": "Aangepaste emoji is succesvol toegevoegd",
"Custom_Emoji_Delete_Warning": "Het verwijderen van een emoji kan niet ongedaan worden gemaakt.",
"Custom_Emoji_Error_Invalid_Emoji": "Ongeldige emoji",
"Custom_Emoji_Error_Name_Or_Alias_Already_In_Use": "De aangepaste emoji of een van de aliassen is al in gebruik.",
"Custom_Emoji_Has_Been_Deleted": "De aangepaste emoji is verwijderd.",
"Custom_Emoji_Info": "Aangepaste Emoji-info",
"Custom_Emoji_Updated_Successfully": "Aangepaste emoji is succesvol bijgewerkt",
"Custom_Fields": "Aangepaste velden",
"Custom_oauth_helper": "Bij het instellen van uw OAuth Provider, moet u een Callback URL geven. Gebruik <pre>%s</pre> .",
"Custom_oauth_unique_name": "Aangepaste OAuth unieke naam",
"Custom_Script_Logged_In": "Aangepaste Script voor gebruikers die ingelogd",
"Custom_Script_Logged_Out": "Aangepaste Script voor uitgelogd gebruikers",
"Custom_Scripts": "Aangepaste scripts",
"Custom_Sound_Add": "Voeg aangepast geluid toe",
"Custom_Sound_Delete_Warning": "Het verwijderen van een geluid kan niet ongedaan worden gemaakt.",
"Custom_Sound_Error_Invalid_Sound": "Ongeldig geluid",
"Custom_Sound_Error_Name_Already_In_Use": "De aangepaste geluidsnaam is al in gebruik.",
"Custom_Sound_Has_Been_Deleted": "Het aangepaste geluid is verwijderd.",
"Custom_Sound_Info": "Aangepaste geluidsinfo",
"Custom_Sound_Saved_Successfully": "Aangepast geluid is succesvol opgeslagen",
"Custom_Sounds": "Eigen geluiden",
"Custom_Translations": "Aangepaste vertalingen",
"Custom_Translations_Description": "Moet een geldige JSON zijn waarbij sleutels talen zijn die een woordenboek met sleutel en vertalingen bevatten. Voorbeeld:<br/><code>{\n\"en\": {\n\"Kanalen\": \"Kamers\"\n},\n\"pt\": {\n\"Kanalen\": \"Salas\"\n}\n}</code>",
"Customize": "Aanpassen",
"CustomSoundsFilesystem": "Aangepaste geluiden bestandssysteem",
"Dashboard": "Dashboard",
"Date": "Datum",
"Date_From": "Van",
"Date_to": "naar",
"days": "dagen",
"DB_Migration": "Database Migration",
"DB_Migration_Date": "Database Migratie Date",
"Deactivate": "Deactiveren",
"Decline": "Achteruitgang",
"Default": "Standaard",
"Delete": "Verwijder",
"delete-c": "Verwijder openbare kanalen",
"delete-c_description": "Toestemming om openbare kanalen te verwijderen",
"delete-d": "Directe berichten verwijderen",
"delete-d_description": "Toestemming om directe berichten te verwijderen",
"delete-message": "Verwijder bericht",
"delete-message_description": "Toestemming om een bericht in een ruimte te verwijderen",
"delete-p": "Privé-kanalen verwijderen",
"delete-p_description": "Toestemming om privé-kanalen te verwijderen",
"delete-user": "Verwijder gebruiker",
"delete-user_description": "Toestemming om gebruikers te verwijderen",
"Delete_message": "bericht verwijderen",
"Delete_my_account": "Verwijder mijn account",
"Delete_Room_Warning": "Het verwijderen van een kamer verwijdert ook alle in deze kamer geplaatste berichten. Dat kan niet ongedaan gemaakt worden!",
"Delete_User_Warning": "Een gebruiker verwijderen betekent dat alle berichten van die gebruiker ook verwijderd worden. Dit kan niet ongedaan gemaakt worden.",
"Delete_User_Warning_Delete": "Een gebruiker verwijderen betekent dat alle berichten van die gebruiker ook verwijderd worden. Dit kan niet ongedaan gemaakt worden.",
"Delete_User_Warning_Keep": "De gebruiker wordt verwijderd, maar hun berichten blijven zichtbaar. Dit kan niet ongedaan gemaakt worden.",
"Delete_User_Warning_Unlink": "Als een gebruiker wordt verwijderd, wordt de gebruikersnaam uit alle berichten verwijderd. Dit kan niet ongedaan gemaakt worden.",
"Deleted": "Verwijderd!",
"Department": "afdeling",
"Department_removed": "Afdeling verwijderd",
"Departments": "Afdelingen",
"Deployment_ID": "Deployment ID",
"Description": "Beschrijving",
"Desktop": "Desktop",
"Desktop_Notification_Test": "Desktop Kennisgeving Test",
"Desktop_Notifications": "Desktop Meldingen",
"Desktop_Notifications_Default_Alert": "Desktopmeldingen Standaardwaarschuwing",
"Desktop_Notifications_Disabled": "Desktop Meldingen zijn uitgeschakeld. Wijzig uw browser voorkeuren als u Meldingen ingeschakeld wil hebben.",
"Desktop_Notifications_Duration": "meldingen Duur",
"Desktop_Notifications_Duration_Description": "Seconds to desktop melding wordt weergegeven. Dit kan invloed hebben op OS X Notification Center. Voer 0 in om de instellingen standaard browser te gebruiken en niet van invloed op OS X Notification Center.",
"Desktop_Notifications_Enabled": "Desktop Meldingen zijn ingeschakeld",
"Different_Style_For_User_Mentions": "Verschillende stijl voor gebruikersvermeldingen",
"Direct_message_someone": "Stuur iemand een direct bericht",
"Direct_Messages": "Directe berichten",
"Direct_Reply": "Direct antwoord",
"Direct_Reply_Debug": "Debug Direct antwoord",
"Direct_Reply_Debug_Description": "[Pas op] Als u de foutopsporingsmodus inschakelt, wordt uw 'wachtwoord voor platte tekst' weergegeven in de beheerdersconsole.",
"Direct_Reply_Delete": "Verwijder onderschepte e-mails",
"Direct_Reply_Enable": "Direct antwoord inschakelen",
"Direct_Reply_Frequency": "E-mail Controleer Frequentie",
"Direct_Reply_Frequency_Description": "(in minuten, standaard / minimum 2)",
"Direct_Reply_Host": "Directe antwoordhost",
"Direct_Reply_IgnoreTLS": "IgnoreTLS",
"Direct_Reply_Password": "Wachtwoord",
"Direct_Reply_Port": "Direct_Reply_Port",
"Direct_Reply_Protocol": "Direct antwoordprotocol",
"Direct_Reply_Separator": "separator",
"Direct_Reply_Separator_Description": "[Alleen wijzigen als u precies weet wat u aan het doen bent, raadpleeg de documentatie]<br/>Separator tussen basis- en taggedeelte van e-mail",
"Direct_Reply_Username": "Gebruikersnaam",
"Direct_Reply_Username_Description": "Gebruik alsjeblieft absolute email, tagging is niet toegestaan, het zou overschreven zijn",
"Directory": "directory",
"Disable_Facebook_integration": "Schakel Facebook-integratie uit",
"Disable_Notifications": "Meldingen uitschakelen",
"Disable_two-factor_authentication": "Schakel authenticatie met twee factoren uit",
"Disabled": "Gehandicapte",
"Disallow_reacting": "Disallow Reaction",
"Disallow_reacting_Description": "Staat niet toe om te reageren",
"Display_offline_form": "Weergave offline vorm",
"Display_unread_counter": "Toon aantal ongelezen berichten",
"Displays_action_text": "Displays actie tekst",
"Dont_ask_me_again": "Vraag het me niet nog een keer!",
"Dont_ask_me_again_list": "Vraag me niet opnieuw lijst",
"Do_not_display_unread_counter": "Geen enkele teller van dit kanaal weergeven",
"Do_you_want_to_accept": "Wil je accepteren?",
"Do_you_want_to_change_to_s_question": "Wilt u <strong>%s</strong> veranderen?",
"Document_Domain": "Documentdomein",
"Domain": "Domein",
"Domain_added": "domein toegevoegd",
"Domain_removed": "Domein verwijderd",
"Domains": "domeinen",
"Domains_allowed_to_embed_the_livechat_widget": "Door komma's gescheiden lijst van domeinen die de livechat-widget mogen insluiten. Laat dit leeg om alle domeinen toe te staan.",
"Download_My_Data": "Download mijn gegevens",
"Download_Snippet": "Download",
"Drop_to_upload_file": "Sleep hierheen om een bestand te uploaden",
"Dry_run": "Testrun",
"Dry_run_description": "Zal slechts één e-mail sturen naar hetzelfde adres als in afzenderveld. De e-mail moet horen bij een geldige gebruiker.",
"Duplicate_archived_channel_name": "Een gearchiveerd kanaal met naam '%s' bestaat al",
"Duplicate_archived_private_group_name": "Een gearchiveerde privé-group met naam '%s' bestaat al",
"Duplicate_channel_name": "Een kanaal met de naam '%s' bestaat al",
"Duplicate_private_group_name": "Een privé-groep met de naam '%s' bestaat al",
"Duration": "Duur",
"Edit": "Wijzig",
"edit-message": "Bewerk bericht",
"edit-message_description": "Toestemming om een bericht binnen een ruimte te bewerken",
"edit-other-user-active-status": "Bewerk andere actieve gebruikersstatus",
"edit-other-user-active-status_description": "Toestemming om andere accounts in of uit te schakelen",
"edit-other-user-info": "Bewerk andere gebruikersinformatie",
"edit-other-user-info_description": "Toestemming om de naam, gebruikersnaam of e-mailadres van een andere gebruiker te wijzigen.",
"edit-other-user-password": "Bewerk ander gebruikerswachtwoord",
"edit-other-user-password_description": "Toestemming om wachtwoorden van andere gebruikers te wijzigen. Vereist toestemming voor bewerken-andere-gebruiker-info.",
"edit-privileged-setting": "Bewerk de geprivilegieerde instelling",
"edit-privileged-setting_description": "Toestemming om instellingen te bewerken",
"edit-room": "Edit Room",
"edit-room_description": "Toestemming voor het bewerken van de naam, het onderwerp, het type (privé- of openbare status) en status (actief of gearchiveerd) van een kamer",
"edit-room-retention-policy": "Het bewaarbeleid van de room bewerken",
"edit-room-retention-policy_description": "Toestemming om het bewaarbeleid van een kamer te bewerken, om berichten daarin automatisch te verwijderen",
"Edit_Custom_Field": "Bewerken Aangepast veld",
"Edit_Department": "Afdeling bewerken",
"Edit_previous_message": "`%s` - Wijzig vorig bericht",
"Edit_Trigger": "Bewerk trigger",
"edited": "bewerkt",
"Editing_room": "montagekamer",
"Editing_user": "user editing",
"Education": "Onderwijs",
"Email": "E-mail",
"Email_address_to_send_offline_messages": "E-mailadres om offline berichten te verzenden",
"Email_already_exists": "Emailadres bestaat al",
"Email_body": "E-mail tekst",
"Email_Change_Disabled": "Je Rocket.Chat administrator heeft het wijzigen van e-mail adressen uitgezet",
"Email_Footer_Description": "U mag de volgende plaatshouders gebruiken: <br/><ul><li> [Site_Name] en [Site_URL] voor de toepassing Naam en URL respectievelijk. </li></ul>",
"Email_from": "Afzender",
"Email_Header_Description": "U mag de volgende plaatshouders gebruiken: <br/><ul><li> [Site_Name] en [Site_URL] voor de toepassing Naam en URL respectievelijk. </li></ul>",
"Email_Notification_Mode": "Offline E-mail Meldingen",
"Email_Notification_Mode_All": "Elke Mention / DM",
"Email_Notification_Mode_Disabled": "invalide",
"Email_or_username": "E-mail of gebruikersnaam",
"Email_Placeholder": "Vul alstublieft uw e-mail adres in...",
"Email_Placeholder_any": "Voer e-mailadressen in ...",
"Email_subject": "Onderwerp",
"Email_verified": "E-mail geverifiëerd",
"Emoji": "Emoji",
"EmojiCustomFilesystem": "Aangepast Emoji-bestandssysteem",
"Empty_title": "Lege titel",
"Enable": "Inschakelen",
"Enable_Auto_Away": "Schakel Auto Away in",
"Enable_Desktop_Notifications": "Zet Desktop Meldingen aan",
"Enable_Svg_Favicon": "Schakel SVG-favicon in",
"Enable_two-factor_authentication": "Schakel authenticatie met twee factoren in",
"Enabled": "Ingeschakeld",
"Encrypted_message": "gecodeerd bericht",
"End_OTR": "end OTR",
"Enter_a_regex": "Voer een reguliere expressie in",
"Enter_a_room_name": "Voer een naam in kamer",
"Enter_a_username": "Voer een gebruikersnaam in",
"Enter_Alternative": "Alternatieve modus (verzenden met Enter + Ctrl / Alt / Shift / CMD)",
"Enter_authentication_code": "Voer verificatiecode in",
"Enter_Behaviour": "Voer sleutelgedrag in",
"Enter_Behaviour_Description": "Dit verandert als de Enter-toets een bericht verzendt of een regeleinde uitvoert",