Skip to content

Commit 16c0a4d

Browse files
author
Till Brehm
committed
Merge branch 'dutch_language' into 'master'
Dutch language changes See merge request ispconfig/ispconfig3!743
2 parents 83a3fb4 + 79af26d commit 16c0a4d

27 files changed

+257
-41
lines changed

interface/lib/lang/nl.lng

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ $wb['client_cannot_be_deleted_because_of_billing_module_txt'] = 'This client has
140140
$wb['yes_txt'] = 'Ja';
141141
$wb['no_txt'] = 'Nee';
142142
$wb['None'] = 'Geen';
143-
$wb['strength_1'] = 'Weak';
143+
$wb['strength_1'] = 'Zwak';
144144
$wb['strength_2'] = 'Fair';
145-
$wb['strength_3'] = 'Good';
146-
$wb['strength_4'] = 'Strong';
147-
$wb['strength_5'] = 'Very Strong';
145+
$wb['strength_3'] = 'Goed';
146+
$wb['strength_4'] = 'Sterk';
147+
$wb['strength_5'] = 'Zeer sterk';
148148
$wb['weak_password_txt'] = 'The chosen password does not match the security guidelines. It has to be at least {chars} chars in length and have a strength of \\"{strength}\\".';
149149
$wb['weak_password_length_txt'] = 'The chosen password does not match the security guidelines. It has to be at least {chars} chars in length.';
150150
$wb['security_check1_txt'] = 'Check for security permission:';
@@ -158,5 +158,8 @@ $wb['datalog_status_d_xmpp_domain'] = 'Delete XMPP domain';
158158
$wb['datalog_status_i_xmpp_user'] = 'Create XMPP user';
159159
$wb['datalog_status_u_xmpp_user'] = 'Update XMPP user';
160160
$wb['datalog_status_d_xmpp_user'] = 'Delete XMPP user';
161-
$wb['datalog_changes_close_txt'] = 'Close';
161+
$wb['datalog_changes_close_txt'] = 'Sluiten';
162+
$wb['datalog_status_i_mail_ml_membership'] = 'Create mailing list member';
163+
$wb['datalog_status_u_mail_ml_membership'] = 'Update mailing list member';
164+
$wb['datalog_status_d_mail_ml_membership'] = 'Delete mailing list member';
162165
?>

interface/web/admin/lib/lang/nl_remote_user.lng

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,11 @@ $wb['DNS rp functions'] = 'DNS rp functies';
4040
$wb['DNS srv functions'] = 'DNS srv functies';
4141
$wb['DNS txt functions'] = 'DNS txt functies';
4242
$wb['Mail mailing list functions'] = 'Mail mailinglist functions';
43-
$wb['generate_password_txt'] = 'Generate Password';
44-
$wb['repeat_password_txt'] = 'Repeat Password';
45-
$wb['password_mismatch_txt'] = 'The passwords do not match.';
46-
$wb['password_match_txt'] = 'The passwords do match.';
43+
$wb['generate_password_txt'] = 'Genereer wachtwoord';
44+
$wb['repeat_password_txt'] = 'Herhaal wachtwoord';
45+
$wb['password_mismatch_txt'] = 'De wachtwoorden zijn niet hetzelfde.';
46+
$wb['password_match_txt'] = 'De wachtwoorden zijn hetzelfde.';
47+
$wb['remote_access_txt'] = 'Externe toegang';
48+
$wb['remote_ips_txt'] = 'Remote Access IPs / Hostnames (separate by , and leave blank for <i>any</i>)';
49+
$wb['remote_user_error_ips'] = 'At least one of the entered ip addresses or hostnames is invalid.';
4750
?>

interface/web/admin/lib/lang/nl_server_config.lng

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,4 +283,10 @@ $wb['xmpp_port_bosh_txt'] = 'BOSH';
283283
$wb['backup_time_txt'] = 'Backup time';
284284
$wb['skip_le_check_txt'] = 'Skip Lets Encrypt Check';
285285
$wb['migration_mode_txt'] = 'Server Migration Mode';
286+
$wb['nagios_url_txt'] = 'Nagios/Check_MK URL';
287+
$wb['nagios_user_txt'] = 'Nagios/Check_MK User';
288+
$wb['nagios_password_txt'] = 'Nagios/Check_MK Password';
289+
$wb['nagios_url_error_regex'] = 'Invalid Nagios/Check_MK URL';
290+
$wb['nagios_url_note_txt'] = 'Check_MK is being autodetected. Placeholder:';
291+
$wb['mailinglist_manager_txt'] = 'Mailinglist Manager';
286292
?>

interface/web/admin/lib/lang/nl_system_config.lng

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,10 @@ $wb['default_dbserver_txt'] = 'Default Database Server';
8585
$wb['ca_name_txt'] = 'Name';
8686
$wb['ca_issue_txt'] = 'Issue';
8787
$wb['ca_wildcard_txt'] = 'Use Wildcard';
88-
$wb['ca_critical_txt'] = 'Strict Check'; //For future use. At this time, CA<E2><80><99>s do not recognize any other flag values as described in RFC 6844
88+
$wb['ca_critical_txt'] = 'Strict Check';
8989
$wb['ca_iodef_txt'] = 'iodef';
9090
$wb['active_txt'] = 'Aktive';
9191
$wb['btn_save_txt'] = 'Save';
9292
$wb['btn_cancel_txt'] = 'Cancel';
93+
$wb['asp_new_package_disabled_txt'] = 'Disable new aps packages';
9394
?>

