Marius Burkard
2016-04-20 4569cae57f127afd093794310ccd290d2d9fdf36
commit | author | age
91609a 1 <?php
2d870d 2 $wb['limit_maildomain_txt'] = 'Max. number of email domains';
F 3 $wb['limit_mailbox_txt'] = 'Max. number of mailboxes';
4 $wb['limit_mailalias_txt'] = 'Max. number of email aliases';
5 $wb['limit_mailforward_txt'] = 'Max. number of email forwarders';
6 $wb['limit_mailcatchall_txt'] = 'Max. number of email catchall accounts';
7 $wb['limit_mailrouting_txt'] = 'Max. number of email routes';
8 $wb['limit_mailfilter_txt'] = 'Max. number of email filters';
9 $wb['limit_fetchmail_txt'] = 'Max. number of fetchmail accounts';
10 $wb['limit_mailquota_txt'] = 'Mailbox quota';
11 $wb['limit_spamfilter_wblist_txt'] = 'Max. number of spamfilter white / blacklist filters';
12 $wb['limit_spamfilter_user_txt'] = 'Max. number of spamfilter users';
945480 13 $wb['limit_spamfilter_policy_txt'] = 'Max. number of spamfilter policies';
2d870d 14 $wb['default_mailserver_txt'] = 'Default Mailserver';
1ca823 15 $wb['company_name_txt'] = 'Cégnév';
e3133e 16 $wb['contact_firstname_txt'] = 'Contact firstname';
1ca823 17 $wb['contact_name_txt'] = 'Kapcsolattartó';
T 18 $wb['username_txt'] = 'Felhasználónév';
19 $wb['password_txt'] = 'Jelszó';
20 $wb['password_strength_txt'] = 'Jelszó erőssége';
21 $wb['language_txt'] = 'Nyelv';
2d870d 22 $wb['usertheme_txt'] = 'Theme';
1ca823 23 $wb['street_txt'] = 'Utca';
T 24 $wb['zip_txt'] = 'IRSZ';
25 $wb['city_txt'] = 'Város';
26 $wb['state_txt'] = 'Ország';
27 $wb['country_txt'] = 'Megye';
28 $wb['telephone_txt'] = 'Telefon';
29 $wb['mobile_txt'] = 'Mobil';
2d870d 30 $wb['fax_txt'] = 'Fax';
F 31 $wb['email_txt'] = 'Email';
32 $wb['internet_txt'] = 'Internet';
33 $wb['icq_txt'] = 'ICQ';
1ca823 34 $wb['notes_txt'] = 'Megjegyzés';
T 35 $wb['company_txt'] = 'Cég';
36 $wb['title_txt'] = 'Titulus';
37 $wb['firstname_txt'] = 'Keresztnév';
38 $wb['surname_txt'] = 'Vezetéknév';
2d870d 39 $wb['limit_domain_txt'] = 'limit_domain';
F 40 $wb['limit_subdomain_txt'] = 'limit_subdomain';
41 $wb['limit_webquota_txt'] = 'limit_webquota';
42 $wb['limit_database_txt'] = 'Max. number of Databases';
43 $wb['limit_cron_txt'] = 'Max. number of cron jobs';
44 $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)';
45 $wb['limit_cron_frequency_txt'] = 'Min. delay between executions';
46 $wb['ip_address_txt'] = 'ip_address';
47 $wb['limit_client_error_notint'] = 'The sub client limit must be a number.';
48 $wb['firstname_error_empty'] = 'Firstname is empty.';
49 $wb['contact_error_empty'] = 'Contact name is empty.';
50 $wb['default_webserver_txt'] = 'Default Webserver';
51 $wb['limit_web_domain_txt'] = 'Max. number of web domains';
52 $wb['limit_web_aliasdomain_txt'] = 'Max. number of web aliasdomains';
53 $wb['limit_web_subdomain_txt'] = 'Max. number of web subdomains';
54 $wb['limit_ftp_user_txt'] = 'Max. number of FTP users';
55 $wb['default_dnsserver_txt'] = 'Default DNS Server';
56 $wb['limit_dns_zone_txt'] = 'Max. number of DNS zones';
a59731 57 $wb['limit_dns_slave_zone_txt'] = 'Max. number of secondary DNS zones';
2d870d 58 $wb['limit_dns_record_txt'] = 'Max. number DNS records';
F 59 $wb['limit_shell_user_txt'] = 'Max. number of Shell users';
60 $wb['limit_client_txt'] = 'Max. number of Clients';
61 $wb['username_error_empty'] = 'Username is empty.';
62 $wb['username_error_unique'] = 'The username must be unique.';
63 $wb['limit_maildomain_error_notint'] = 'The email domain limit must be a number.';
64 $wb['limit_mailbox_error_notint'] = 'The mailbox limit must be a number.';
65 $wb['limit_mailalias_error_notint'] = 'The email alias limit must be a number.';
66 $wb['limit_mailforward_error_notint'] = 'The email forward limit must be a number.';
67 $wb['limit_mailcatchall_error_notint'] = 'The email catchall limit must be a number.';
68 $wb['limit_mailrouting_error_notint'] = 'The email routing limit must be a number.';
69 $wb['limit_mailfilter_error_notint'] = 'The email filter limit must be a number.';
70 $wb['limit_mailfetchmail_error_notint'] = 'The fetchmail limit must be a number.';
71 $wb['limit_mailquota_error_notint'] = 'The email quota limit must be a number.';
72 $wb['limit_spamfilter_wblist_error_notint'] = 'The spamfilter white / blacklist limit must be a number.';
73 $wb['limit_spamfilter_user_error_notint'] = 'The spamfilter user limit must be a number.';
74 $wb['limit_spamfilter_policy_error_notint'] = 'The spamfilter policy limit must be a number.';
75 $wb['limit_web_domain_error_notint'] = 'The website limit must be a number.';
76 $wb['limit_web_aliasdomain_error_notint'] = 'The website alias domain limit must be a number.';
77 $wb['limit_web_subdomain_error_notint'] = 'The website subdomain limit must be a number.';
78 $wb['limit_ftp_user_error_notint'] = 'The ftp user limit must be a number.';
79 $wb['limit_shell_user_error_notint'] = 'The shell user limit must be a number.';
80 $wb['limit_dns_zone_error_notint'] = 'The dns record limit must be a number.';
a59731 81 $wb['limit_dns_slave_zone_error_notint'] = 'The dns slave zone limit must be a number.';
D 82 $wb['limit_dns_record_error_notint'] = 'The dns record limit must be a number.';
2d870d 83 $wb['default_dbserver_txt'] = 'Default Database Server';
F 84 $wb['limit_database_error_notint'] = 'The database limit must be a number.';
85 $wb['limit_cron_error_notint'] = 'The cron limit must be a number.';
86 $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.';
87 $wb['username_error_regex'] = 'The Username contains invalid chracaters.';
88 $wb['template_master_txt'] = 'Master template';
89 $wb['template_additional_txt'] = 'Addon template';
90 $wb['ssh_chroot_txt'] = 'SSH-Chroot Options';
91 $wb['web_php_options_txt'] = 'PHP Options';
92 $wb['limit_client_error'] = 'The max. number of clients is reached.';
f58a7a 93 $wb['limit_client_error_positive_or_unlimited'] = 'The number of clients must be > 0';
2d870d 94 $wb['limit_web_quota_txt'] = 'Web Quota';
899771 95 $wb['limit_traffic_quota_txt'] = 'Traffic Quota';
T 96 $wb['limit_trafficquota_error_notint'] = 'Traffic Quota must be a number.';
1ca823 97 $wb['customer_no_txt'] = 'Ügyfélszám';
aa3ea2 98 $wb['vat_id_txt'] = 'VAT ID';
1ca823 99 $wb['required_fields_txt'] = '* Kötelező mező';
T 100 $wb['limit_mailmailinglist_txt'] = 'Max. number of mailing lists';
101 $wb['limit_mailmailinglist_error_notint'] = 'The mailing list record limit must be a number.';
d7be27 102 $wb['limit_mailaliasdomain_txt'] = 'Max. number of domain aliases';
T 103 $wb['limit_webdav_user_txt'] = 'Max. number of Webdav users';
104 $wb['limit_webdav_user_error_notint'] = 'The webdav user limit must be a number.';
f40d19 105 $wb['limit_backup_txt'] = 'Backupfunction available';
522ef8 106 $wb['limit_openvz_vm_txt'] = 'Max. number of virtual servers';
T 107 $wb['limit_openvz_vm_template_id_txt'] = 'Force virtual server template';
108 $wb['limit_openvz_vm_error_notint'] = 'The virtual server limit must be a number.';
8cf78b 109 $wb['web_php_options_notempty'] = 'No PHP option(s) selected. Select at least one PHP option.';
T 110 $wb['ssh_chroot_notempty'] = 'No SSH chroot option selected. Select at least one SSH option.';
e94a9f 111 $wb['username_error_collision'] = 'The username may not start with the word -web- or -web- followed by a number.';
142907 112 $wb['add_additional_template_txt'] = 'Add additional template';
T 113 $wb['delete_additional_template_txt'] = 'Delete additional template';
114 $wb['limit_cgi_txt'] = 'CGI available';
115 $wb['limit_ssi_txt'] = 'SSI available';
116 $wb['limit_perl_txt'] = 'Perl available';
117 $wb['limit_ruby_txt'] = 'Ruby available';
118 $wb['limit_python_txt'] = 'Python available';
119 $wb['force_suexec_txt'] = 'SuEXEC forced';
120 $wb['limit_hterror_txt'] = 'Custom error docs available';
121 $wb['limit_wildcard_txt'] = 'Wildcard subdomain available';
122 $wb['limit_ssl_txt'] = 'SSL available';
123 $wb['web_limits_txt'] = 'Web Limits';
124 $wb['email_limits_txt'] = 'Email Limits';
125 $wb['database_limits_txt'] = 'Database Limits';
126 $wb['cron_job_limits_txt'] = 'Cron Job Limits';
127 $wb['dns_limits_txt'] = 'DNS Limits';
128 $wb['virtualization_limits_txt'] = 'Virtualization Limits';
129 $wb['generate_password_txt'] = 'Generate Password';
130 $wb['repeat_password_txt'] = 'Repeat Password';
131 $wb['password_mismatch_txt'] = 'The passwords do not match.';
132 $wb['password_match_txt'] = 'The passwords do match.';
bfcdef 133 $wb['email_error_isemail'] = 'Please enter a valid email address.';
T 134 $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).';
10b4c8 135 $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.';
T 136 $wb['paypal_email_txt'] = 'PayPal Email';
137 $wb['company_id_txt'] = 'Company/Entrepreneur ID';
138 $wb['bank_account_number_txt'] = 'Bank account no.';
139 $wb['bank_account_owner_txt'] = 'Bank account owner';
140 $wb['bank_code_txt'] = 'Bank code';
141 $wb['bank_name_txt'] = 'Bank name';
142 $wb['bank_account_iban_txt'] = 'IBAN';
143 $wb['bank_account_swift_txt'] = 'BIC / Swift';
cc6568 144 $wb['aps_limits_txt'] = 'APS Installer Limits';
H 145 $wb['limit_aps_txt'] = 'Max. number of APS instances';
146 $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.';
7b47c0 147 $wb['default_slave_dnsserver_txt'] = 'Default Secondary DNS Server';
992797 148 $wb['locked_txt'] = 'Locked';
MC 149 $wb['canceled_txt'] = 'Canceled';
150 $wb['gender_m_txt'] = 'Mr.';
151 $wb['gender_f_txt'] = 'Ms.';
152 $wb['gender_txt'] = 'Title';
dc9e64 153 $wb['customer_no_template_txt'] = 'Customer No. template';
TB 154 $wb['customer_no_template_error_regex_txt'] = 'The customer No. template contains invalid characters';
155 $wb['customer_no_start_txt'] = 'Customer No. start value';
156 $wb['customer_no_counter_txt'] = 'Customer No. counter';
157 $wb['added_by_txt'] = 'Added by';
158 $wb['added_date_txt'] = 'Added date';
159 $wb['limit_domainmodule_error_notint'] = 'Domainmodule limit must be a number.';
160 $wb['limit_domainmodule_txt'] = 'Domainmodule Limit';
161 $wb['client_limits_txt'] = 'Client Limits';
a08e6c 162 $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \\"custom\\" is selected.';
407003 163 $wb['btn_save_txt'] = 'Save';
TB 164 $wb['btn_cancel_txt'] = 'Cancel';
165 $wb['email_error_empty'] = 'Email is empty';
166 $wb['web_servers_txt'] = 'Webservers';
167 $wb['web_servers_placeholder'] = 'Select Webservers';
168 $wb['no_web_server_error'] = 'At least one webserver must be selected.';
169 $wb['web_servers_used'] = 'The server you are trying to remove from this client is used as a webserver. Be sure that this server is not used by this client before to remove it.';
170 $wb['dns_servers_txt'] = 'DNS Server';
171 $wb['dns_servers_placeholder'] = 'Select DNS Servers';
172 $wb['no_dns_server_error'] = 'At least one DNS server must be selected.';
173 $wb['dns_servers_used'] = 'The server you are trying to remove from this client is used as a DNS server. Be sure that this server is not used by this client before to remove it.';
174 $wb['db_servers_txt'] = 'Database Server';
175 $wb['db_servers_placeholder'] = 'Select Database Servers';
176 $wb['no_db_server_error'] = 'At least one Database server must be selected.';
177 $wb['db_servers_used'] = 'The server you are trying to remove from this client is used as a Database server. Be sure that this server is not used by this client before to remove it.';
178 $wb['mail_servers_txt'] = 'Mailservers';
179 $wb['mail_servers_placeholder'] = 'Select Mailservers';
180 $wb['no_mail_server_error'] = 'At least one Mailserver must be selected.';
181 $wb['mail_servers_used'] = 'The server you are trying to remove from this client is used as a Mailserver. Be sure that this server is not used by this client before to remove it.';
182 $wb['xmpp_limits_txt'] = 'XMPP Limits';
183 $wb['xmpp_servers_txt'] = 'XMPP Servers';
184 $wb['xmpp_servers_placeholder'] = 'Select XMPP Servers';
185 $wb['no_xmpp_server_error'] = 'At least one XMPP Server must be selected.';
186 $wb['xmpp_servers_used'] = 'The server you are trying to remove from this client is used as a XMPP Server. Be sure that this server is not used by this client before you remove it.';
187 $wb['limit_xmpp_domain_error_notint'] = 'The XMPP domain limit must be a number.';
188 $wb['limit_xmpp_user_error_notint'] = 'The XMPP user limit must be a number.';
189 $wb['limit_xmpp_domain_txt'] = 'Max. number of XMPP domains';
190 $wb['limit_xmpp_user_txt'] = 'Max. number of XMPP accounts';
191 $wb['limit_xmpp_muc_txt'] = 'Multiuser chat available';
192 $wb['limit_xmpp_pastebin_txt'] = 'Pastebin for MUC available';
193 $wb['limit_xmpp_httparchive_txt'] = 'HTTP archive for MUC available';
194 $wb['limit_xmpp_anon_txt'] = 'Anonymous host available';
195 $wb['limit_xmpp_vjud_txt'] = 'VJUD user directory available';
196 $wb['limit_xmpp_proxy_txt'] = 'Bytestream proxy available';
197 $wb['limit_xmpp_status_txt'] = 'Status host available';
198 $wb['invalid_vat_id'] = 'The VAT ID is invalid.';
7e2a3f 199 $wb['limit_database_user_txt'] = 'Max. Database users';
FS 200 $wb['limit_database_user_error_notint'] = 'The database user limit must be a number.';
201 $wb['limit_database_quota_txt'] = 'Database quota';
202 $wb['limit_database_quota_error_notint'] = 'The database quota limit must be a number.';
91609a 203 ?>