interface/web/client/lib/lang/nl_client_message_template.lng

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ $wb['Settings'] = 'Setting';
88
$wb['variables_txt'] = 'Variables';
99
$wb['variables_description_txt'] = '(The username and password variables are only available in welcome emails.)';
1010
$wb['duplicate_welcome_error'] = 'There can be only one default welcome email template. Please edit the existing template instead of adding a new one.';
11+
$wb['subject_error_empty'] = 'Subject is empty';
12+
$wb['message_error_empty'] = 'Message is empty';
1113
?>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22
$wb['welcome_user_txt'] = 'Welkom %s';
33
$wb['available_modules_txt'] = 'Beschikbare modules';
4-
$wb['last_login_ip'] = "Last login from %s at %s";
4+
$wb['last_login_ip'] = 'Last login from %s at %s';
55
?>

interface/web/dns/lib/lang/nl_dns_caa.lng

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $wb['ca_hostname_note_txt'] = '(Sepearated list with commas - empty for all host
66
$wb['ca_options_txt'] = 'Additional Options';
77
$wb['ca_options_note_txt'] = 'requested by the CA (Sepearated list with commas)';
88
$wb['ca_wildcard_txt'] = 'Use Wildcard SSL';
9-
$wb['ca_critical_txt'] = 'Strict check'; //For future use. At this time, CAAs do not recognize any other flag values as described in RFC 6844
9+
$wb['ca_critical_txt'] = 'Strict check';
1010
$wb['ttl_txt'] = 'TTL';
1111
$wb['active_txt'] = 'Active';
1212
$wb['select_txt'] = 'Select Certifiction Authority';

interface/web/login/lib/lang/nl_login_as.lng

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Al
1111
$wb['login_as_or_logout_txt'] = 'Do you want to re-login as {UTYPE} or logout?';
1212
$wb['btn_reloginas_txt'] = 'Yes, re-login as %s';
1313
$wb['btn_nologout_txt'] = 'No, logout';
14-
?>
14+
?>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
$wb['list_head_txt'] = 'imail_ml_membership';
3+
$wb['listname_txt'] = 'listname';
4+
$wb['domain_txt'] = 'domain';
5+
?>

interface/web/mail/lib/lang/nl_mail_mailinglist.lng

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,40 @@ $wb['password_match_txt'] = 'The passwords do match.';
1919
$wb['listname_error_unique'] = 'There is already a mailinglist with name on the server. Please choose a different listname.';
2020
$wb['email_error_isemail'] = 'Email address is invalid.';
2121
$wb['mailinglist_txt'] = 'Mailing list';
22+
$wb['heading_general_txt'] = 'General';
23+
$wb['heading_subscription_txt'] = 'Subscription';
24+
$wb['heading_removal_txt'] = 'Removal';
25+
$wb['admins_txt'] = 'Admin\'s email';
26+
$wb['admins_desc_txt'] = 'The additional email addresses that get mails to list name+admin@listdomain.ltd';
27+
$wb['subscribers_txt'] = 'Membership';
28+
$wb['subscribers_desc_txt'] = 'The email addresses subscribed to the list';
29+
$wb['prefix_txt'] = 'Subject prefix';
30+
$wb['prefix_desc_txt'] = 'This will alter the Subject: line, and add a prefix if it\'s not present elsewhere';
31+
$wb['mail_footer_txt'] = 'Footer text';
32+
$wb['mail_footer_desc_txt'] = 'This content is appended to mail sent to the list';
33+
$wb['subscribe_policy_txt'] = 'Subscribe policy';
34+
$wb['sub_disabled_txt'] = 'Disabled';
35+
$wb['sub_confirm_txt'] = 'Confirm';
36+
$wb['sub_approval_txt'] = 'Require approval';
37+
$wb['sub_both_txt'] = 'Confirm and approve';
38+
$wb['sub_none_txt'] = 'Limitless';
39+
$wb['posting_policy_txt'] = 'posting policy';
40+
$wb['post_free_txt'] = 'Free';
41+
$wb['post_closed_txt'] = 'Closed';
42+
$wb['post_moderated_txt'] = 'Moderated';
43+
$wb['list_type_txt'] = 'List type';
44+
$wb['type_open_txt'] = 'Open';
45+
$wb['type_closed_txt'] = 'Closed';
46+
$wb['digestsub_txt'] = 'Enable';
47+
$wb['digesttext_txt'] = 'Thread summary';
48+
$wb['digestinterval_txt'] = 'Interval';
49+
$wb['digestinterval_desc_txt'] = 'Specifies how many days will pass before the next digest is sent. Defaults is 7 days';
50+
$wb['digestmaxmails_txt'] = 'Max mails';
51+
$wb['digestmaxmails_desc_txt'] = 'Specifies how many mails can accumulate before digest sending is triggered. Defaults to 50 mails, meaning that if 50 mails arrive to the list before digestinterval have passed, the digest is delivered';
52+
$wb['archive_txt'] = 'Archive';
53+
$wb['archive_desc_txt'] = 'If checked, the mail will be saved in the archive and not simply deleted';
54+
$wb['welcomeMsg_txt'] = 'Welcome message';
55+
$wb['goodbyeMsg_txt'] = 'Goodbye message';
56+
$wb['open_list_txt'] = 'Open';
57+
$wb['closed_list_txt'] = 'Closed';
2258
?>

0 commit comments

Comments
 (0)