Merged revisons 3687-3748 from 3.0.5 stable branch.
624 files modified
18 files added
| | |
| | | } else { |
| | | $content = str_replace('{ssl_comment}', '#', $content); |
| | | } |
| | | if(is_file($install_dir.'/interface/ssl/ispserver.crt') && is_file($install_dir.'/interface/ssl/ispserver.key') && is_file($install_dir.'/interface/ssl/ispserver.bundle')) { |
| | | $content = str_replace('{ssl_bundle_comment}', '', $content); |
| | | } else { |
| | | $content = str_replace('{ssl_bundle_comment}', '#', $content); |
| | | } |
| | | |
| | | wf("$vhost_conf_dir/ispconfig.vhost", $content); |
| | | |
| | |
| | | $content = str_replace('{vhost_port}', $conf['nginx']['vhost_port'], $content); |
| | | |
| | | if(is_file($install_dir.'/interface/ssl/ispserver.crt') && is_file($install_dir.'/interface/ssl/ispserver.key')) { |
| | | $content = str_replace('{ssl_on}', ' ssl', $content); |
| | | $content = str_replace('{ssl_on}', ' on', $content); |
| | | $content = str_replace('{ssl_comment}', '', $content); |
| | | $content = str_replace('{fastcgi_ssl}', 'on', $content); |
| | | } else { |
| | | $content = str_replace('{ssl_on}', '', $content); |
| | | $content = str_replace('{ssl_on}', ' off', $content); |
| | | $content = str_replace('{ssl_comment}', '#', $content); |
| | | $content = str_replace('{fastcgi_ssl}', 'off', $content); |
| | | } |
| | |
| | | } else { |
| | | $content = str_replace('{ssl_comment}', '#', $content); |
| | | } |
| | | if(is_file($install_dir.'/interface/ssl/ispserver.crt') && is_file($install_dir.'/interface/ssl/ispserver.key') && is_file($install_dir.'/interface/ssl/ispserver.bundle')) { |
| | | $content = str_replace('{ssl_bundle_comment}', '', $content); |
| | | } else { |
| | | $content = str_replace('{ssl_bundle_comment}', '#', $content); |
| | | } |
| | | |
| | | $vhost_path = $conf['apache']['vhost_conf_dir'].'/ispconfig.vhost'; |
| | | $this->write_config_file($vhost_path, $content); |
| | |
| | | $content = str_replace('{vhost_port}', $conf['nginx']['vhost_port'], $content); |
| | | |
| | | if(is_file($install_dir.'/interface/ssl/ispserver.crt') && is_file($install_dir.'/interface/ssl/ispserver.key')) { |
| | | $content = str_replace('{ssl_on}', ' ssl', $content); |
| | | $content = str_replace('{ssl_on}', ' on', $content); |
| | | $content = str_replace('{ssl_comment}', '', $content); |
| | | $content = str_replace('{fastcgi_ssl}', 'on', $content); |
| | | } else { |
| | | $content = str_replace('{ssl_on}', '', $content); |
| | | $content = str_replace('{ssl_on}', ' off', $content); |
| | | $content = str_replace('{ssl_comment}', '#', $content); |
| | | $content = str_replace('{fastcgi_ssl}', 'off', $content); |
| | | } |
| | |
| | | } else { |
| | | $content = str_replace('{ssl_comment}', '#', $content); |
| | | } |
| | | if(is_file($install_dir.'/interface/ssl/ispserver.crt') && is_file($install_dir.'/interface/ssl/ispserver.key') && is_file($install_dir.'/interface/ssl/ispserver.bundle')) { |
| | | $content = str_replace('{ssl_bundle_comment}', '', $content); |
| | | } else { |
| | | $content = str_replace('{ssl_bundle_comment}', '#', $content); |
| | | } |
| | | |
| | | $content = str_replace('/var/www/', '/srv/www/', $content); |
| | | |
| | |
| | | $content = str_replace('{vhost_port}', $conf['nginx']['vhost_port'], $content); |
| | | |
| | | if(is_file($install_dir.'/interface/ssl/ispserver.crt') && is_file($install_dir.'/interface/ssl/ispserver.key')) { |
| | | $content = str_replace('{ssl_on}', ' ssl', $content); |
| | | $content = str_replace('{ssl_on}', ' on', $content); |
| | | $content = str_replace('{ssl_comment}', '', $content); |
| | | $content = str_replace('{fastcgi_ssl}', 'on', $content); |
| | | } else { |
| | | $content = str_replace('{ssl_on}', '', $content); |
| | | $content = str_replace('{ssl_on}', ' off', $content); |
| | | $content = str_replace('{ssl_comment}', '#', $content); |
| | | $content = str_replace('{fastcgi_ssl}', 'off', $content); |
| | | } |
| | |
| | | } else { |
| | | $content = str_replace('{ssl_comment}', '#', $content); |
| | | } |
| | | if(is_file($install_dir.'/interface/ssl/ispserver.crt') && is_file($install_dir.'/interface/ssl/ispserver.key') && is_file($install_dir.'/interface/ssl/ispserver.bundle')) { |
| | | $content = str_replace('{ssl_bundle_comment}', '', $content); |
| | | } else { |
| | | $content = str_replace('{ssl_bundle_comment}', '#', $content); |
| | | } |
| | | |
| | | wf($vhost_conf_dir.'/ispconfig.vhost', $content); |
| | | |
New file |
| | |
| | | |
| | | ALTER TABLE `web_database` ADD `database_name_prefix` VARCHAR( 50 ) NOT NULL AFTER `database_name`; |
| | | UPDATE `web_database` SET `database_name_prefix` = '#' WHERE 1; |
| | | ALTER TABLE `web_database_user` ADD `database_user_prefix` VARCHAR( 50 ) NOT NULL AFTER `database_user`; |
| | | UPDATE `web_database_user` SET `database_user_prefix` = '#' WHERE 1; |
| | | ALTER TABLE `ftp_user` ADD `username_prefix` VARCHAR( 50 ) NOT NULL AFTER `username`; |
| | | UPDATE `ftp_user` SET `username_prefix` = '#' WHERE 1; |
| | | ALTER TABLE `shell_user` ADD `username_prefix` VARCHAR( 50 ) NOT NULL AFTER `username`; |
| | | UPDATE `shell_user` SET `username_prefix` = '#' WHERE 1; |
| | | ALTER TABLE `webdav_user` ADD `username_prefix` VARCHAR( 50 ) NOT NULL AFTER `username`; |
| | | UPDATE `webdav_user` SET `username_prefix` = '#' WHERE 1; |
| | |
| | | `server_id` int(11) unsigned NOT NULL default '0', |
| | | `parent_domain_id` int(11) unsigned NOT NULL default '0', |
| | | `username` varchar(64) default NULL, |
| | | `username_prefix` varchar(50) NOT NULL default '', |
| | | `password` varchar(64) default NULL, |
| | | `quota_size` bigint(20) NOT NULL default '-1', |
| | | `active` enum('n','y') NOT NULL default 'y', |
| | |
| | | `server_id` int(11) unsigned NOT NULL default '0', |
| | | `parent_domain_id` int(11) unsigned NOT NULL default '0', |
| | | `username` varchar(64) default NULL, |
| | | `username_prefix` varchar(50) NOT NULL default '', |
| | | `password` varchar(64) default NULL, |
| | | `quota_size` bigint(20) NOT NULL default '-1', |
| | | `active` enum('n','y') NOT NULL default 'y', |
| | |
| | | `server_id` int(11) unsigned NOT NULL DEFAULT '0', |
| | | `parent_domain_id` int(11) unsigned NOT NULL DEFAULT '0', |
| | | `username` varchar(64) DEFAULT NULL, |
| | | `username_prefix` varchar(50) NOT NULL default '', |
| | | `password` varchar(64) DEFAULT NULL, |
| | | `active` enum('n','y') NOT NULL DEFAULT 'y', |
| | | `dir` varchar(255) DEFAULT NULL, |
| | |
| | | `parent_domain_id` int(11) unsigned NOT NULL DEFAULT '0', |
| | | `type` varchar(16) NOT NULL DEFAULT 'y', |
| | | `database_name` varchar(64) DEFAULT NULL, |
| | | `database_name_prefix` varchar(50) NOT NULL default '', |
| | | `database_user_id` int(11) unsigned DEFAULT NULL, |
| | | `database_ro_user_id` int(11) unsigned DEFAULT NULL, |
| | | `database_charset` varchar(64) DEFAULT NULL, |
| | |
| | | `sys_perm_other` varchar(5) DEFAULT NULL, |
| | | `server_id` int(11) UNSIGNED NOT NULL DEFAULT '0', |
| | | `database_user` varchar(64) DEFAULT NULL, |
| | | `database_user_prefix` varchar(50) NOT NULL default '', |
| | | `database_password` varchar(64) DEFAULT NULL, |
| | | PRIMARY KEY (`database_user_id`) |
| | | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; |
| | |
| | | Order allow,deny |
| | | Allow from all |
| | | </Directory> |
| | | IPCCommTimeout 7200 |
| | | </IfModule> |
| | | |
| | | # <IfModule mod_php5.c> |
| | |
| | | {ssl_comment}SSLEngine On |
| | | {ssl_comment}SSLCertificateFile /usr/local/ispconfig/interface/ssl/ispserver.crt |
| | | {ssl_comment}SSLCertificateKeyFile /usr/local/ispconfig/interface/ssl/ispserver.key |
| | | {ssl_bundle_comment}SSLCACertificateFile /usr/local/ispconfig/interface/ssl/ispserver.bundle |
| | | |
| | | </VirtualHost> |
| | | |
| | |
| | | website_path=/var/www/clients/client[client_id]/web[website_id]
|
| | | website_symlinks=/var/www/[website_domain]/:/var/www/clients/client[client_id]/[website_domain]/
|
| | | website_symlinks_rel=n
|
| | | vhost_rewrite_v6=n
|
| | | vhost_conf_dir=/etc/apache2/sites-available
|
| | | vhost_conf_enabled_dir=/etc/apache2/sites-enabled
|
| | | nginx_vhost_conf_dir=/etc/nginx/sites-available
|
| | |
| | | dblist_phpmyadmin_link=y |
| | | phpmyadmin_url=/phpmyadmin |
| | | webftp_url= |
| | | client_username_web_check_disabled=n |
| | | |
| | | [tools] |
| | | |
| | |
| | | dashboard_atom_url_reseller=http://www.ispconfig.org/atom |
| | | dashboard_atom_url_client=http://www.ispconfig.org/atom |
| | | monitor_key= |
| | | tab_change_discard=n |
| | | tab_change_warning=n |
| | | use_loadindicator=y |
| | | use_combobox=y |
| | | maintenance_mode=n |
| | |
| | | }
|
| | | //* Find a free db username for the app
|
| | | for($n = 1; $n <= 1000; $n++) {
|
| | | $mysql_db_user = ($dbname_prefix != '' ? $dbname_prefix.'aps'.$n : uniqid('aps'));
|
| | | $mysql_db_user = ($dbuser_prefix != '' ? $dbuser_prefix.'aps'.$n : uniqid('aps'));
|
| | | $tmp = $app->db->queryOneRecord("SELECT count(database_user_id) as number FROM web_database_user WHERE database_user = '".$app->db->quote($mysql_db_user)."'");
|
| | | if($tmp['number'] == 0) break;
|
| | | }
|
| | |
| | | $mysql_db_password = $settings['main_database_password'];
|
| | |
|
| | | //* Create the mysql database user
|
| | | $insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `database_user`, `database_password`) |
| | | VALUES( ".$websrv['sys_userid'].", ".$websrv['sys_groupid'].", 'riud', '".$websrv['sys_perm_group']."', '', 0, '$mysql_db_user', PASSWORD('$mysql_db_password'))";
|
| | | $insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `database_user`, `database_user_prefix`, `database_password`) |
| | | VALUES( ".$websrv['sys_userid'].", ".$websrv['sys_groupid'].", 'riud', '".$websrv['sys_perm_group']."', '', 0, '$mysql_db_user', '".$app->db->quote($dbuser_prefix) . "', PASSWORD('$mysql_db_password'))";
|
| | | $mysql_db_user_id = $app->db->datalogInsert('web_database_user', $insert_data, 'database_user_id');
|
| | |
|
| | | //* Create the mysql database
|
| | | $insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `parent_domain_id`, `type`, `database_name`, `database_user_id`, `database_ro_user_id`, `database_charset`, `remote_access`, `remote_ips`, `backup_copies`, `active`, `backup_interval`) |
| | | VALUES( ".$websrv['sys_userid'].", ".$websrv['sys_groupid'].", 'riud', '".$websrv['sys_perm_group']."', '', $mysql_db_server_id, ".$websrv['domain_id'].", 'mysql', '$mysql_db_name', '$mysql_db_user_id', 0, '', '$mysql_db_remote_access', '$mysql_db_remote_ips', ".$websrv['backup_copies'].", 'y', '".$websrv['backup_interval']."')";
|
| | | $insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `parent_domain_id`, `type`, `database_name`, `database_name_prefix`, `database_user_id`, `database_ro_user_id`, `database_charset`, `remote_access`, `remote_ips`, `backup_copies`, `active`, `backup_interval`) |
| | | VALUES( ".$websrv['sys_userid'].", ".$websrv['sys_groupid'].", 'riud', '".$websrv['sys_perm_group']."', '', $mysql_db_server_id, ".$websrv['domain_id'].", 'mysql', '$mysql_db_name', '" . $app->db->quote($dbname_prefix) . "', '$mysql_db_user_id', 0, '', '$mysql_db_remote_access', '$mysql_db_remote_ips', ".$websrv['backup_copies'].", 'y', '".$websrv['backup_interval']."')";
|
| | | $app->db->datalogInsert('web_database', $insert_data, 'database_id');
|
| | |
|
| | | //* Add db details to package settings
|
| | |
| | | // is not empty for further validation
|
| | | if(!empty($doc_root))
|
| | | {
|
| | | $used_path = $docroot['document_root'];
|
| | | $used_path = $doc_root['document_root'];
|
| | | if(substr($used_path, -1) != '/') $used_path .= '/';
|
| | |
|
| | | $location_for_domain = $app->db->queryOneRecord("SELECT value
|
| | |
| | | AND instance_id = '".$app->db->quote($instance_domains[$i]['instance_id'])."';");
|
| | |
|
| | | // The location might be empty but the DB return must not be false!
|
| | | if($location_for_domain) $used_path .= $location_for_domain['value']; |
| | | if($location_for_domain) $used_path .= $location_for_domain['value']; |
| | |
|
| | | if($new_path == $used_path)
|
| | | {
|
| | |
| | | } |
| | | |
| | | public function intval($string, $force_numeric = false) { |
| | | if(intval($string) == 2147483647) { |
| | | if(intval($string) == 2147483647 || ($string > 0 && intval($string) < 0)) { |
| | | if($force_numeric == true) return floatval($string); |
| | | elseif(preg_match('/^([-]?)[0]*([1-9][0-9]*)([^0-9].*)*$/', $string, $match)) return $match[1].$match[2]; |
| | | else return 0; |
| | |
| | | if($_SESSION['s']['user']['typ'] == "admin") { |
| | | $sql_where = ''; |
| | | } else { |
| | | $sql_where = $app->tform->getAuthSQL('r').' and'; |
| | | $sql_where = $app->tform->getAuthSQL('r', $app->listform->listDef['table']).' and'; |
| | | //$sql_where = $app->tform->getAuthSQL('r').' and'; |
| | | } |
| | | } |
| | | if($this->SQLExtWhere != '') { |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get alias details |
| | | public function mail_aliasdomain_get($session_id, $primary_id) |
| | | { |
| | | global $app; |
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_aliasdomain_get')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $app->uses('remoting_lib'); |
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_aliasdomain.tform.php'); |
| | | return $app->remoting_lib->getDataRecord($primary_id); |
| | | } |
| | | |
| | | //* aliasy email |
| | | public function mail_aliasdomain_add($session_id, $client_id, $params) |
| | | { |
| | | if (!$this->checkPerm($session_id, 'mail_aliasdomain_add')) |
| | | { |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $affected_rows = $this->insertQuery('../mail/form/mail_aliasdomain.tform.php', $client_id, $params); |
| | | return $affected_rows; |
| | | } |
| | | |
| | | |
| | | public function mail_aliasdomain_update($session_id, $client_id, $primary_id, $params) |
| | | { |
| | | if (!$this->checkPerm($session_id, 'mail_aliasdomain_update')) |
| | | { |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $affected_rows = $this->updateQuery('../mail/form/mail_aliasdomain.tform.php', $client_id, $primary_id, $params); |
| | | return $affected_rows; |
| | | } |
| | | |
| | | public function mail_aliasdomain_delete($session_id, $primary_id) |
| | | { |
| | | if (!$this->checkPerm($session_id, 'mail_aliasdomain_delete')) |
| | | { |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $affected_rows = $this->deleteQuery('../mail/form/mail_aliasdomain.tform.php', $primary_id); |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get mail mailinglist details |
| | | public function mail_mailinglist_get($session_id, $primary_id) |
| | | { |
| | |
| | | //* aliasy email |
| | | public function mail_alias_add($session_id, $client_id, $params) |
| | | { |
| | | global $app; |
| | | |
| | | if (!$this->checkPerm($session_id, 'mail_alias_add')) |
| | | { |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | |
| | | //* Check if there is no active mailbox with this address |
| | | $tmp = $app->db->queryOneRecord("SELECT count(mailuser_id) as number FROM mail_user WHERE postfix = 'y' AND email = '".$app->db->quote($params["source"])."'"); |
| | | if($tmp['number'] > 0) { |
| | | $this->server->fault('duplicate','There is already a mailbox with this email address.'); |
| | | } |
| | | unset($tmp); |
| | | |
| | | $affected_rows = $this->insertQuery('../mail/form/mail_alias.tform.php', $client_id, $params); |
| | | return $affected_rows; |
| | | } |
| | |
| | | |
| | | public function mail_alias_update($session_id, $client_id, $primary_id, $params) |
| | | { |
| | | if (!$this->checkPerm($session_id, 'mail_alias_update')) |
| | | { |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $affected_rows = $this->updateQuery('../mail/form/mail_alias.tform.php', $client_id, $primary_id, $params); |
| | | return $affected_rows; |
| | | global $app; |
| | | |
| | | if (!$this->checkPerm($session_id, 'mail_alias_update')) |
| | | { |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | |
| | | //* Check if there is no active mailbox with this address |
| | | $tmp = $app->db->queryOneRecord("SELECT count(mailuser_id) as number FROM mail_user WHERE postfix = 'y' AND email = '".$app->db->quote($params["source"])."'"); |
| | | if($tmp['number'] > 0) { |
| | | $this->server->fault('duplicate','There is already a mailbox with this email address.'); |
| | | } |
| | | unset($tmp); |
| | | |
| | | $affected_rows = $this->updateQuery('../mail/form/mail_alias.tform.php', $client_id, $primary_id, $params); |
| | | return $affected_rows; |
| | | } |
| | | |
| | | public function mail_alias_delete($session_id, $primary_id) |
| | |
| | | //* Update a record |
| | | public function sites_database_user_update($session_id, $client_id, $primary_id, $params) |
| | | { |
| | | global $app; |
| | | |
| | | if(!$this->checkPerm($session_id, 'sites_database_user_update')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $app->uses('remoting_lib'); |
| | | $app->remoting_lib->loadFormDef('../sites/form/database_user.tform.php'); |
| | | $old_rec = $app->remoting_lib->getDataRecord($primary_id); |
| | | |
| | | return $this->updateQuery('../sites/form/database_user.tform.php', $client_id, $primary_id, $params); |
| | | $result = $this->updateQuery('../sites/form/database_user.tform.php', $client_id, $primary_id, $params); |
| | | |
| | | $new_rec = $app->remoting_lib->getDataRecord($primary_id); |
| | | |
| | | $records = $app->db->queryAllRecords("SELECT DISTINCT server_id FROM web_database WHERE database_user_id = '".$app->functions->intval($primary_id)."' UNION SELECT DISTINCT server_id FROM web_database WHERE database_ro_user_id = '".$app->functions->intval($primary_id)."'"); |
| | | foreach($records as $rec) { |
| | | $tmp_rec = $new_rec; |
| | | $tmp_rec['server_id'] = $rec['server_id']; |
| | | $app->remoting_lib->datalogSave('UPDATE', $primary_id, $old_rec, $tmp_rec); |
| | | } |
| | | unset($new_rec); |
| | | unset($old_rec); |
| | | unset($records); |
| | | |
| | | return $result; |
| | | } |
| | | |
| | | //* Delete a record |
| | | public function sites_database_user_delete($session_id, $primary_id) |
| | | { |
| | | global $app; |
| | | |
| | | if(!$this->checkPerm($session_id, 'sites_database_user_delete')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | |
| | | $app->db->datalogDelete('web_database_user', 'database_user_id', $primary_id); |
| | | $affected_rows = $this->deleteQuery('../sites/form/database_user.tform.php',$primary_id); |
| | | |
| | | $records = $app->db->queryAllRecords("SELECT database_id FROM web_database WHERE database_user_id = '".$app->functions->intval($primary_id)."'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogUpdate('web_database','database_user_id=NULL','database_id', $rec['database_id']); |
| | | |
| | | } |
| | | $records = $app->db->queryAllRecords("SELECT database_id FROM web_database WHERE database_ro_user_id = '".$app->functions->intval($primary_id)."'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogUpdate('web_database','database_ro_user_id=NULL','database_id', $rec['database_id']); |
| | | } |
| | | |
| | | return $affected_rows; |
| | | } |
| | | |
| | |
| | | var $sys_default_group; |
| | | var $sys_groups; |
| | | var $client_id; |
| | | var $dataRecord; |
| | | |
| | | |
| | | //* Load the form definition from file. |
| | |
| | | if($dbencode == true) $new_record[$key] = $app->db->quote($new_record[$key]); |
| | | } |
| | | } |
| | | if(isset($record['_ispconfig_pw_crypted'])) $new_record['_ispconfig_pw_crypted'] = $record['_ispconfig_pw_crypted']; // this one is not in form definitions! |
| | | return $new_record; |
| | | } |
| | | |
| | |
| | | |
| | | $this->action = $action; |
| | | $this->primary_id = $primary_id; |
| | | $this->dataRecord = $record; |
| | | |
| | | $record = $this->encode($record,true); |
| | | $sql_insert_key = ''; |
| | |
| | | $language = $app->db->quote($params["language"]); |
| | | $groupid = $app->db->datalogInsert('sys_group', "(name,description,client_id) VALUES ('$username','','$insert_id')", 'groupid'); |
| | | $groups = $groupid; |
| | | $password = $app->auth->crypt_password(stripslashes($password)); |
| | | if(!isset($params['_ispconfig_pw_crypted']) || $params['_ispconfig_pw_crypted'] != 1) $password = $app->auth->crypt_password(stripslashes($password)); |
| | | $sql1 = "INSERT INTO sys_user (username,passwort,modules,startmodule,app_theme,typ,active,language,groups,default_group,client_id) |
| | | VALUES ('$username','$password','$modules','$startmodule','$usertheme','$type','$active','$language',$groups,$groupid,$insert_id)"; |
| | | $app->db->query($sql1); |
| | |
| | | $username = $app->db->quote($params["username"]); |
| | | $clear_password = $app->db->quote($params["password"]); |
| | | $client_id = $app->functions->intval($client_id); |
| | | $password = $app->auth->crypt_password(stripslashes($clear_password)); |
| | | if(!isset($params['_ispconfig_pw_crypted']) || $params['_ispconfig_pw_crypted'] != 1) $password = $app->auth->crypt_password(stripslashes($clear_password)); |
| | | else $password = $clear_password; |
| | | if ($clear_password) $pwstring = ", passwort = '$password'"; else $pwstring ="" ; |
| | | $sql = "UPDATE sys_user set username = '$username' $pwstring WHERE client_id = $client_id"; |
| | | $app->db->query($sql); |
| | |
| | | } |
| | | break; |
| | | case 'INTEGER': |
| | | $new_record[$key] = (isset($record[$key]))?$app->functions->intval($record[$key]):0; |
| | | $new_record[$key] = (isset($record[$key]))?$app->functions->intval($record[$key]):0; |
| | | //if($new_record[$key] != $record[$key]) $new_record[$key] = $field['default']; |
| | | //if($key == 'refresh') die($record[$key]); |
| | | break; |
| | |
| | | } |
| | | break; |
| | | case 'ISINT': |
| | | if(function_exists('filter_var')) { |
| | | if(function_exists('filter_var') && $field_value < 2147483647) { |
| | | if($field_value != '' && filter_var($field_value, FILTER_VALIDATE_INT) === false) { |
| | | $errmsg = $validator['errmsg']; |
| | | if(isset($this->wordbook[$errmsg])) { |
| | |
| | | } |
| | | return $name; |
| | | } |
| | | |
| | | |
| | | function removePrefix($name, $currentPrefix, $globalPrefix) { |
| | | if($name == "") return ""; |
| | | |
| | | if($currentPrefix === '') return $name; // empty prefix, do not change name |
| | | if($currentPrefix === '#') $currentPrefix = $globalPrefix; // entry has no prefix set, maybe it was created before this function was introduced |
| | | |
| | | if($currentPrefix === '') return $name; // no current prefix and global prefix is empty -> nothing to remove here. |
| | | |
| | | return preg_replace('/^' . preg_quote($currentPrefix, '/') . '/', '', $name); // return name without prefix |
| | | } |
| | | |
| | | function getPrefix($currentPrefix, $userPrefix, $adminPrefix = false) { |
| | | global $app; |
| | | |
| | | if($currentPrefix !== '#') return $currentPrefix; // return the currently set prefix for this entry (# = no prefix set yet) |
| | | |
| | | if($adminPrefix === false) $adminPrefix = $userPrefix; |
| | | |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' || $app->auth->has_clients($_SESSION['s']['user']['userid'])) return $adminPrefix; |
| | | else return $userPrefix; |
| | | } |
| | | |
| | | function getClientName($dataRecord) { |
| | | global $app, $conf; |
| | | if($_SESSION["s"]["user"]["typ"] != 'admin' && !$app->auth->has_clients($_SESSION['s']['user']['userid'])) { |
| | |
| | | } |
| | | return $res; |
| | | } |
| | | |
| | | function getDomainModuleDomains() { |
| | | global $app; |
| | | |
| | | $sql = "SELECT domain_id, domain FROM domain WHERE"; |
| | | if ($_SESSION["s"]["user"]["typ"] == 'admin') { |
| | | $sql .= " 1"; |
| | | } else { |
| | | $groups = ( $_SESSION["s"]["user"]["groups"] ) ? $_SESSION["s"]["user"]["groups"] : 0; |
| | | $sql .= " sys_groupid IN (".$groups.")"; |
| | | } |
| | | $sql .= " ORDER BY domain"; |
| | | return $app->db->queryAllRecords($sql); |
| | | } |
| | | |
| | | function checkDomainModuleDomain($domain_id) { |
| | | global $app; |
| | | |
| | | $sql = "SELECT domain_id, domain FROM domain WHERE domain_id = " . $app->functions->intval($domain_id); |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $groups = ( $_SESSION["s"]["user"]["groups"] ) ? $_SESSION["s"]["user"]["groups"] : 0; |
| | | $sql .= " AND sys_groupid IN (".$groups.")"; |
| | | } |
| | | $domain = $app->db->queryOneRecord($sql); |
| | | if(!$domain || !$domain['domain_id']) return false; |
| | | return $domain['domain']; |
| | | } |
| | | } |
| | | |
| | | ?> |
| | |
| | | ($global_config['ftpuser_prefix'] == '[CLIENTNAME]' || |
| | | $global_config['ftpuser_prefix'] == '' || |
| | | $global_config['shelluser_prefix'] == '[CLIENTNAME]' || |
| | | $global_config['shelluser_prefix'] == '' )) { |
| | | $global_config['shelluser_prefix'] == '' ) && |
| | | $global_config['client_username_web_check_disabled'] == 'n') { |
| | | $errmsg = $validator['errmsg']; |
| | | if(isset($app->tform->wordbook[$errmsg])) { |
| | | return $app->tform->wordbook[$errmsg]."<br>\r\n"; |
| | |
| | | |
| | | /* check if the domain hostname is unique (keep in mind the auto subdomains!) */ |
| | | function _check_unique($domain_name, $only_domain = false) { |
| | | global $app; |
| | | global $app, $page; |
| | | |
| | | if(isset($app->remoting_lib->primary_id)) { |
| | | $primary_id = $app->remoting_lib->primary_id; |
| | | $domain = $app->remoting_lib->dataRecord; |
| | | } else { |
| | | $primary_id = $app->tform->primary_id; |
| | | $domain = $page->dataRecord; |
| | | } |
| | | |
| | | if($domain['ip_address'] == '' || $domain['ipv6_address'] == ''){ |
| | | if($domain['parent_domain_id'] > 0){ |
| | | $parent_domain = $app->db->queryOneRecord("SELECT * FROM web_domain WHERE domain_id = ".$domain['parent_domain_id']); |
| | | } |
| | | } |
| | | |
| | | // check if domain has alias/subdomains - if we move a web to another IP, make sure alias/subdomains are checked as well |
| | | $aliassubdomains = $app->db->queryAllRecords("SELECT * FROM web_domain WHERE parent_domain_id = ".$app->functions->intval($primary_id)." AND (type = 'alias' OR type = 'subdomain')"); |
| | | $additional_sql1 = ''; |
| | | $additional_sql2 = ''; |
| | | if(is_array($aliassubdomains) && !empty($aliassubdomains)){ |
| | | foreach($aliassubdomains as $aliassubdomain){ |
| | | $additional_sql1 .= " OR `domain` = '".$app->db->quote($aliassubdomain['domain'])."'"; |
| | | $additional_sql2 .= " OR CONCAT(`subdomain`, '.', `domain`) = '".$app->db->quote($aliassubdomain['domain'])."'"; |
| | | } |
| | | } |
| | | |
| | | //$check = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_domain` WHERE `domain` = '" . $app->db->quote($domain_name) . "' AND `domain_id` != " . $app->functions->intval($primary_id)); |
| | | //if($check['cnt'] > 0) return false; |
| | | |
| | | // we can have the same domain on different servers or different IPs, so we have to check for identical domains on the same IP (or wildcard IPs) |
| | | $checks = $app->db->queryAllRecords("SELECT * FROM `web_domain` WHERE (`domain` = '" . $app->db->quote($domain_name) . "'".$additional_sql1.") AND `server_id` = ".$domain['server_id']." AND `domain_id` != " . $app->functions->intval($primary_id).($additional_sql1 != '' ? " AND `parent_domain_id` != ".$app->functions->intval($primary_id) : "")); |
| | | |
| | | if(is_array($checks) && !empty($checks)){ |
| | | foreach($checks as $check){ |
| | | if($domain['ip_address'] == '*') return false; |
| | | if($check['ip_address'] == '*') return false; |
| | | if($domain['ip_address'] != '' && $check['ip_address'] == $domain['ip_address']) return false; |
| | | if($domain['ipv6_address'] != '' && $check['ipv6_address'] == $domain['ipv6_address']) return false; |
| | | // if alias/subdomain: check IP addresses of parent domain |
| | | if($check['ip_address'] == '' || $check['ipv6_address'] == ''){ |
| | | if($check['parent_domain_id'] > 0){ |
| | | $check_parent_domain = $app->db->queryOneRecord("SELECT * FROM `web_domain` WHERE `domain_id` = ".$check['parent_domain_id']); |
| | | } |
| | | } |
| | | |
| | | if($domain['ip_address'] == '' && $check['ip_address'] != ''){ |
| | | if(is_array($parent_domain) && !empty($parent_domain)){ |
| | | if($parent_domain['ip_address'] == '*') return false; |
| | | if($parent_domain['ip_address'] != '' && $check['ip_address'] == $parent_domain['ip_address']) return false; |
| | | } |
| | | } |
| | | |
| | | if($domain['ip_address'] == '' && $check['ip_address'] == ''){ |
| | | if($check['parent_domain_id'] > 0){ |
| | | if(is_array($check_parent_domain) && !empty($check_parent_domain)){ |
| | | if($check_parent_domain['ip_address'] == '*') return false; |
| | | } |
| | | } |
| | | if(is_array($parent_domain) && !empty($parent_domain)){ |
| | | if($parent_domain['ip_address'] == '*') return false; |
| | | if($parent_domain['ip_address'] != '' && $check_parent_domain['ip_address'] == $parent_domain['ip_address']) return false; |
| | | } |
| | | } |
| | | |
| | | if($check['ip_address'] == '' && $domain['ip_address'] != ''){ |
| | | if($check['parent_domain_id'] > 0){ |
| | | if(is_array($check_parent_domain) && !empty($check_parent_domain)){ |
| | | if($check_parent_domain['ip_address'] == '*') return false; |
| | | if($check_parent_domain['ip_address'] != '' && $check_parent_domain['ip_address'] == $domain['ip_address']) return false; |
| | | } |
| | | } |
| | | } |
| | | |
| | | if($domain['ipv6_address'] == '' && $check['ipv6_address'] != ''){ |
| | | if(is_array($parent_domain) && !empty($parent_domain)){ |
| | | if($parent_domain['ipv6_address'] != '' && $check['ipv6_address'] == $parent_domain['ipv6_address']) return false; |
| | | } |
| | | } |
| | | |
| | | if($domain['ipv6_address'] == '' && $check['ipv6_address'] == ''){ |
| | | if(is_array($parent_domain) && !empty($parent_domain)){ |
| | | if($parent_domain['ipv6_address'] != '' && $check_parent_domain['ipv6_address'] == $parent_domain['ipv6_address']) return false; |
| | | } |
| | | } |
| | | |
| | | if($check['ipv6_address'] == '' && $domain['ipv6_address'] != ''){ |
| | | if($check['parent_domain_id'] > 0){ |
| | | if(is_array($check_parent_domain) && !empty($check_parent_domain)){ |
| | | if($check_parent_domain['ipv6_address'] != '' && $check_parent_domain['ipv6_address'] == $domain['ipv6_address']) return false; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | $check = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_domain` WHERE `domain` = '" . $app->db->quote($domain_name) . "' AND `domain_id` != " . $app->functions->intval($primary_id)); |
| | | if($check['cnt'] > 0) return false; |
| | | |
| | | if($only_domain == false) { |
| | | $check = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_domain` WHERE CONCAT(`subdomain`, '.', `domain`) = '" . $app->db->quote($domain_name) . "' AND `domain_id` != " . $app->functions->intval($primary_id)); |
| | | if($check['cnt'] > 0) return false; |
| | | //$check = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_domain` WHERE CONCAT(`subdomain`, '.', `domain`) = '" . $app->db->quote($domain_name) . "' AND `domain_id` != " . $app->functions->intval($primary_id)); |
| | | //if($check['cnt'] > 0) return false; |
| | | // we can have the same domain on different servers or different IPs, so we have to check for identical domains on the same IP (or wildcard IPs) |
| | | $checks = $app->db->queryAllRecords("SELECT * FROM `web_domain` WHERE (CONCAT(`subdomain`, '.', `domain`) = '" . $app->db->quote($domain_name) . "'".$additional_sql2.") AND `server_id` = ".$domain['server_id']." AND `domain_id` != " . $app->functions->intval($primary_id).($additional_sql2 != '' ? " AND `parent_domain_id` != ".$app->functions->intval($primary_id) : "")); |
| | | if(is_array($checks) && !empty($checks)){ |
| | | foreach($checks as $check){ |
| | | if($domain['ip_address'] == '*') return false; |
| | | if($check['ip_address'] == '*') return false; |
| | | if($domain['ip_address'] != '' && $check['ip_address'] == $domain['ip_address']) return false; |
| | | if($domain['ipv6_address'] != '' && $check['ipv6_address'] == $domain['ipv6_address']) return false; |
| | | // if alias/subdomain: check IP addresses of parent domain |
| | | if($check['ip_address'] == '' || $check['ipv6_address'] == ''){ |
| | | if($check['parent_domain_id'] > 0){ |
| | | $check_parent_domain = $app->db->queryOneRecord("SELECT * FROM `web_domain` WHERE `domain_id` = ".$check['parent_domain_id']); |
| | | } |
| | | } |
| | | |
| | | if($domain['ip_address'] == '' && $check['ip_address'] != ''){ |
| | | if(is_array($parent_domain) && !empty($parent_domain)){ |
| | | if($parent_domain['ip_address'] == '*') return false; |
| | | if($parent_domain['ip_address'] != '' && $check['ip_address'] == $parent_domain['ip_address']) return false; |
| | | } |
| | | } |
| | | |
| | | if($domain['ip_address'] == '' && $check['ip_address'] == ''){ |
| | | if($check['parent_domain_id'] > 0){ |
| | | if(is_array($check_parent_domain) && !empty($check_parent_domain)){ |
| | | if($check_parent_domain['ip_address'] == '*') return false; |
| | | } |
| | | } |
| | | if(is_array($parent_domain) && !empty($parent_domain)){ |
| | | if($parent_domain['ip_address'] == '*') return false; |
| | | if($parent_domain['ip_address'] != '' && $check_parent_domain['ip_address'] == $parent_domain['ip_address']) return false; |
| | | } |
| | | } |
| | | |
| | | if($check['ip_address'] == '' && $domain['ip_address'] != ''){ |
| | | if($check['parent_domain_id'] > 0){ |
| | | if(is_array($check_parent_domain) && !empty($check_parent_domain)){ |
| | | if($check_parent_domain['ip_address'] == '*') return false; |
| | | if($check_parent_domain['ip_address'] != '' && $check_parent_domain['ip_address'] == $domain['ip_address']) return false; |
| | | } |
| | | } |
| | | } |
| | | |
| | | if($domain['ipv6_address'] == '' && $check['ipv6_address'] != ''){ |
| | | if(is_array($parent_domain) && !empty($parent_domain)){ |
| | | if($parent_domain['ipv6_address'] != '' && $check['ipv6_address'] == $parent_domain['ipv6_address']) return false; |
| | | } |
| | | } |
| | | |
| | | if($domain['ipv6_address'] == '' && $check['ipv6_address'] == ''){ |
| | | if(is_array($parent_domain) && !empty($parent_domain)){ |
| | | if($parent_domain['ipv6_address'] != '' && $check_parent_domain['ipv6_address'] == $parent_domain['ipv6_address']) return false; |
| | | } |
| | | } |
| | | |
| | | if($check['ipv6_address'] == '' && $domain['ipv6_address'] != ''){ |
| | | if($check['parent_domain_id'] > 0){ |
| | | if(is_array($check_parent_domain) && !empty($check_parent_domain)){ |
| | | if($check_parent_domain['ipv6_address'] != '' && $check_parent_domain['ipv6_address'] == $domain['ipv6_address']) return false; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | } |
| | | |
| | | return true; |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['conf_format_dateshort_human_readable'] = 'yyyy-mm-dd'; |
| | | $wb['submit_confirmation'] = 'Opravdu chcete provést tuto akci ?'; |
| | | $wb['top_menu_mailuser'] = 'E-malový uživatel'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'z'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'výsledky'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'Žádné výsledky.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 výsledků'; |
| | |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Návrhy'; |
| | | $wb['global_tabchange_warning_txt'] = 'Změněné údaje v této záložce se změní, pokud stisknete tlačítko OK. Pokud zmáčknete tlačítko zrušit, změny nebudou provedeny.'; |
| | | $wb['global_tabchange_discard_txt'] = 'Máte neuložené změny v této záložce. Změny budou zahozeny, pokud budete pokračovat.'; |
| | | $wb['datalog_changes_txt'] = 'The following changes are not yet populated to all servers:'; |
| | | $wb['datalog_changes_end_txt'] = 'Storing updates can take up to one minute. Please be patient.'; |
| | | $wb['datalog_status_i_web_database'] = 'Create new database'; |
| | | $wb['datalog_status_u_web_database'] = 'Update database'; |
| | | $wb['datalog_status_d_web_database'] = 'Delete database'; |
| | | $wb['datalog_status_i_web_database_user'] = 'Create database user for database'; |
| | | $wb['datalog_status_u_web_database_user'] = 'Update database user'; |
| | | $wb['datalog_status_d_web_database_user'] = 'Delete database user'; |
| | | $wb['datalog_status_i_web_domain'] = 'Create new website'; |
| | | $wb['datalog_status_u_web_domain'] = 'Update website settings'; |
| | | $wb['datalog_status_d_web_domain'] = 'Delete website'; |
| | | $wb['datalog_status_i_ftp_user'] = 'Create FTP user'; |
| | | $wb['datalog_status_u_ftp_user'] = 'Update FTP user'; |
| | | $wb['datalog_status_d_ftp_user'] = 'Delete FTP user'; |
| | | $wb['datalog_status_i_mail_domain'] = 'Create email domain'; |
| | | $wb['datalog_status_u_mail_domain'] = 'Update email domain'; |
| | | $wb['datalog_status_d_mail_domain'] = 'Delete email domain'; |
| | | $wb['datalog_status_i_mail_user'] = 'Create email user'; |
| | | $wb['datalog_status_u_mail_user'] = 'Update email user'; |
| | | $wb['datalog_status_d_mail_user'] = 'Delete email user'; |
| | | $wb['datalog_status_i_mail_forwarding'] = 'Create email address'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'Update email address'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'Delete email address'; |
| | | $wb['datalog_status_i_dns_rr'] = 'Create DNS record'; |
| | | $wb['datalog_status_u_dns_rr'] = 'Update DNS record'; |
| | | $wb['datalog_status_d_dns_rr'] = 'Delete DNS record'; |
| | | $wb['datalog_status_i_dns_soa'] = 'Create DNS zone'; |
| | | $wb['datalog_status_u_dns_soa'] = 'Update DNS zone'; |
| | | $wb['datalog_status_d_dns_soa'] = 'Delete DNS zone'; |
| | | $wb['datalog_status_i_cron'] = 'Create cron job'; |
| | | $wb['datalog_status_u_cron'] = 'Update cron job'; |
| | | $wb['datalog_status_d_cron'] = 'Delete cron job'; |
| | | $wb['datalog_status_i_mail_get'] = 'Create mail fetcher account'; |
| | | $wb['datalog_status_u_mail_get'] = 'Update mail fetcher account'; |
| | | $wb['datalog_status_d_mail_get'] = 'Delete mail fetcher account'; |
| | | $wb['datalog_status_i_mail_mailinglist'] = 'Create mailing list'; |
| | | $wb['datalog_status_u_mail_mailinglist'] = 'Update mailing list'; |
| | | $wb['datalog_status_d_mail_mailinglist'] = 'Delete mailing list'; |
| | | $wb['datalog_status_i_shell_user'] = 'Create shell user'; |
| | | $wb['datalog_status_u_shell_user'] = 'Update shell user'; |
| | | $wb['datalog_status_d_shell_user'] = 'Delete shell user'; |
| | | $wb['datalog_status_i_web_folder'] = 'Create folder protection'; |
| | | $wb['datalog_status_u_web_folder'] = 'Update folder protection'; |
| | | $wb['datalog_status_d_web_folder'] = 'Delete folder protection'; |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_changes_txt'] = 'Následující Vaše požadavky (změny nastavení), které se provádějí na serverech:'; |
| | | $wb['datalog_changes_end_txt'] = 'Provedení Vašich požadavků (změn nastavení) může trvat až jednu minutu. Prosím, buďte trpěliví.'; |
| | | $wb['datalog_status_i_web_database'] = 'Vytvoření nové databáze'; |
| | | $wb['datalog_status_u_web_database'] = 'Aktualizace nastavení databáze'; |
| | | $wb['datalog_status_d_web_database'] = 'Odstranění databáze'; |
| | | $wb['datalog_status_i_web_database_user'] = 'Vytvoření databázového uživatele pro databázi'; |
| | | $wb['datalog_status_u_web_database_user'] = 'Aktualizace nastavení databázového uživatele'; |
| | | $wb['datalog_status_d_web_database_user'] = 'Odstranění uživatele databáze'; |
| | | $wb['datalog_status_i_web_domain'] = 'Vytvoření nové webové stránky'; |
| | | $wb['datalog_status_u_web_domain'] = 'Aktualizace nastavení webové stránky'; |
| | | $wb['datalog_status_d_web_domain'] = 'Odstranění webové stránky'; |
| | | $wb['datalog_status_i_ftp_user'] = 'Vytvoření FTP uživatele'; |
| | | $wb['datalog_status_u_ftp_user'] = 'Aktualizace nastavení FTP uživatele'; |
| | | $wb['datalog_status_d_ftp_user'] = 'Odstranění FTP uživatele'; |
| | | $wb['datalog_status_i_mail_domain'] = 'Vytvoření e-mailové domény'; |
| | | $wb['datalog_status_u_mail_domain'] = 'Aktualizace nastavení e-mailové domény'; |
| | | $wb['datalog_status_d_mail_domain'] = 'Odstranění e-mailové domény'; |
| | | $wb['datalog_status_i_mail_user'] = 'Vytvoření e-mailového uživatele'; |
| | | $wb['datalog_status_u_mail_user'] = 'Aktualizace nastavení e-mailového uživatele'; |
| | | $wb['datalog_status_d_mail_user'] = 'Odstranění e-mailového uživatele'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['datalog_status_i_mail_forwarding'] = 'Vytvoření e-mailového nebo doménového aliasu'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'Aktualizace nastavení e-mailového nebo doménového aliasu'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'Odstranění e-mailového nebo doménového aliasu'; |
| | | $wb['datalog_status_i_dns_rr'] = 'Vytvoření DNS záznamu'; |
| | | $wb['datalog_status_u_dns_rr'] = 'Aktualizace nastavení DNS záznamu'; |
| | | $wb['datalog_status_d_dns_rr'] = 'Odstranění DNS záznamu'; |
| | | $wb['datalog_status_i_dns_soa'] = 'Vytvoření DNS zóny'; |
| | | $wb['datalog_status_u_dns_soa'] = 'Aktualizace nastavení DNS zóny'; |
| | | $wb['datalog_status_d_dns_soa'] = 'Odstranění DNS zóny'; |
| | | $wb['datalog_status_i_cron'] = 'Vytvoření shell uživatele'; |
| | | $wb['datalog_status_u_cron'] = 'Aktualizace nastavení shell uživatele'; |
| | | $wb['datalog_status_d_cron'] = 'Odstranění shell uživatele'; |
| | | $wb['datalog_status_i_mail_get'] = 'Vytvoření účtu pro získávání externí e-mailové pošty'; |
| | | $wb['datalog_status_u_mail_get'] = 'Aktualizace nastavení účtu pro získávání externí e-mailové pošty'; |
| | | $wb['datalog_status_d_mail_get'] = 'Odstranění účtu pro získávání externí e-mailové pošty'; |
| | | $wb['datalog_status_i_mail_mailinglist'] = 'Vytvoření e-mailové konference (mailinglist)'; |
| | | $wb['datalog_status_u_mail_mailinglist'] = 'Aktualizace nastavení e-mailové konference (mailinglist)'; |
| | | $wb['datalog_status_d_mail_mailinglist'] = 'Odstranění e-mailové konference (mailinglist)'; |
| | | $wb['datalog_status_i_shell_user'] = 'Vytvoření shell uživatele'; |
| | | $wb['datalog_status_u_shell_user'] = 'Aktualizace nastavení shell uživatele'; |
| | | $wb['datalog_status_d_shell_user'] = 'Odstranění shell uživatele'; |
| | | $wb['datalog_status_i_web_folder'] = 'Vytvoření chráněného adresáře heslem'; |
| | | $wb['datalog_status_u_web_folder'] = 'Aktualizace nastavení chráněného adresáře heslem'; |
| | | $wb['datalog_status_d_web_folder'] = 'Odstranění chráněného adresáře heslem'; |
| | | $wb['datalog_status_i_web_folder_user'] = 'Vytvoření uživatele pro adresáře chráněné heslem'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Aktualizace nastavení uživatele pro adresáře chráněné heslem'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Odstranění uživatele pro adresáře chráněné heslem'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['conf_format_timeshort'] = 'H:i'; |
| | | $wb['conf_format_timelong'] = 'H:i:s'; |
| | | $wb['conf_format_datetime'] = 'Y-m-d H:i'; |
| | | $wb['number_format_decimals'] = '4'; |
| | | $wb['number_format_decimals_client'] = '2'; |
| | | $wb['number_format_decimals'] = '2'; |
| | | $wb['number_format_dec_point'] = '.'; |
| | | $wb['number_format_thousands_sep'] = ''; |
| | | $wb['error_301'] = 'Modulo no permitido para el usuario actual.'; |
| | |
| | | $wb['top_menu_dashboard'] = 'Inicio'; |
| | | $wb['latest_news_txt'] = 'Noticias'; |
| | | $wb['top_menu_vm'] = 'VServer'; |
| | | $wb['daynamesmin_su'] = 'Su'; |
| | | $wb['daynamesmin_mo'] = 'Mo'; |
| | | $wb['daynamesmin_tu'] = 'Tu'; |
| | | $wb['daynamesmin_we'] = 'We'; |
| | | $wb['daynamesmin_th'] = 'Th'; |
| | | $wb['daynamesmin_fr'] = 'Fr'; |
| | | $wb['daynamesmin_su'] = 'Do'; |
| | | $wb['daynamesmin_mo'] = 'Lu'; |
| | | $wb['daynamesmin_tu'] = 'Mar'; |
| | | $wb['daynamesmin_we'] = 'Mi'; |
| | | $wb['daynamesmin_th'] = 'Ju'; |
| | | $wb['daynamesmin_fr'] = 'Vi'; |
| | | $wb['daynamesmin_sa'] = 'Sa'; |
| | | $wb['daynames_sunday'] = 'Sunday'; |
| | | $wb['daynames_monday'] = 'Monday'; |
| | | $wb['daynames_tuesday'] = 'Tuesday'; |
| | | $wb['daynames_wednesday'] = 'Wednesday'; |
| | | $wb['daynames_thursday'] = 'Thursday'; |
| | | $wb['daynames_friday'] = 'Friday'; |
| | | $wb['daynames_saturday'] = 'Saturday'; |
| | | $wb['monthnamesshort_jan'] = 'Jan'; |
| | | $wb['daynames_sunday'] = 'Domingo'; |
| | | $wb['daynames_monday'] = 'Lunes'; |
| | | $wb['daynames_tuesday'] = 'Martes'; |
| | | $wb['daynames_wednesday'] = 'Miercoles'; |
| | | $wb['daynames_thursday'] = 'Jueves'; |
| | | $wb['daynames_friday'] = 'Viernes'; |
| | | $wb['daynames_saturday'] = 'Sabado'; |
| | | $wb['monthnamesshort_jan'] = 'Ene'; |
| | | $wb['monthnamesshort_feb'] = 'Feb'; |
| | | $wb['monthnamesshort_mar'] = 'Mar'; |
| | | $wb['monthnamesshort_apr'] = 'Apr'; |
| | | $wb['monthnamesshort_apr'] = 'Abr'; |
| | | $wb['monthnamesshort_may'] = 'May'; |
| | | $wb['monthnamesshort_jun'] = 'Jun'; |
| | | $wb['monthnamesshort_jul'] = 'Jul'; |
| | | $wb['monthnamesshort_aug'] = 'Aug'; |
| | | $wb['monthnamesshort_aug'] = 'Ago'; |
| | | $wb['monthnamesshort_sep'] = 'Sep'; |
| | | $wb['monthnamesshort_oct'] = 'Oct'; |
| | | $wb['monthnamesshort_nov'] = 'Nov'; |
| | | $wb['monthnamesshort_dec'] = 'Dec'; |
| | | $wb['datepicker_nextText'] = 'Next'; |
| | | $wb['datepicker_prevText'] = 'Prev'; |
| | | $wb['logout_txt'] = 'Logout'; |
| | | $wb['datepicker_nextText'] = 'Próximo'; |
| | | $wb['datepicker_prevText'] = 'Anterior'; |
| | | $wb['logout_txt'] = 'SALIR'; |
| | | $wb['conf_format_dateshort_human_readable'] = 'yyyy-mm-dd'; |
| | | $wb['submit_confirmation'] = 'Do you really want to perform this action?'; |
| | | $wb['submit_confirmation'] = '¿Realmente desea realizar esta acción?'; |
| | | $wb['number_format_decimals_client'] = '2'; |
| | | $wb['top_menu_mailuser'] = 'Mailuser'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | |
| | | $wb['datalog_status_i_mail_user'] = 'Create email user'; |
| | | $wb['datalog_status_u_mail_user'] = 'Update email user'; |
| | | $wb['datalog_status_d_mail_user'] = 'Delete email user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['datalog_status_i_mail_forwarding'] = 'Create email address'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'Update email address'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'Delete email address'; |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['global_tabchange_warning_txt'] = 'Changed data in this tab will be changed if you press OK. On cancel they will be discarded.'; |
| | | $wb['global_tabchange_discard_txt'] = 'You have unsaved changes in this tab. Changes will be discarded if you continue.'; |
| | | $wb['datalog_changes_txt'] = 'The following changes are not yet populated to all servers:'; |
| | | $wb['datalog_changes_end_txt'] = 'Storing updates can take up to one minute. Please be patient.'; |
| | | $wb['datalog_status_i_web_database'] = 'Create new database'; |
| | | $wb['datalog_status_u_web_database'] = 'Update database'; |
| | | $wb['datalog_status_d_web_database'] = 'Delete database'; |
| | | $wb['datalog_status_i_web_database_user'] = 'Create database user for database'; |
| | | $wb['datalog_status_u_web_database_user'] = 'Update database user'; |
| | | $wb['datalog_status_d_web_database_user'] = 'Delete database user'; |
| | | $wb['datalog_status_i_web_domain'] = 'Create new website'; |
| | | $wb['datalog_status_u_web_domain'] = 'Update website settings'; |
| | | $wb['datalog_status_d_web_domain'] = 'Delete website'; |
| | | $wb['datalog_status_i_ftp_user'] = 'Create FTP user'; |
| | | $wb['datalog_status_u_ftp_user'] = 'Update FTP user'; |
| | | $wb['datalog_status_d_ftp_user'] = 'Delete FTP user'; |
| | | $wb['datalog_status_i_mail_domain'] = 'Create email domain'; |
| | | $wb['datalog_status_u_mail_domain'] = 'Update email domain'; |
| | | $wb['datalog_status_d_mail_domain'] = 'Delete email domain'; |
| | | $wb['datalog_status_i_mail_user'] = 'Create email user'; |
| | | $wb['datalog_status_u_mail_user'] = 'Update email user'; |
| | | $wb['datalog_status_d_mail_user'] = 'Delete email user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['datalog_status_i_mail_forwarding'] = 'Create email address'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'Update email address'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'Delete email address'; |
| | | $wb['datalog_status_i_dns_rr'] = 'Create DNS record'; |
| | | $wb['datalog_status_u_dns_rr'] = 'Update DNS record'; |
| | | $wb['datalog_status_d_dns_rr'] = 'Delete DNS record'; |
| | | $wb['datalog_status_i_dns_soa'] = 'Create DNS zone'; |
| | | $wb['datalog_status_u_dns_soa'] = 'Update DNS zone'; |
| | | $wb['datalog_status_d_dns_soa'] = 'Delete DNS zone'; |
| | | $wb['datalog_status_i_cron'] = 'Create cron job'; |
| | | $wb['datalog_status_u_cron'] = 'Update cron job'; |
| | | $wb['datalog_status_d_cron'] = 'Delete cron job'; |
| | | $wb['datalog_status_i_mail_get'] = 'Create mail fetcher account'; |
| | | $wb['datalog_status_u_mail_get'] = 'Update mail fetcher account'; |
| | | $wb['datalog_status_d_mail_get'] = 'Delete mail fetcher account'; |
| | | $wb['datalog_status_i_mail_mailinglist'] = 'Create mailing list'; |
| | | $wb['datalog_status_u_mail_mailinglist'] = 'Update mailing list'; |
| | | $wb['datalog_status_d_mail_mailinglist'] = 'Delete mailing list'; |
| | | $wb['datalog_status_i_shell_user'] = 'Create shell user'; |
| | | $wb['datalog_status_u_shell_user'] = 'Update shell user'; |
| | | $wb['datalog_status_d_shell_user'] = 'Delete shell user'; |
| | | $wb['datalog_status_i_web_folder'] = 'Create folder protection'; |
| | | $wb['datalog_status_u_web_folder'] = 'Update folder protection'; |
| | | $wb['datalog_status_d_web_folder'] = 'Delete folder protection'; |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | ?> |
| | |
| | | 'width' => '40',
|
| | | 'maxlength' => '255'
|
| | | ),
|
| | |
|
| | | /*
|
| | | 'vhost_rewrite_v6' => array (
|
| | | 'datatype' => 'VARCHAR',
|
| | | 'formtype' => 'CHECKBOX',
|
| | |
| | | ),
|
| | |
|
| | |
|
| | |
|
| | | */
|
| | | 'vhost_conf_dir' => array(
|
| | | 'datatype' => 'VARCHAR',
|
| | | 'formtype' => 'TEXT',
|
| | |
| | | 'default' => 'n', |
| | | 'value' => array(0 => 'n',1 => 'y') |
| | | ), |
| | | 'client_username_web_check_disabled' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'CHECKBOX', |
| | | 'default' => 'n', |
| | | 'value' => array(0 => 'n',1 => 'y') |
| | | ), |
| | | ################################## |
| | | # ENDE Datatable fields |
| | | ################################## |
| | |
| | | 'default' => 'n', |
| | | 'value' => array(0 => 'n',1 => 'y') |
| | | ), |
| | | 'use_loadindicator' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'CHECKBOX', |
| | | 'default' => 'y', |
| | | 'value' => array(0 => 'n',1 => 'y') |
| | | ), |
| | | 'use_combobox' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'CHECKBOX', |
| | | 'default' => 'y', |
| | | 'value' => array(0 => 'n',1 => 'y') |
| | | ), |
| | | 'maintenance_mode' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'CHECKBOX', |
| | |
| | | 2 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^[\w\.\-\_]{0,64}$/', |
| | | 'errmsg'=> 'username_err'), |
| | | 3 => array ( 'type' => 'CUSTOM', |
| | | 'class' => 'validate_client', |
| | | 'function' => 'username_collision', |
| | | 'errmsg'=> 'username_error_collision'), |
| | | ), |
| | | 'regex' => '', |
| | | 'errmsg' => '', |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | $wb['Web'] = 'Web'; |
| | | $wb['FastCGI'] = 'FastCGI'; |
| | | $wb['Jailkit'] = 'Jailkit'; |
| | | $wb['Rescue'] = 'Zachrána'; |
| | | $wb['Rescue'] = 'Monitorování'; |
| | | $wb['Server IP addresses'] = 'IP adresy serveru'; |
| | | $wb['Additional PHP Versions'] = 'Další PHP verze'; |
| | | $wb['Firewall'] = 'Firewall'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Sloučit jazykový soubor'; |
| | | $wb['list_desc_txt'] = 'Sloučit vybraný jazykový soubor s hlavním anglickým jazykovým souborem. <br />Toto přidá chybějící řetězce z anglického hlavního souboru do vybraného jazykového souboru. <br /> V nových verzích ISPConfigu vznikají nové moduly a položky, které chybějí ve starších jazykových souborech a takto je doplníte k překladu.'; |
| | | $wb['list_desc_txt'] = 'Sloučit vybraný jazykový soubor s hlavním anglickým jazykovým souborem. <br />Toto přidá chybějící řetězce z anglického hlavního souboru do vybraného jazykového souboru. Odebere také zrušené řetezce. <br /> V nových verzích ISPConfigu vznikají nové moduly a položky, které chybějí ve starších jazykových souborech a takto je doplníte k překladu.'; |
| | | $wb['language_select_txt'] = 'Vybrat jazyk k doplnění'; |
| | | $wb['btn_save_txt'] = 'Sloučit / doplnit jazykový soubor'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | |
| | | <?php |
| | | $wb['repo_name_txt'] = 'Repository'; |
| | | $wb['repo_name_txt'] = 'Skladiště'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | $wb['repo_username_txt'] = 'User (optional)'; |
| | | $wb['repo_password_txt'] = 'Password (optional)'; |
| | | $wb['repo_username_txt'] = 'Uživatel (volitelné)'; |
| | | $wb['repo_password_txt'] = 'Heslo (volitelné)'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | |
| | | $wb['DNS rp functions'] = 'Funkce DNS RP'; |
| | | $wb['DNS srv functions'] = 'Funkce DNS SRV'; |
| | | $wb['DNS txt functions'] = 'Funkce DNS TXT'; |
| | | $wb['Mail mailing list functions'] = 'Mail mailinglist functions'; |
| | | $wb['Mail mailing list functions'] = 'Funkce e-mailové konference (mailinglist)'; |
| | | $wb['generate_password_txt'] = 'Generovat heslo'; |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | |
| | | <?php |
| | | $wb['config_txt'] = 'Konfigurace'; |
| | | $wb['server_name_txt'] = 'Název serveru'; |
| | | $wb['mail_server_txt'] = 'Mail server'; |
| | | $wb['web_server_txt'] = 'Web server'; |
| | | $wb['mail_server_txt'] = 'Poštovní server'; |
| | | $wb['web_server_txt'] = 'Webový server'; |
| | | $wb['dns_server_txt'] = 'DNS server'; |
| | | $wb['file_server_txt'] = 'Souborový server'; |
| | | $wb['db_server_txt'] = 'DB server'; |
| | | $wb['vserver_server_txt'] = 'VServer server'; |
| | | $wb['db_server_txt'] = 'Databázový server'; |
| | | $wb['vserver_server_txt'] = 'Virtualizační server (Vserver)'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['mirror_server_id_txt'] = 'Je zrcadlem serveru'; |
| | | $wb['- None -'] = '- Žádný -'; |
| | |
| | | $wb['website_basedir_txt'] = 'Website config adresář'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config adresář'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled adresář'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config adresář'; |
| | | $wb['getmail_config_dir_txt'] = '<b>Getmail</b> cesta k adresáři kde jsou umístěny konfigurace'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter cesta'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter skript'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini cesta'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI cesta k adresáři kde je umístěn php.ini'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI děti'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. požadavků'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI bin'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI cesta k binarnímu balíčku'; |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['maildir_path_txt'] = 'Cesta k mail adresáři'; |
| | | $wb['homedir_path_txt'] = 'Cesta k domácímu adresáři'; |
| | |
| | | $wb['ip_address_txt'] = 'IP adresa'; |
| | | $wb['netmask_txt'] = 'Maska'; |
| | | $wb['gateway_txt'] = 'Brána'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Jmenné servery'; |
| | | $wb['hostname_txt'] = 'Název hostitele (hostname)'; |
| | | $wb['nameservers_txt'] = 'Jmenné servery (DNS)'; |
| | | $wb['auto_network_configuration_txt'] = 'Konfigurace sítě'; |
| | | $wb['ip_address_error_wrong'] = 'Neplatný formát IP adresy.'; |
| | | $wb['netmask_error_wrong'] = 'Neplatný formát síťové masky.'; |
| | | $wb['gateway_error_wrong'] = 'Neplatný formát brány.'; |
| | | $wb['hostname_error_empty'] = 'Hostname je prázdný.'; |
| | | $wb['hostname_error_empty'] = 'Název hostitele (hostname) je prázdný.'; |
| | | $wb['nameservers_error_empty'] = 'Jmenný server je prázdný.'; |
| | | $wb['config_dir_txt'] = 'Vlogger config adresář'; |
| | | $wb['config_dir_txt'] = '<b>Vlogger</b> cesta k adresáři kde je umístěna konfigurace'; |
| | | $wb['init_script_txt'] = 'Název cron init skriptu'; |
| | | $wb['crontab_dir_txt'] = 'Cesta k individuálním cron tabulkám'; |
| | | $wb['wget_txt'] = 'Cesta k wget programu'; |
| | |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Adresář pro zálohy'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['named_conf_local_path_txt'] = 'Cesta k BIND named.conf.local'; |
| | | $wb['php_ini_path_cgi_txt'] = 'Cesta k CGI php.ini'; |
| | | $wb['php_ini_path_apache_txt'] = 'Cesta k Apache php.ini'; |
| | | $wb['check_apache_config_txt'] = 'Provést test konfigurace apache před restartováním'; |
| | | $wb['CA_path_txt'] = 'CA cesta'; |
| | | $wb['CA_pass_txt'] = 'CA heslo'; |
| | | $wb['ufw_enable_txt'] = 'Aktivovat'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Správa vestavěných pravidel'; |
| | | $wb['ufw_ipv6_txt'] = 'Aktivovat IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Standardní vstupní politika'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['ufw_log_level_txt'] = 'Úroveň logování'; |
| | | $wb['network_config_warning_txt'] = 'Možnost konfigurace sítě je k dispozici pouze pro Debian a Ubuntu servery. Nepoužívejte tuto volbu, pokud vaše síťové rozhraní není eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['server_type_txt'] = 'Typ serveru'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Povolit monitorování služeb a restartovat při selhání'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Zakázat MySQL sledování'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Zakázat E-mail sledování'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Zakázat HTTPD sledování'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Zakázat MySQL monitorování'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Zakázat E-mail monitorování'; |
| | | $wb['rescue_description_txt'] = '<b>Informace:</b> Pokud chcete např. vypnout MySQL zatrhněte políčko \\"Zakázat MySQL monitorování\\" změna se provede do 2-3 minut.<br>Pokud nepočkáte 2-3 minuty, monitorování restartuje mysql!!'; |
| | | $wb['enable_sni_txt'] = 'Aktivovat SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Zakázat HTTPD monitorování'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | |
| | | $wb['backup_mode_rootgz'] = 'Zálohování všech souborů v adresáři web jako uživatel root'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Samostatná RBL se odděluje čárkou)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['ssl_settings_txt'] = 'SSL Nastavení'; |
| | | $wb['permissions_txt'] = 'Nastavit oprávnění'; |
| | | $wb['php_settings_txt'] = 'PHP Nastavení'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Nastavení'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Nastavení'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Statistika kvóty poštovní schránky'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Aktivovat IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Při překročení limitu přenesených dat, poslat oznámení adminovi'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Při překročení limitu přenesených dat, poslat oznámení klientovi'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP adresa'; |
| | | $wb['add_new_record_txt'] = 'Přidat IP adresu'; |
| | | $wb['client_id_txt'] = 'Client'; |
| | | $wb['client_id_txt'] = 'Klient'; |
| | | $wb['virtualhost_txt'] = 'HTTP Vhost'; |
| | | $wb['virtualhost_port_txt'] = 'HTTP Ports'; |
| | | $wb['ip_type_txt'] = 'Type'; |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['client_id_txt'] = 'Client'; |
| | | $wb['name_txt'] = 'PHP Name'; |
| | | $wb['Name'] = 'Name'; |
| | | $wb['FastCGI Settings'] = 'FastCGI Settings'; |
| | | $wb['PHP-FPM Settings'] = 'PHP-FPM Settings'; |
| | | $wb['client_id_txt'] = 'Klient'; |
| | | $wb['name_txt'] = 'Název PHP verze'; |
| | | $wb['Name'] = 'Název'; |
| | | $wb['FastCGI Settings'] = 'FastCGI nastavení'; |
| | | $wb['PHP-FPM Settings'] = 'PHP-FPM nastavení'; |
| | | $wb['Additional PHP Versions'] = 'Additional PHP Versions'; |
| | | $wb['Form to edit additional PHP versions'] = 'Form to edit additional PHP versions'; |
| | | $wb['server_php_name_error_empty'] = 'The Name field must not be empty.'; |
| | | $wb['php_fastcgi_binary_txt'] = 'Path to the PHP FastCGI binary'; |
| | | $wb['php_fastcgi_ini_dir_txt'] = 'Path to the php.ini directory'; |
| | | $wb['php_fpm_init_script_txt'] = 'Path to the PHP-FPM init script'; |
| | | $wb['php_fpm_ini_dir_txt'] = 'Path to the php.ini directory'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Path to the PHP-FPM pool directory'; |
| | | $wb['server_php_name_error_empty'] = 'Název pole nesmí být prázdné.'; |
| | | $wb['php_fastcgi_binary_txt'] = 'Cesta k binarnímu balíčku PHP FastCGI'; |
| | | $wb['php_fastcgi_ini_dir_txt'] = 'Cesta k adresáři ve kterém je umístěn php.ini'; |
| | | $wb['php_fpm_init_script_txt'] = 'Cesta k PHP-FPM init skriptu'; |
| | | $wb['php_fpm_ini_dir_txt'] = 'Cesta k adresáři ve kterém je umístěn php.ini'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Cesta k PHP-FPM společnému (pool) adresáři'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Additional PHP Versions'; |
| | | $wb['list_head_txt'] = 'Další PHP verze'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['add_new_record_txt'] = 'Add new PHP version'; |
| | | $wb['client_id_txt'] = 'Client'; |
| | | $wb['name_txt'] = 'PHP Name'; |
| | | $wb['add_new_record_txt'] = 'Přidat novou verzi PHP'; |
| | | $wb['client_id_txt'] = 'Klient'; |
| | | $wb['name_txt'] = 'Název PHP verze'; |
| | | ?> |
| | |
| | | $wb['smtp_user_txt'] = 'SMTP uživatel'; |
| | | $wb['smtp_pass_txt'] = 'SMTP heslo'; |
| | | $wb['smtp_crypt_txt'] = 'Použít SSL/TLS šifrované spojení pro SMTP'; |
| | | $wb['smtp_missing_admin_mail_txt'] = 'Please enter the admin name and admin mail address if you want to use smtp mail sending.'; |
| | | $wb['tab_change_discard_txt'] = 'Discard changes on tab change'; |
| | | $wb['smtp_missing_admin_mail_txt'] = 'Zadejte prosím jméno správce a admin e-mailovou adresu, pokud chcete používat poštu SMTP pro odesílání.'; |
| | | $wb['tab_change_discard_txt'] = 'Zahodit změny na záložce změny'; |
| | | $wb['tab_change_warning_txt'] = 'Záložka změna varování'; |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['tab_change_warning_note_txt'] = 'Zobrazit varování na kartě změny ve formách úprav případné data byla změněna uživatelem.'; |
| | | $wb['vhost_subdomains_txt'] = 'Vytvořit subdomény jako webové stránky'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Neplatná phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['tpl_default_admin_head_txt'] = 'Global Default-Theme Settings'; |
| | | $wb['tpl_default_admin_desc_txt'] = ''; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['client_id_txt'] = 'Client'; |
| | | $wb['name_txt'] = 'PHP Name'; |
| | | $wb['Name'] = 'Name'; |
| | | $wb['FastCGI Settings'] = 'FastCGI Settings'; |
| | | $wb['PHP-FPM Settings'] = 'PHP-FPM Settings'; |
| | | $wb['client_id_txt'] = 'Klient'; |
| | | $wb['name_txt'] = 'Název PHP verze'; |
| | | $wb['Name'] = 'Název'; |
| | | $wb['FastCGI Settings'] = 'FastCGI nastavení'; |
| | | $wb['PHP-FPM Settings'] = 'PHP-FPM nastavení'; |
| | | $wb['Additional PHP Versions'] = 'Další PHP verze'; |
| | | $wb['Form to edit additional PHP versions'] = 'Formulář pro úpravu další PHP verzí'; |
| | | $wb['server_php_name_error_empty'] = 'The Name field must not be empty.'; |
| | | $wb['php_fastcgi_binary_txt'] = 'Path to the PHP FastCGI binary'; |
| | | $wb['php_fastcgi_ini_dir_txt'] = 'Path to the php.ini directory'; |
| | | $wb['php_fpm_init_script_txt'] = 'Path to the PHP-FPM init script'; |
| | | $wb['php_fpm_ini_dir_txt'] = 'Path to the php.ini directory'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Path to the PHP-FPM pool directory'; |
| | | $wb['server_php_name_error_empty'] = 'Název pole nesmí být prázdné.'; |
| | | $wb['php_fastcgi_binary_txt'] = 'Cesta k binarnímu balíčku PHP FastCGI'; |
| | | $wb['php_fastcgi_ini_dir_txt'] = 'Cesta k adresáři ve kterém je umístěn php.ini'; |
| | | $wb['php_fpm_init_script_txt'] = 'Cesta k PHP-FPM init skriptu'; |
| | | $wb['php_fpm_ini_dir_txt'] = 'Cesta k adresáři ve kterém je umístěn php.ini'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Cesta k PHP-FPM společnému (pool) adresáři'; |
| | | ?> |
| | |
| | | $wb['password_strength_txt'] = 'Bezpečnost hesla'; |
| | | $wb['modules_txt'] = 'Modul'; |
| | | $wb['startmodule_txt'] = 'Výchozí modul'; |
| | | $wb['app_theme_txt'] = 'Design'; |
| | | $wb['app_theme_txt'] = 'Výchozí grafické téma'; |
| | | $wb['typ_txt'] = 'Typ'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['language_txt'] = 'Jazyk'; |
| | |
| | | $wb['ort_txt'] = 'Město'; |
| | | $wb['plz_txt'] = 'PSČ'; |
| | | $wb['land_txt'] = 'Stát'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['url_txt'] = 'URL'; |
| | | $wb['telefon_txt'] = 'Telefon'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Uživatelé'; |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['client_id_txt'] = 'Client ID'; |
| | | $wb['client_id_txt'] = 'Klient ID'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['add_new_record_txt'] = 'Přidat uživatele'; |
| | | $wb['warning_txt'] = '<b>VAROVÁNÍ:</b> Zde neupravujte uživatelská nastavení. Užijte klientská a distributorská nastavení v klientském modulu. Úprava uživatelý nebo skupin zde může způsobit ztrátu dat!'; |
| | | $wb['groups_txt'] = 'Groups'; |
| | | $wb['warning_txt'] = '<b>VAROVÁNÍ:</b> Zde neupravujte uživatelská nastavení. Užijte klientská a distributorská nastavení v klientském modulu. Úprava uživatelů nebo skupin zde může způsobit ztrátu dat!'; |
| | | $wb['groups_txt'] = 'Skupiny'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Webverzeichnis unveränderlich machen (erweiterte Attribute)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Überschreiten des Transfer Limits an den Administrator senden'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Überschreiten des Transfer Limits an den Kunden senden'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Präfix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 auf dem Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Falsches IPv6 Netzmasken Format.'; |
| | | $wb['php_ini_check_minutes_txt'] = 'Prüfe System php.ini Dateien auf Änderungen alle'; |
| | | $wb['php_ini_check_minutes_info_txt'] = 'Minute(n) (0 deaktiviert diese Funktion)'; |
| | | $wb['php_ini_check_minutes_error_empty'] = 'Der Wert für die Einstellung der php.ini Prüfung ist ungültig.'; |
| | |
| | | $wb['smtp_user_txt'] = 'SMTP Benutzer'; |
| | | $wb['smtp_pass_txt'] = 'SMTP Passwort'; |
| | | $wb['smtp_crypt_txt'] = 'SSL/TLS verschlüsselte Verbindung für SMTP'; |
| | | $wb['use_combobox_txt'] = 'jQuery UI Combobox benutzen'; |
| | | $wb['use_loadindicator_txt'] = 'Laden-Grafik anzeigen'; |
| | | $wb['f5_to_reload_js_txt'] = 'Wenn Sie den Wert ändern, müssen Sie F5 drücken, damit der Browser die JavaScript-Libraries neu lädt, oder Ihren Browser-Cache leeren.'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Falsche phpMyAdmin URL'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Deaktiviere die Kunden Benutzername Überprüfung für den Begriff <b>web<b>.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Passwort wiederholen'; |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | $wb['username_error_collision'] = 'Der Benutzername darf nicht <b>web<b> oder <b>web<b> gefolgt von einer Zahl sein.'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | $wb['smtp_pass_txt'] = 'SMTP password'; |
| | | $wb['smtp_crypt_txt'] = 'Use SSL/TLS encrypted connection for SMTP'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number."'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['1001'] = 'Username or password is empty.'; |
| | | $wb['1002'] = 'Username or password is wrong.'; |
| | | $wb['Firewall'] = 'Cortafuegos'; |
| | | $wb['Groups'] = 'Grupos'; |
| | | $wb['groups_description'] = 'Formulario para editar los grupos del usuario de sistema.'; |
| | | $wb['Servers'] = 'Servidores'; |
| | | $wb['Config'] = 'Configuración'; |
| | | $wb['Add user'] = 'Añadir usuario'; |
| | | $wb['Edit user'] = 'Editar usuarios'; |
| | | $wb['Add group'] = 'Añadir grupo'; |
| | | $wb['Edit group'] = 'Editar grupo'; |
| | | $wb['Edit server'] = 'Editar servidor'; |
| | | $wb['Sync. Now'] = 'Sincronizar ahora'; |
| | | $wb['DB Sync.'] = 'Sincronizar BD'; |
| | | $wb['User Management'] = 'User Management'; |
| | | $wb['CP Users'] = 'Usuarios del Panel'; |
| | | $wb['Remote Users'] = 'Remote Users'; |
| | | $wb['System'] = 'Sistema'; |
| | | $wb['Server Services'] = 'Server Services'; |
| | | $wb['Services'] = 'Servicios'; |
| | | $wb['Server Config'] = 'Configuración del servidor'; |
| | | $wb['Server'] = 'Servidor'; |
| | | $wb['Services'] = 'Servicios'; |
| | | $wb['Config'] = 'Configuración'; |
| | | $wb['Server Config'] = 'Configuración del servidor'; |
| | | $wb['Mail'] = 'Correo'; |
| | | $wb['Getmail'] = 'Getmail'; |
| | | $wb['Web'] = 'Web'; |
| | | $wb['FastCGI'] = 'FastCGI'; |
| | | $wb['Jailkit'] = 'Jailkit'; |
| | | $wb['Rescue'] = 'Rescue'; |
| | | $wb['Server IP addresses'] = 'IP del servidor'; |
| | | $wb['Additional PHP Versions'] = 'Additional PHP Versions'; |
| | | $wb['Firewall'] = 'Cortafuegos'; |
| | | $wb['Interface'] = 'Interface'; |
| | | $wb['Interface Config'] = 'Main Config'; |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['Misc'] = 'Misc'; |
| | | $wb['Software'] = 'Software'; |
| | | $wb['Repositories'] = 'Repositorios'; |
| | | $wb['Packages'] = 'Packages'; |
| | | $wb['Updates'] = 'Updates'; |
| | | $wb['Language Editor'] = 'Editar idioma'; |
| | | $wb['System'] = 'Sistema'; |
| | | $wb['Add user'] = 'Añadir usuario'; |
| | | $wb['Edit user'] = 'Editar usuarios'; |
| | | $wb['CP Users'] = 'Usuarios del Panel'; |
| | | $wb['Add group'] = 'Añadir grupo'; |
| | | $wb['Edit group'] = 'Editar grupo'; |
| | | $wb['Edit server'] = 'Editar servidor'; |
| | | $wb['Servers'] = 'Servidores'; |
| | | $wb['Sync. Now'] = 'Sincronizar ahora'; |
| | | $wb['DB Sync.'] = 'Sincronizar BD'; |
| | | $wb['Languages'] = 'Idiomas'; |
| | | $wb['New Language'] = 'Nuevo idioma'; |
| | | $wb['Merge'] = 'Merge'; |
| | | $wb['Export'] = 'Exportar'; |
| | | $wb['Import'] = 'Importar'; |
| | | $wb['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Language Editor'] = 'Editar idioma'; |
| | | $wb['Software'] = 'Software'; |
| | | $wb['Repositories'] = 'Repositorios'; |
| | | $wb['Server Services'] = 'Servicios del servidor'; |
| | | $wb['Interface Config'] = 'Interfaz de configuración'; |
| | | $wb['Packages'] = 'Paquetes'; |
| | | $wb['Updates'] = 'Actualizaciones'; |
| | | $wb['Merge'] = 'Unir'; |
| | | $wb['Remote Users'] = 'Usuarios remotos'; |
| | | $wb['Remote Actions'] = 'Acciones a distancia'; |
| | | $wb['Do OS-Update'] = 'Actualizar el S.O.'; |
| | | $wb['Do ISPConfig-Update'] = 'Actualizar ISPConfig 3'; |
| | | $wb['1001'] = 'El usuario o la contraseña está vacío.'; |
| | | $wb['1002'] = 'El usuario o la contraseña esta mal.'; |
| | | $wb['User Management'] = 'User Management'; |
| | | $wb['Rescue'] = 'Rescue'; |
| | | $wb['Server IP addresses'] = 'Server IP addresses'; |
| | | $wb['Additional PHP Versions'] = 'Additional PHP Versions'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['Interface'] = 'Interface'; |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['Misc'] = 'Misc'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['description_txt'] = 'Descripción'; |
| | | $wb['name_txt'] = 'Grupo'; |
| | | $wb['add_new_record_txt'] = 'Añadir nuevo grupo'; |
| | | $wb['warning_txt'] = '<b>WARNING:</b> Do not edit or modify any user settings here. Use the Client- and Reseller settings in the Client module instead. Modifying or changing Users or groups here may cause data loss!'; |
| | | $wb['warning_txt'] = '<b>AVISO:</b> ¡No modifique las configuraciones de usuario aquí! Utilice las opciones del cliente y distribuidor en el módulo cliente en su lugar. Cualquier modificación o cambio de usuarios o grupos aquí puede causar la pérdida de datos'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['multiport_txt'] = 'Multi Port'; |
| | | $wb['singleport_txt'] = 'Single Port'; |
| | | $wb['protocol_txt'] = 'Protocol'; |
| | | $wb['table_txt'] = 'Table'; |
| | | $wb['target_txt'] = 'Target'; |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['destination_ip_txt'] = 'Destination Address'; |
| | | $wb['source_ip_txt'] = 'Source Address'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['iptables_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['protocol_txt'] = 'Protocolo'; |
| | | $wb['table_txt'] = 'Tabla'; |
| | | $wb['target_txt'] = 'Objetivo'; |
| | | $wb['state_txt'] = 'Estado'; |
| | | $wb['destination_ip_txt'] = 'Dirección de destino'; |
| | | $wb['source_ip_txt'] = 'Origen de la dirección'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['iptables_error_unique'] = 'Ya existe un registro de servidor de seguridad de este servidor.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'IPTables'; |
| | | $wb['add_new_rule_txt'] = 'Add IPTables Rule'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['add_new_rule_txt'] = 'Añadir reglas a IPTables'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['multiport_txt'] = 'Multi Port'; |
| | | $wb['singleport_txt'] = 'Single Port'; |
| | | $wb['protocol_txt'] = 'Protocol'; |
| | | $wb['table_txt'] = 'Table'; |
| | | $wb['target_txt'] = 'Target'; |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['destination_ip_txt'] = 'Destination Address'; |
| | | $wb['source_ip_txt'] = 'Source Address'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['iptables_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['protocol_txt'] = 'Protocolo'; |
| | | $wb['table_txt'] = 'Tabla'; |
| | | $wb['target_txt'] = 'Objetivo'; |
| | | $wb['state_txt'] = 'Estado'; |
| | | $wb['destination_ip_txt'] = 'Dirección destino'; |
| | | $wb['source_ip_txt'] = 'Origen de la dirección'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['iptables_error_unique'] = 'Ya existe un registro de servidor de seguridad de este servidor.'; |
| | | ?> |
| | |
| | | $wb['btn_save_txt'] = 'Importar el fichero de idioma'; |
| | | $wb['language_overwrite_txt'] = 'Sobreescribir los ficheros, si existen'; |
| | | $wb['btn_cancel_txt'] = 'Atrás'; |
| | | $wb['ignore_version_txt'] = 'Skip ISPConfig version check'; |
| | | $wb['ignore_version_txt'] = 'Saltar comprobación de la versión ISPConfig'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['select_server_txt'] = 'Select Server'; |
| | | $wb['btn_do_txt'] = 'Execute action'; |
| | | $wb['do_osupdate_caption'] = 'Do OS-Update at remote server'; |
| | | $wb['do_osupdate_desc'] = 'This Action does a aptitude -y upgrade at your selected server.<br><br><strong>USE THIS AT YOUR OWN RISK!</strong>'; |
| | | $wb['do_ispcupdate_caption'] = 'Do ISPConfig 3 - Update at remote server'; |
| | | $wb['do_ispcupdate_desc'] = 'This action does a ISPConfig3 update at your selected server.<br><br><strong>USE THIS AT YOUR OWN RISK!</strong>'; |
| | | $wb['action_scheduled'] = 'The action is scheduled for execution'; |
| | | $wb['select_all_server'] = 'All server'; |
| | | $wb['ispconfig_update_title'] = 'ISPConfig update instructions'; |
| | | $wb['ispconfig_update_text'] = 'Login as root user on the shell of your server and execute the command<br /><br /> <strong>ispconfig_update.sh</strong><br /><br />to start the ISPConfig update.<br /><br /><a href=http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-update-ispconfig-3/ target=_blank>Click here for detailed update instructins</a>'; |
| | | $wb['select_server_txt'] = 'Seleccionar servidor'; |
| | | $wb['btn_do_txt'] = 'Ejecutar acción'; |
| | | $wb['do_osupdate_caption'] = 'Hacer OS-Update el servidor remoto'; |
| | | $wb['do_osupdate_desc'] = 'Esta acción hace un aptitude upgrade-y en su servidor seleccionado <strong> <br> USAR ESTE BAJO SU PROPIO RIESGO </strong>'; |
| | | $wb['do_ispcupdate_caption'] = 'Es ISPConfig 3 - Actualización en el servidor remoto'; |
| | | $wb['do_ispcupdate_desc'] = 'Esta acción hace una actualización de ISPConfig3 en su servidor seleccionado<strong><br>USAR ESTE BAJO SU PROPIO RIESGO</strong>'; |
| | | $wb['action_scheduled'] = 'La acción está prevista para su ejecución'; |
| | | $wb['select_all_server'] = 'Todos los servidores'; |
| | | $wb['ispconfig_update_title'] = 'Instrucciones para actualizar ISPConfig'; |
| | | $wb['ispconfig_update_text'] = 'Inicie sesión como usuario root en el terminal de su servidor y ejecutar el comando<br /><br /><strong>ispconfig_update.sh</strong><br /><br />para iniciar la actualización de ISPConfig.<a href=http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-update-ispconfig-3/ target=_blank> Haga clic aquí para información detallada para actualizar</a>'; |
| | | ?> |
| | |
| | | $wb['password_txt'] = 'Contraseña:'; |
| | | $wb['function_txt'] = 'Funciones:'; |
| | | $wb['username_error_unique'] = 'El nombre de usuario debe ser único'; |
| | | $wb['username_error_empty'] = 'El nombre de usuario no puede estar vacío'; |
| | | $wb['password_error_empty'] = 'La contraseña no puede estar vacía'; |
| | | $wb['username_error_empty'] = 'El nombre de usuario no puede está vacío.'; |
| | | $wb['password_error_empty'] = 'La contraseña no puede está vacío.'; |
| | | $wb['password_strength_txt'] = 'Fortaleza de la contraseña:'; |
| | | $wb['Mail domain functions'] = 'Mail domain functions'; |
| | | $wb['Mail user functions'] = 'Mail user functions'; |
| | | $wb['Mail alias functions'] = 'Mail alias functions'; |
| | | $wb['Mail forward functions'] = 'Mail forward functions'; |
| | | $wb['Mail catchall functions'] = 'Mail catchall functions'; |
| | | $wb['Mail transport functions'] = 'Mail transport functions'; |
| | | $wb['Mail whitelist functions'] = 'Mail whitelist functions'; |
| | | $wb['Mail blacklist functions'] = 'Mail blacklist functions'; |
| | | $wb['Mail spamfilter user functions'] = 'Mail spamfilter user functions'; |
| | | $wb['Mail spamfilter policy functions'] = 'Mail spamfilter policy functions'; |
| | | $wb['Mail fetchmail functions'] = 'Mail fetchmail functions'; |
| | | $wb['Mail user filter functions'] = 'Mail user filter functions'; |
| | | $wb['Mail filter functions'] = 'Mail filter functions'; |
| | | $wb['Client functions'] = 'Client functions'; |
| | | $wb['Sites cron functions'] = 'Sites cron functions'; |
| | | $wb['Sites database functions'] = 'Sites database functions'; |
| | | $wb['Sites FTP-User functions'] = 'Sites FTP-User functions'; |
| | | $wb['Sites Shell-User functions'] = 'Sites Shell-User functions'; |
| | | $wb['Sites Domain functions'] = 'Sites Domain functions'; |
| | | $wb['Sites Aliasdomain functions'] = 'Sites Aliasdomain functions'; |
| | | $wb['Sites Subdomain functions'] = 'Sites Subdomain functions'; |
| | | $wb['DNS zone functions'] = 'DNS zone functions'; |
| | | $wb['DNS a functions'] = 'DNS a functions'; |
| | | $wb['DNS aaaa functions'] = 'DNS aaaa functions'; |
| | | $wb['DNS alias functions'] = 'DNS alias functions'; |
| | | $wb['DNS cname functions'] = 'DNS cname functions'; |
| | | $wb['DNS hinfo functions'] = 'DNS hinfo functions'; |
| | | $wb['DNS mx functions'] = 'DNS mx functions'; |
| | | $wb['DNS ns functions'] = 'DNS ns functions'; |
| | | $wb['DNS ptr functions'] = 'DNS ptr functions'; |
| | | $wb['DNS rp functions'] = 'DNS rp functions'; |
| | | $wb['DNS srv functions'] = 'DNS srv functions'; |
| | | $wb['DNS txt functions'] = 'DNS txt functions'; |
| | | $wb['Mail mailing list functions'] = 'Mail mailinglist functions'; |
| | | $wb['Mail domain functions'] = 'Funciones del dominio de correo'; |
| | | $wb['Mail user functions'] = 'Funciones de usuario de correo'; |
| | | $wb['Mail alias functions'] = 'Funciones de alias de correo'; |
| | | $wb['Mail forward functions'] = 'Funciones de forward'; |
| | | $wb['Mail catchall functions'] = 'Funciones de catchall'; |
| | | $wb['Mail transport functions'] = 'Funciones de transport'; |
| | | $wb['Mail whitelist functions'] = 'Funciones de whitelist'; |
| | | $wb['Mail blacklist functions'] = 'Funciones de blacklist'; |
| | | $wb['Mail spamfilter user functions'] = 'Funciones de spamfilter usuario'; |
| | | $wb['Mail spamfilter policy functions'] = 'Funciones de politica spamfilter'; |
| | | $wb['Mail fetchmail functions'] = 'Funciones de fetchmail'; |
| | | $wb['Mail user filter functions'] = 'Funciones de usuario de filter'; |
| | | $wb['Mail filter functions'] = 'Funciones de filter'; |
| | | $wb['Client functions'] = 'Funciones del Cliente'; |
| | | $wb['Sites cron functions'] = 'Funciones de cron'; |
| | | $wb['Sites database functions'] = 'Funciones de bases de datos'; |
| | | $wb['Sites FTP-User functions'] = 'Funciones Sites FTP-User'; |
| | | $wb['Sites Shell-User functions'] = 'Funciones de Shell-User'; |
| | | $wb['Sites Domain functions'] = 'Funciones de Dominio'; |
| | | $wb['Sites Aliasdomain functions'] = 'Funciones de Aliasdominio'; |
| | | $wb['Sites Subdomain functions'] = 'Funciones de Subdominio'; |
| | | $wb['DNS zone functions'] = 'Funciones de zona'; |
| | | $wb['DNS a functions'] = 'Funciones de DNS'; |
| | | $wb['DNS aaaa functions'] = 'Funciones de aaaa'; |
| | | $wb['DNS alias functions'] = 'Funciones de DNS alias'; |
| | | $wb['DNS cname functions'] = 'Funciones de cname'; |
| | | $wb['DNS hinfo functions'] = 'Funciones de hinfo'; |
| | | $wb['DNS mx functions'] = 'Funciones de mx'; |
| | | $wb['DNS ns functions'] = 'Funciones de ns'; |
| | | $wb['DNS ptr functions'] = 'Funciones de ptr'; |
| | | $wb['DNS rp functions'] = 'Funciones de rp'; |
| | | $wb['DNS srv functions'] = 'Funciones de srv'; |
| | | $wb['DNS txt functions'] = 'Funciones de txt'; |
| | | $wb['Mail mailing list functions'] = 'Funciones de mailinglist'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | |
| | | $wb['dns_server_txt'] = 'Servidor DNS'; |
| | | $wb['file_server_txt'] = 'Servidor de ficheros'; |
| | | $wb['db_server_txt'] = 'Servidor de bases de datos'; |
| | | $wb['vserver_server_txt'] = 'ServidorVirtual-Servidor'; |
| | | $wb['vserver_server_txt'] = 'Servidor-Virtual'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['mirror_server_id_txt'] = 'Is mirror of Server'; |
| | | $wb['- None -'] = '- None -'; |
| | | $wb['proxy_server_txt'] = 'Proxy-Server'; |
| | | $wb['firewall_server_txt'] = 'Firewall-Server'; |
| | | $wb['mirror_server_id_txt'] = 'Es el espejo del Servidor'; |
| | | $wb['- None -'] = '- Ninguno -'; |
| | | $wb['proxy_server_txt'] = 'Servidor-Proxy'; |
| | | $wb['firewall_server_txt'] = 'Servidor-Cortafuegos'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = 'Carpeta Jailkit chroot'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Secciones de aplicación Jailkit chroot'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Secciones de aplicacón Jailkit chroot'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Aplicaciones Jailkit chrooted'; |
| | | $wb['website_path_txt'] = 'Ruta del sitio web'; |
| | | $wb['website_symlinks_txt'] = 'Enlaces simbólicos del sitio web'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Hacer relitivos enlaces simbólicos'; |
| | | $wb['vhost_conf_dir_txt'] = 'Directorio de configuración de vhost'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Directorio de configuración de vhost activados'; |
| | | $wb['getmail_config_dir_txt'] = 'Directorio de configuración de Getmail'; |
| | |
| | | $wb['ip_address_txt'] = 'Dirección IP'; |
| | | $wb['netmask_txt'] = 'Máscara de red'; |
| | | $wb['gateway_txt'] = 'Pasarela'; |
| | | $wb['hostname_txt'] = 'Nombre de la máquina (hostname)'; |
| | | $wb['hostname_txt'] = 'Nombre de la host (hostname)'; |
| | | $wb['nameservers_txt'] = 'Servidores de nombres'; |
| | | $wb['auto_network_configuration_txt'] = 'Configuración de red'; |
| | | $wb['website_basedir_txt'] = 'Basedir del sitio Web'; |
| | | $wb['ip_address_error_wrong'] = 'Formato incorrecto de dirección IP.'; |
| | | $wb['netmask_error_wrong'] = 'Formato incorrecto de máscara de red.'; |
| | | $wb['gateway_error_wrong'] = 'Formato incorrecto de pasarela.'; |
| | | $wb['hostname_error_empty'] = 'El nombre de la máquina (hostname) está vacío.'; |
| | | $wb['hostname_error_empty'] = 'El nombre de maquina está vacío.'; |
| | | $wb['nameservers_error_empty'] = 'El servidor de nombres (nameserver) está vacío.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Aplicaciones Jailkit cron chrooted'; |
| | | $wb['config_dir_txt'] = 'Directorio de configuración'; |
| | |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Dominio'; |
| | | $wb['bind_user_txt'] = 'BIND Usuario'; |
| | | $wb['bind_group_txt'] = 'BIND Grupo'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directorio'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf ruta'; |
| | | $wb['bind_user_error_empty'] = 'BIND usuario está vacío.'; |
| | | $wb['bind_group_error_empty'] = 'BIND grupo está vacío.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND directorio zone de archivos está vacío.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf ruta está vacío.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local ruta está vacío.'; |
| | | $wb['mail_filter_syntax_txt'] = 'MailFilter Sintaxis'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir está vacío.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride está vacío.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf carpeta'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data carpeta'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['backup_dir_txt'] = 'Copia de seguridad del directorio'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local ruta'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini ruta'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini ruta'; |
| | | $wb['check_apache_config_txt'] = 'Prueba de configuración de apache en el reinicio'; |
| | | $wb['CA_path_txt'] = 'CA ruta'; |
| | | $wb['CA_pass_txt'] = 'CA frase de contraseña'; |
| | | $wb['ufw_enable_txt'] = 'Habilitar'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Administrar reglas Builtin'; |
| | | $wb['ufw_ipv6_txt'] = 'Habilitar IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Politica por defecto Input'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Politica por defecto Output'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Politica por defecto Forward'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Politica por defecto Application'; |
| | | $wb['ufw_log_level_txt'] = 'Nivel de registro'; |
| | | $wb['network_config_warning_txt'] = 'La opción de configuración de la red solo está disponible para los servidores de Debian y Ubuntu. No habilite esta opción si su interfaz de red no es eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'La sintaxis de configuración de FastCGI'; |
| | | $wb['server_type_txt'] = 'Tipo de servidor'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_user_txt'] = 'Nginx usuario'; |
| | | $wb['nginx_group_txt'] = 'Nginx grupo'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['backup_dir_error_empty'] = 'Copia de seguridad directorio está vacío.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir ruta está vacío.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir ruta está vacío.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID está vacío.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID está vacío.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser nombre está vacío.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Grupo está vacío.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir está vacío.'; |
| | | $wb['website_basedir_error_empty'] = 'Sitio web basedir está vacío.'; |
| | | $wb['website_path_error_empty'] = 'Sitio web ruta está vacío.'; |
| | | $wb['website_symlinks_error_empty'] = 'Sitio web symlinks está vacío.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir está vacío.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir está vacío.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir está vacío.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir está vacío.'; |
| | | $wb['apache_user_error_empty'] = 'Apache usuario está vacío.'; |
| | | $wb['apache_group_error_empty'] = 'Apache gropo está vacío.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user está vacío.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group está vacío.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini ruta está vacío.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini ruta está vacío.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket está vacío.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost puerto está vacío.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP está vacío.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter ruta está vacío.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script está vacío.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias está vacío.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini ruta está vacío.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children está vacío.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests está vacío.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin está vacío.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home está vacío.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections está vacío.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications está vacío.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications está vacío.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directorio está vacío.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name está vacío.'; |
| | | $wb['crontab_dir_error_empty'] = 'ruta for individual crontabs está vacío.'; |
| | | $wb['cron_wget_error_empty'] = 'ruta to wget program está vacío.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script está vacío.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini ruta'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini ruta está vacío.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directorio'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directorio está vacío.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port está vacío.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directorio'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directorio está vacío.'; |
| | | $wb['try_rescue_txt'] = 'Habilitar el servicio de monitoreo y reiniciar en caso de fallo'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Desactivar el seguimiento de MySQL'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Desactivar el seguimiento de Ecorreo'; |
| | | $wb['rescue_description_txt'] = '<b>Información:</b> ¡Si desea apagar mysql tiene que seleccionar la casilla de verificación Deshabilitar MySQL monitor y esperar 2-3 minutos. <br> Si usted no espera 2-3 minutos, el rescate se intenta reiniciar mysql!'; |
| | | $wb['enable_sni_txt'] = 'Habilitar SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Desactivar el seguimiento de HTTPD'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Juego de permisos de las carpetas de actualización'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Añadir usuarios de la web a los sshusers del grupo'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect ID de usuario de Linux para webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Inicio de identificación para identificación de usuario/webid conexión'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['virtualhost_txt'] = 'NameVirtualHost HTTP'; |
| | | $wb['ip_error_wrong'] = 'Dirección IP no válida'; |
| | | $wb['ip_error_unique'] = 'La dirección IP debe ser única'; |
| | | $wb['client_id_txt'] = 'Client'; |
| | | $wb['ip_type_txt'] = 'Type'; |
| | | $wb['virtualhost_port_txt'] = 'HTTP Ports'; |
| | | $wb['error_port_syntax'] = 'Invalid chars in port field, please enter only comma separated numbers. Example: 80,443'; |
| | | $wb['client_id_txt'] = 'Cliente'; |
| | | $wb['ip_type_txt'] = 'Tipo'; |
| | | $wb['virtualhost_port_txt'] = 'Puertos HTTP'; |
| | | $wb['error_port_syntax'] = 'Caracteres no válidos en el campo Puerto, introduzca números separados por comas solo. Ejemplo: 80,443'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['ip_address_txt'] = 'Dirección IP'; |
| | | $wb['add_new_record_txt'] = 'Añadir nueva dirección IP'; |
| | | $wb['client_id_txt'] = 'Client'; |
| | | $wb['client_id_txt'] = 'Cliente'; |
| | | $wb['virtualhost_txt'] = 'HTTP Vhost'; |
| | | $wb['virtualhost_port_txt'] = 'HTTP Ports'; |
| | | $wb['ip_type_txt'] = 'Type'; |
| | | $wb['ip_type_txt'] = 'Tipo'; |
| | | ?> |
| | |
| | | $wb['vserver_server_txt'] = 'VServer'; |
| | | $wb['add_new_record_txt'] = 'Añadir nuevo servidor'; |
| | | $wb['proxy_server_txt'] = 'Proxy'; |
| | | $wb['firewall_server_txt'] = 'Firewall'; |
| | | $wb['firewall_server_txt'] = 'Cortafuegos'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Install software package'; |
| | | $wb['install_key_txt'] = 'Enter install key'; |
| | | $wb['btn_save_txt'] = 'Start Installation'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['head_txt'] = 'Instale el paquete de software'; |
| | | $wb['install_key_txt'] = 'Introduzca la clave de instalación'; |
| | | $wb['btn_save_txt'] = 'Iniciar la instalación'; |
| | | $wb['btn_cancel_txt'] = 'Cancelar'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['system_config_desc_txt'] = ''; |
| | | $wb['warning'] = '¡Tenga cuidado al modificar estos valores! No elimine los prefijos en un sistema que tenga más de un cliente.'; |
| | | $wb['warning'] = ' ¡Tenga cuidado al modificar estos valores! No elimine los prefijos en un sistema que tenga más de un cliente.'; |
| | | $wb['dbname_prefix_txt'] = 'Prefijo del nombre de la base de datos'; |
| | | $wb['dbuser_prefix_txt'] = 'Prefijo del usuario de la base de datos'; |
| | | $wb['shelluser_prefix_txt'] = 'Prefijo del usuario de la consola'; |
| | |
| | | $wb['mailboxlist_webmail_link_txt'] = 'Enlace al correo web en la lista de buzones de correo'; |
| | | $wb['webmail_url_txt'] = 'Webmail URL'; |
| | | $wb['phpmyadmin_url_txt'] = 'PHPMyAdmin URL'; |
| | | $wb['use_domain_module_txt'] = 'Use the domain-module to add new domains'; |
| | | $wb['use_domain_module_hint'] = 'If you use this module, your customers can only select one of the domains the admin creates for them. They can not free edit the domain-field.You have to re-login after changing this value, to make the changes visible.'; |
| | | $wb['new_domain_txt'] = 'HTML to create a new domain'; |
| | | $wb['dashboard_atom_url_admin_txt'] = 'Dashboard atom feed URL (admin)'; |
| | | $wb['dashboard_atom_url_reseller_txt'] = 'Dashboard atom feed URL (reseller)'; |
| | | $wb['dashboard_atom_url_client_txt'] = 'Dashboard atom feed URL (client)'; |
| | | $wb['webdavuser_prefix_txt'] = 'Webdav user prefix'; |
| | | $wb['webdavuser_prefix_error_regex'] = 'Char not allowed in webdav user prefix.'; |
| | | $wb['use_domain_module_txt'] = 'Utilice el módulo dominio para añadir nuevos dominios'; |
| | | $wb['use_domain_module_hint'] = 'Si se utiliza este módulo, los clientes sólo se puede seleccionar uno de los dominios de la administración crea para ellos. Ellos no pueden liberar a editar el campo dominio. Usted tiene que volver a entrar después de cambiar este valor, para hacer los cambios visibles.'; |
| | | $wb['new_domain_txt'] = 'HTML para crear un nuevo dominio'; |
| | | $wb['dashboard_atom_url_admin_txt'] = 'Panel URL del feed átomo (admin)'; |
| | | $wb['dashboard_atom_url_reseller_txt'] = 'Panel URL del feed átomo (revendedor)'; |
| | | $wb['dashboard_atom_url_client_txt'] = 'Panel URL del feed átomo (cliente)'; |
| | | $wb['webdavuser_prefix_txt'] = 'Prefijo de usuario WebDAV'; |
| | | $wb['webdavuser_prefix_error_regex'] = 'Char no se permite en el prefijo de usuario webdav.'; |
| | | $wb['webftp_url_txt'] = 'WebFTP URL'; |
| | | $wb['enable_custom_login_txt'] = 'Allow custom login name'; |
| | | $wb['mailmailinglist_link_txt'] = 'Link to mailing list in Mailing list list'; |
| | | $wb['mailmailinglist_url_txt'] = 'Mailing list URL'; |
| | | $wb['admin_mail_txt'] = 'Administrators e-mail'; |
| | | $wb['monitor_key_txt'] = 'Monitor keyword'; |
| | | $wb['admin_name_txt'] = 'Administrators name'; |
| | | $wb['enable_custom_login_txt'] = 'Permitir que el nombre de inicio de sesión personalizado'; |
| | | $wb['mailmailinglist_link_txt'] = 'Enlace a la lista de correo en la lista de lista de correo'; |
| | | $wb['mailmailinglist_url_txt'] = 'URL Lista de correo'; |
| | | $wb['admin_mail_txt'] = 'Los administradores de correo electrónico'; |
| | | $wb['monitor_key_txt'] = 'Monitorear palabra clave'; |
| | | $wb['admin_name_txt'] = 'Nombre de los administradores'; |
| | | $wb['system_config_desc_txt'] = ''; |
| | | $wb['smtp_missing_admin_mail_txt'] = 'Please enter the admin name and admin mail address if you want to use smtp mail sending.'; |
| | | $wb['tab_change_discard_txt'] = 'Discard changes on tab change'; |
| | | $wb['tab_change_warning_txt'] = 'Tab change warning'; |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['maintenance_mode_txt'] = 'Maintenance Mode'; |
| | | $wb['smtp_enabled_txt'] = 'Use SMTP to send system mails'; |
| | | $wb['smtp_host_txt'] = 'SMTP host'; |
| | |
| | | $wb['smtp_user_txt'] = 'SMTP user'; |
| | | $wb['smtp_pass_txt'] = 'SMTP password'; |
| | | $wb['smtp_crypt_txt'] = 'Use SSL/TLS encrypted connection for SMTP'; |
| | | $wb['smtp_missing_admin_mail_txt'] = 'Please enter the admin name and admin mail address if you want to use smtp mail sending.'; |
| | | $wb['tab_change_discard_txt'] = 'Discard changes on tab change'; |
| | | $wb['tab_change_warning_txt'] = 'Tab change warning'; |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Usuarios'; |
| | | $wb['username_txt'] = 'Usuario'; |
| | | $wb['client_id_txt'] = 'Client ID'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['add_new_record_txt'] = 'Añadir nuevo usuario'; |
| | | $wb['warning_txt'] = '<b>WARNING:</b> Do not edit or modify any user settings here. Use the Client- and Reseller settings in the Client module instead. Modifying or changing Users or groups here may cause data loss!'; |
| | | $wb['warning_txt'] = '<b>AVISO: </b> ¡No modifique ninguna configuración de usuario aquí. Utilice las opciones del cliente y distribuidor en el módulo de clientes en su lugar. Cualquier modificación de los usuarios o grupos aquí, puede causar pérdida de datos!'; |
| | | $wb['client_id_txt'] = 'User ID'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['groups_txt'] = 'Groups'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | $wb['Remote Actions'] = 'Actions distantes'; |
| | | $wb['Do OS-Update'] = 'Mise à jour de l\'OS'; |
| | | $wb['Do ISPConfig-Update'] = 'Mise à jour ISPConfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Accueil du chroot Jailkit"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Sections des applications chrootées Jailkit"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Applications chrootées Jailkit"; |
| | | $wb['website_path_txt'] = "Chemin du site web"; |
| | | $wb['website_symlinks_txt'] = "Liens symboliques du site web"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['vhost_conf_dir_txt'] = "Répertoire de configuration des VHosts"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Répertoire de configuration des VHosts actifs"; |
| | | $wb['getmail_config_dir_txt'] = "Répertoire de configuration de Getmail"; |
| | | $wb['fastcgi_starter_path_txt'] = "Chemin du lanceur de FastCGI"; |
| | | $wb['fastcgi_starter_script_txt'] = "Script lanceur de FastCGI"; |
| | | $wb['fastcgi_alias_txt'] = "Alias de FastCGI"; |
| | | $wb['fastcgi_phpini_path_txt'] = "Chemin du php.ini de FastCGI"; |
| | | $wb['fastcgi_children_txt'] = "Enfant de FastCGI"; |
| | | $wb['fastcgi_max_requests_txt'] = "Nombre maximal de requêtes FastCGI"; |
| | | $wb['fastcgi_bin_txt'] = "Exécutable FastCGI"; |
| | | $wb['module_txt'] = "Module"; |
| | | $wb['maildir_path_txt'] = "Chemin Maildir"; |
| | | $wb['homedir_path_txt'] = "Chemin Homedir"; |
| | | $wb['mailuser_uid_txt'] = "UID de l'utilisateur mail"; |
| | | $wb['mailuser_gid_txt'] = "GID de l'utilisateur mail"; |
| | | $wb['mailuser_name_txt'] = "Nom d'utilisateur mail"; |
| | | $wb['mailuser_group_txt'] = "Groupe de l'utilisateur mail"; |
| | | $wb['relayhost_txt'] = "Hôte de relais"; |
| | | $wb['relayhost_user_txt'] = "Utilisateur du relais"; |
| | | $wb['relayhost_password_txt'] = "Mot de passe du relais"; |
| | | $wb['mailbox_size_limit_txt'] = "Taille maximale de la boite mail"; |
| | | $wb['message_size_limit_txt'] = "Taille maximale des messages"; |
| | | $wb['ip_address_txt'] = "Adresse IP"; |
| | | $wb['netmask_txt'] = "Masque de réseau"; |
| | | $wb['gateway_txt'] = "Passerelle"; |
| | | $wb['hostname_txt'] = "Hôte"; |
| | | $wb['nameservers_txt'] = "Serveurs de nom"; |
| | | $wb['auto_network_configuration_txt'] = "Configuration du réseau"; |
| | | $wb['website_basedir_txt'] = "Répertoire de base web"; |
| | | $wb['ip_address_error_wrong'] = "Format de ladresse IP invalide."; |
| | | $wb['netmask_error_wrong'] = "Format du masque de réseau invalide."; |
| | | $wb['gateway_error_wrong'] = "Format de la passerelle invalide."; |
| | | $wb['hostname_error_empty'] = "Lhôte est vide."; |
| | | $wb['nameservers_error_empty'] = "Le serveur de nom est vide."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Applications Cron Jailkit chrootées"; |
| | | $wb['config_dir_txt'] = "Répertoire de configuration"; |
| | | $wb['init_script_txt'] = "Nom du script Cron de lancement"; |
| | | $wb['crontab_dir_txt'] = "Chemin des différentes tables Cron"; |
| | | $wb['wget_txt'] = "Chemin du programme wget"; |
| | | $wb['security_level_txt'] = "Niveau de sécurité"; |
| | | $wb['web_user_txt'] = "Utilisateur Apache"; |
| | | $wb['web_group_txt'] = "Groupe Apache"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Port Apps-vhost"; |
| | | $wb['apps_vhost_ip_txt'] = "IP Apps-vhost"; |
| | | $wb['apps_vhost_servername_txt'] = " Domaine Apps-vhost"; |
| | | $wb['bind_user_txt'] = "Utilisateur BIND"; |
| | | $wb['bind_group_txt'] = "Groupe BIND"; |
| | | $wb['bind_zonefiles_dir_txt'] = "Dossier pour les zones BIND"; |
| | | $wb['named_conf_path_txt'] = "Chemin named.conf BIND"; |
| | | $wb['bind_user_error_empty'] = "Lutilisateur BIND est vide."; |
| | | $wb['bind_group_error_empty'] = "Le groupe BIND est vide."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "Le dossier de zones BIND est vide."; |
| | | $wb['named_conf_path_error_empty'] = "Le chemin du named.conf BIND est vide."; |
| | | $wb['named_conf_local_path_error_empty'] = "Le chemin du named.conf.local BIND est vide."; |
| | | $wb['mail_filter_syntax_txt'] = "Syntaxe filtre email"; |
| | | $wb['pop3_imap_daemon_txt'] = "Démon POP3/IMAP"; |
| | | $wb['php_open_basedir_txt'] = "open_basedir PHP"; |
| | | $wb['php_open_basedir_error_empty'] = "lopen_basedir PHP est vide."; |
| | | $wb['htaccess_allow_override_txt'] = "AllowOverride .htaccess"; |
| | | $wb['htaccess_allow_override_error_empty'] = "lAllowOverride .htaccess est vide."; |
| | | $wb['awstats_conf_dir_txt'] = "Dossier de configuration AWstats"; |
| | | $wb['awstats_data_dir_txt'] = "Dossier de données AWstats"; |
| | | $wb['awstats_pl_txt'] = "Script awstats.pl"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "Script awstats_buildstaticpages.pl"; |
| | | $wb['backup_dir_txt'] = "Dossier de sauvegarde"; |
| | | $wb['named_conf_local_path_txt'] = "Chemin named.conf.local BIND"; |
| | | $wb['php_ini_path_cgi_txt'] = "Chemin php.ini CGI"; |
| | | $wb['php_ini_path_apache_txt'] = "Chemin php.ini Apache"; |
| | | $wb['check_apache_config_txt'] = "Tester la configuration Apache au redémarrage"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Accueil du chroot Jailkit'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Sections des applications chrootées Jailkit'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Applications chrootées Jailkit'; |
| | | $wb['website_path_txt'] = 'Chemin du site web'; |
| | | $wb['website_symlinks_txt'] = 'Liens symboliques du site web'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['vhost_conf_dir_txt'] = 'Répertoire de configuration des VHosts'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Répertoire de configuration des VHosts actifs'; |
| | | $wb['getmail_config_dir_txt'] = 'Répertoire de configuration de Getmail'; |
| | | $wb['fastcgi_starter_path_txt'] = 'Chemin du lanceur de FastCGI'; |
| | | $wb['fastcgi_starter_script_txt'] = 'Script lanceur de FastCGI'; |
| | | $wb['fastcgi_alias_txt'] = 'Alias de FastCGI'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'Chemin du php.ini de FastCGI'; |
| | | $wb['fastcgi_children_txt'] = 'Enfant de FastCGI'; |
| | | $wb['fastcgi_max_requests_txt'] = 'Nombre maximal de requêtes FastCGI'; |
| | | $wb['fastcgi_bin_txt'] = 'Exécutable FastCGI'; |
| | | $wb['module_txt'] = 'Module'; |
| | | $wb['maildir_path_txt'] = 'Chemin Maildir'; |
| | | $wb['homedir_path_txt'] = 'Chemin Homedir'; |
| | | $wb['mailuser_uid_txt'] = 'UID de l\'utilisateur mail'; |
| | | $wb['mailuser_gid_txt'] = 'GID de l\'utilisateur mail'; |
| | | $wb['mailuser_name_txt'] = 'Nom d\'utilisateur mail'; |
| | | $wb['mailuser_group_txt'] = 'Groupe de l\'utilisateur mail'; |
| | | $wb['relayhost_txt'] = 'Hôte de relais'; |
| | | $wb['relayhost_user_txt'] = 'Utilisateur du relais'; |
| | | $wb['relayhost_password_txt'] = 'Mot de passe du relais'; |
| | | $wb['mailbox_size_limit_txt'] = 'Taille maximale de la boite mail'; |
| | | $wb['message_size_limit_txt'] = 'Taille maximale des messages'; |
| | | $wb['ip_address_txt'] = 'Adresse IP'; |
| | | $wb['netmask_txt'] = 'Masque de réseau'; |
| | | $wb['gateway_txt'] = 'Passerelle'; |
| | | $wb['hostname_txt'] = 'Hôte'; |
| | | $wb['nameservers_txt'] = 'Serveurs de nom'; |
| | | $wb['auto_network_configuration_txt'] = 'Configuration du réseau'; |
| | | $wb['website_basedir_txt'] = 'Répertoire de base web'; |
| | | $wb['ip_address_error_wrong'] = 'Format de ladresse IP invalide.'; |
| | | $wb['netmask_error_wrong'] = 'Format du masque de réseau invalide.'; |
| | | $wb['gateway_error_wrong'] = 'Format de la passerelle invalide.'; |
| | | $wb['hostname_error_empty'] = 'Lhôte est vide.'; |
| | | $wb['nameservers_error_empty'] = 'Le serveur de nom est vide.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Applications Cron Jailkit chrootées'; |
| | | $wb['config_dir_txt'] = 'Répertoire de configuration'; |
| | | $wb['init_script_txt'] = 'Nom du script Cron de lancement'; |
| | | $wb['crontab_dir_txt'] = 'Chemin des différentes tables Cron'; |
| | | $wb['wget_txt'] = 'Chemin du programme wget'; |
| | | $wb['security_level_txt'] = 'Niveau de sécurité'; |
| | | $wb['web_user_txt'] = 'Utilisateur Apache'; |
| | | $wb['web_group_txt'] = 'Groupe Apache'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Port Apps-vhost'; |
| | | $wb['apps_vhost_ip_txt'] = 'IP Apps-vhost'; |
| | | $wb['apps_vhost_servername_txt'] = ' Domaine Apps-vhost'; |
| | | $wb['bind_user_txt'] = 'Utilisateur BIND'; |
| | | $wb['bind_group_txt'] = 'Groupe BIND'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'Dossier pour les zones BIND'; |
| | | $wb['named_conf_path_txt'] = 'Chemin named.conf BIND'; |
| | | $wb['bind_user_error_empty'] = 'Lutilisateur BIND est vide.'; |
| | | $wb['bind_group_error_empty'] = 'Le groupe BIND est vide.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'Le dossier de zones BIND est vide.'; |
| | | $wb['named_conf_path_error_empty'] = 'Le chemin du named.conf BIND est vide.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'Le chemin du named.conf.local BIND est vide.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Syntaxe filtre email'; |
| | | $wb['pop3_imap_daemon_txt'] = 'Démon POP3/IMAP'; |
| | | $wb['php_open_basedir_txt'] = 'open_basedir PHP'; |
| | | $wb['php_open_basedir_error_empty'] = 'lopen_basedir PHP est vide.'; |
| | | $wb['htaccess_allow_override_txt'] = 'AllowOverride .htaccess'; |
| | | $wb['htaccess_allow_override_error_empty'] = 'lAllowOverride .htaccess est vide.'; |
| | | $wb['awstats_conf_dir_txt'] = 'Dossier de configuration AWstats'; |
| | | $wb['awstats_data_dir_txt'] = 'Dossier de données AWstats'; |
| | | $wb['awstats_pl_txt'] = 'Script awstats.pl'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'Script awstats_buildstaticpages.pl'; |
| | | $wb['backup_dir_txt'] = 'Dossier de sauvegarde'; |
| | | $wb['named_conf_local_path_txt'] = 'Chemin named.conf.local BIND'; |
| | | $wb['php_ini_path_cgi_txt'] = 'Chemin php.ini CGI'; |
| | | $wb['php_ini_path_apache_txt'] = 'Chemin php.ini Apache'; |
| | | $wb['check_apache_config_txt'] = 'Tester la configuration Apache au redémarrage'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['smtp_user_txt'] = 'SMTP user'; |
| | | $wb['smtp_pass_txt'] = 'SMTP password'; |
| | | $wb['smtp_crypt_txt'] = 'Use SSL/TLS encrypted connection for SMTP'; |
| | | $wb['smtp_missing_admin_mail_txt'] = 'Please enter the admin name and admin mail address if you want to use smtp mail sending.'; |
| | | $wb['tab_change_discard_txt'] = 'Discard changes on tab change'; |
| | | $wb['tab_change_warning_txt'] = 'Tab change warning'; |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | $wb['v6_prefix_txt'] = 'IPv6 Prefix'; |
| | | $wb['vhost_rewrite_v6_txt'] = 'Rewrite IPv6 on Mirror'; |
| | | $wb['v6_prefix_wrong'] = 'Invalid v6 Netmask format.'; |
| | | ?> |
| | |
| | | $wb['tab_change_warning_note_txt'] = 'Show a warning on tab change in edit forms if any data has been altered by the user.'; |
| | | $wb['vhost_subdomains_txt'] = 'Create Subdomains as web site'; |
| | | $wb['vhost_subdomains_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | $wb['use_combobox_txt'] = 'Use jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Use Load Indicator'; |
| | | $wb['f5_to_reload_js_txt'] = 'If you change this, you might have to press F5 to make the browser reload JavaScript libraries or empty your browser cache.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['username_error_collision'] = 'The username may not be web or web plus a number.\"'; |
| | | ?> |
| | |
| | | $server_id = $this->id; |
| | | |
| | | $server_config_array = $app->getconf->get_server_config($server_id); |
| | | |
| | | foreach($app->tform->formDef['tabs'][$section]['fields'] as $key => $field) { |
| | | if ($field['formtype'] == 'CHECKBOX') { |
| | | if($this->dataRecord[$key] == '') { |
| | | // if a checkbox is not set, we set it to the unchecked value |
| | | $this->dataRecord[$key] = $field['value'][0]; |
| | | } |
| | | } |
| | | } |
| | | |
| | | $server_config_array[$section] = $app->tform->encode($this->dataRecord,$section); |
| | | $server_config_str = $app->ini_parser->get_ini_string($server_config_array); |
| | | |
| | |
| | | |
| | | class page_action extends tform_actions { |
| | | |
| | | //var $_js_changed = false; |
| | | |
| | | function onShowEdit() { |
| | | global $app, $conf; |
| | |
| | | $section = $app->tform->getCurrentTab(); |
| | | |
| | | $server_config_array = $app->getconf->get_global_config(); |
| | | |
| | | foreach($app->tform->formDef['tabs'][$section]['fields'] as $key => $field) { |
| | | if ($field['formtype'] == 'CHECKBOX') { |
| | | if($this->dataRecord[$key] == '') { |
| | | // if a checkbox is not set, we set it to the unchecked value |
| | | $this->dataRecord[$key] = $field['value'][0]; |
| | | } |
| | | } |
| | | } |
| | | |
| | | /* |
| | | if((isset($this->dataRecord['use_loadindicator']) && $this->dataRecord['use_loadindicator'] != $server_config_array[$section]['use_loadindicator']) || (isset($this->dataRecord['use_combobox']) && $this->dataRecord['use_combobox'] != $server_config_array[$section]['use_combobox'])){ |
| | | $this->_js_changed = true; |
| | | } |
| | | */ |
| | | |
| | | $new_config = $app->tform->encode($this->dataRecord,$section); |
| | | if($section == 'sites' && $new_config['vhost_subdomains'] != 'y' && $server_config_array['vhost_subdomains'] == 'y') { |
| | | // check for existing vhost subdomains, if found the mode cannot be disabled |
| | |
| | | } |
| | | } |
| | | |
| | | /* |
| | | function onAfterUpdate() { |
| | | if($this->_js_changed == true) { |
| | | // not the best way, but it works |
| | | header('Content-Type: text/html'); |
| | | print '<script type="text/javascript">document.location.reload(true);</script>'; |
| | | exit; |
| | | } |
| | | } |
| | | */ |
| | | |
| | | } |
| | | |
| | | $app->tform_actions = new page_action; |
| | |
| | | <div class="ctrlHolder"> |
| | | <label for="website_autoalias">{tmpl_var name='website_autoalias_txt'}</label>
|
| | | <input name="website_autoalias" id="website_autoalias" value="{tmpl_var name='website_autoalias'}" size="40" maxlength="255" type="text" class="textInput" /> {tmpl_var name='website_autoalias_note_txt'} <a href="javascript:void(0);" class="addPlaceholder">[client_id]</a>, <a href="javascript:void(0);" class="addPlaceholder">[client_username]</a>, <a href="javascript:void(0);" class="addPlaceholder">[website_id]</a>, <a href="javascript:void(0);" class="addPlaceholder">[website_domain]</a>
|
| | | </div>
|
| | | </div> |
| | | <!--
|
| | | <div class="ctrlHolder apache">
|
| | | <label for="vhost_rewrite_v6">{tmpl_var name='vhost_rewrite_v6_txt'}</label>
|
| | | <div class="multiField">
|
| | | {tmpl_var name='vhost_rewrite_v6'}
|
| | | </div>
|
| | | </div>
|
| | | </div> |
| | | -->
|
| | | <div class="ctrlHolder apache">
|
| | | <label for="vhost_conf_dir">{tmpl_var name='vhost_conf_dir_txt'}</label>
|
| | | <input name="vhost_conf_dir" id="vhost_conf_dir" value="{tmpl_var name='vhost_conf_dir'}" size="40" maxlength="255" type="text" class="textInput" />
|
| | |
| | | {tmpl_var name='tab_change_warning'}<br/>{tmpl_var name='tab_change_warning_note_txt'} |
| | | </div> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <p class="label">{tmpl_var name='use_loadindicator_txt'}</p> |
| | | <div class="multiField"> |
| | | {tmpl_var name='use_loadindicator'}<br/>{tmpl_var name='f5_to_reload_js_txt'} |
| | | </div> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <p class="label">{tmpl_var name='use_combobox_txt'}</p> |
| | | <div class="multiField"> |
| | | {tmpl_var name='use_combobox'}<br/>{tmpl_var name='f5_to_reload_js_txt'} |
| | | </div> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <p class="label">{tmpl_var name='maintenance_mode_txt'}</p> |
| | | <div class="multiField"> |
| | |
| | | {tmpl_var name='vhost_subdomains'} {tmpl_var name='vhost_subdomains_note_txt'} |
| | | </div> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <p class="label">{tmpl_var name='client_username_web_check_disabled_txt'}</p> |
| | | <div class="multiField"> |
| | | {tmpl_var name='client_username_web_check_disabled'} |
| | | </div> |
| | | </div> |
| | | </fieldset> |
| | | |
| | | <input type="hidden" name="id" value="{tmpl_var name='id'}"> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new client'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Държава'; |
| | | $wb['add_new_record_txt'] = 'Добави нов клиент'; |
| | | $wb['username_txt'] = 'Потребителско име'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['limit_ssl_txt'] = 'SSL available'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Град'; |
| | | $wb['country_txt'] = 'Страна'; |
| | | $wb['add_new_record_txt'] = 'Добави нов дилър'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'País'; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo cliente'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Cidade'; |
| | | $wb['country_txt'] = 'País'; |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo revendedor'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['Client'] = 'Klient'; |
| | | $wb['Address'] = 'Adresa'; |
| | | $wb['Limits'] = 'Limity'; |
| | | $wb['Add Client'] = 'Přidat klienta'; |
| | |
| | | $wb['Send email'] = 'Send Email'; |
| | | $wb['Edit Client Circle'] = 'Edit Client Circle'; |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['error_domain_in mailuse'] = 'This domain cannot be deleted, because it is in use as mail-domain'; |
| | | $wb['error_domain_in webuse'] = 'This domain cannot be deleted, because it is in use as web-domain'; |
| | | $wb['error_client_can_not_add_domain'] = 'You cannot add a new domain'; |
| | | $wb['error_client_group_id_empty'] = 'You have to select a customer<br>'; |
| | | $wb['Client'] = 'Client'; |
| | | ?> |
| | |
| | | $wb['limit_mailrouting_txt'] = 'Max. počet emailových směrování'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. počet emailových filtrů'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. počet účtů externího získávání emailů'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox kvóta'; |
| | | $wb['limit_mailquota_txt'] = 'Kvóty poštovních schránek'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. počet spamfiltrových bílých / černých listinových filtrů'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. počet spamflitrových uživatelů'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. počet spamfiltrových politik'; |
| | | $wb['default_mailserver_txt'] = 'Výchozí mailserver'; |
| | | $wb['default_mailserver_txt'] = 'Výchozí e-mailserver'; |
| | | $wb['company_name_txt'] = 'Název společnosti'; |
| | | $wb['contact_name_txt'] = 'Název kontaktu'; |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | |
| | | $wb['telephone_txt'] = 'Telefon'; |
| | | $wb['mobile_txt'] = 'Mobilní telefon'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Kontaktní email na klienta'; |
| | | $wb['email_txt'] = 'Kontaktní e-mail na klienta'; |
| | | $wb['internet_txt'] = 'WWW stránky klienta'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Poznámky'; |
| | |
| | | $wb['template_master_txt'] = 'Hlavní šablona'; |
| | | $wb['template_additional_txt'] = 'Addon šablona'; |
| | | $wb['ssh_chroot_txt'] = 'SSH chroot volby'; |
| | | $wb['web_php_options_txt'] = 'PHP volby'; |
| | | $wb['limit_client_error'] = 'Max. počet kleintů dosažen.'; |
| | | $wb['limit_web_quota_txt'] = 'Web kvóta'; |
| | | $wb['web_php_options_txt'] = 'PHP - dostupné volby pro klienta'; |
| | | $wb['limit_client_error'] = 'Max. počet klientů dosažen.'; |
| | | $wb['limit_web_quota_txt'] = 'Webová kvóta'; |
| | | $wb['limit_traffic_quota_txt'] = 'Přenosová kvóta'; |
| | | $wb['limit_trafficquota_error_notint'] = 'Přenosová kvót musí být číslo.'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. number of Webdav users'; |
| | | $wb['limit_webdav_user_error_notint'] = 'The webdav user limit must be a number.'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. počet WebDAV uživatelů'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Limit pro WebDAV uživatele musí být číslo.'; |
| | | $wb['customer_no_txt'] = 'Zákaznické číslo'; |
| | | $wb['vat_id_txt'] = 'DIČ'; |
| | | $wb['required_fields_txt'] = '* Povinná pole'; |
| | | $wb['company_id_txt'] = 'IČO'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. number of mailing lists'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. počet e-mailovových konferencí (mailinglist)'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'The mailing list record limit must be a number.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. number of virtual servers'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Force virtual server template'; |
| | |
| | | $wb['web_php_options_notempty'] = 'No PHP option(s) selected. Select at least one PHP option.'; |
| | | $wb['ssh_chroot_notempty'] = 'No SSH chroot option selected. Select at least one SSH option.'; |
| | | $wb['username_error_collision'] = 'The username may not start with the word -web- or -web- followed by a number.'; |
| | | $wb['add_additional_template_txt'] = 'Add additional template'; |
| | | $wb['delete_additional_template_txt'] = 'Delete additional template'; |
| | | $wb['limit_cgi_txt'] = 'CGI available'; |
| | | $wb['limit_ssi_txt'] = 'SSI available'; |
| | | $wb['limit_perl_txt'] = 'Perl available'; |
| | | $wb['limit_ruby_txt'] = 'Ruby available'; |
| | | $wb['limit_python_txt'] = 'Python available'; |
| | | $wb['force_suexec_txt'] = 'SuEXEC forced'; |
| | | $wb['add_additional_template_txt'] = 'Přidat další šablonu'; |
| | | $wb['delete_additional_template_txt'] = 'Odstranit další šablonu'; |
| | | $wb['limit_cgi_txt'] = 'CGI - dostupná volba pro klienta'; |
| | | $wb['limit_ssi_txt'] = 'SSI - dostupná volba pro klienta'; |
| | | $wb['limit_perl_txt'] = 'Perl - dostupná volba pro klienta'; |
| | | $wb['limit_ruby_txt'] = 'Ruby - dostupná volba pro klienta'; |
| | | $wb['limit_python_txt'] = 'Python - dostupná volba pro klienta'; |
| | | $wb['force_suexec_txt'] = 'SuEXEC - vynucená volba u klienta'; |
| | | $wb['limit_hterror_txt'] = 'Custom error docs available'; |
| | | $wb['limit_wildcard_txt'] = 'Wildcard subdomain available'; |
| | | $wb['limit_ssl_txt'] = 'SSL available'; |
| | | $wb['bank_account_number_txt'] = 'Číslo účtu'; |
| | | $wb['limit_ssl_txt'] = 'SSL - dostupná volba pro klienta'; |
| | | $wb['bank_account_number_txt'] = 'Číslo bankovního účtu'; |
| | | $wb['bank_code_txt'] = 'Kód banky'; |
| | | $wb['bank_name_txt'] = 'Název banky'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['web_limits_txt'] = 'Web Limits'; |
| | | $wb['email_limits_txt'] = 'Email Limits'; |
| | | $wb['database_limits_txt'] = 'Database Limits'; |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['web_limits_txt'] = 'Web nastavení limitů'; |
| | | $wb['email_limits_txt'] = 'E-mail nastavení limitů '; |
| | | $wb['database_limits_txt'] = 'Databáze nastavení limitů'; |
| | | $wb['cron_job_limits_txt'] = 'Cron úlohy nastavení limitů'; |
| | | $wb['dns_limits_txt'] = 'DNS nastavení limitů'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualizace nastavení limitů'; |
| | | $wb['generate_password_txt'] = 'Generovat heslo'; |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | $wb['active_template_additional_txt'] = 'Active Addons'; |
| | | $wb['bank_account_owner_txt'] = 'Bankovní účet vlastníka'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['email_error_isemail'] = 'Zadejte prosím platnou e-mailovou adresu.'; |
| | | $wb['customer_no_error_unique'] = 'Číslo zákazníka musí být unikátní (nebo prázdné).'; |
| | | $wb['paypal_email_error_isemail'] = 'Zadejte prosím platnou PayPal e-mailovou adresu.'; |
| | | $wb['paypal_email_txt'] = 'PayPal E-mail'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Client Circle'] = 'Klient Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | |
| | | <?php |
| | | $wb['btn_send_txt'] = 'Send email'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['sender_txt'] = 'Sender email address'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['message_txt'] = 'Message'; |
| | | $wb['form_legend_client_txt'] = 'Send email message to all clients.'; |
| | | $wb['form_legend_admin_txt'] = 'Send email message to all clients and resellers.'; |
| | | $wb['sender_invalid_error'] = 'Sender email invalid.'; |
| | | $wb['subject_invalid_error'] = 'Subject is empty.'; |
| | | $wb['message_invalid_error'] = 'Message is empty.'; |
| | | $wb['email_sent_to_txt'] = 'Email sent to:'; |
| | | $wb['page_head_txt'] = 'Send customer information'; |
| | | $wb['recipient_txt'] = 'Recipient'; |
| | | $wb['all_clients_resellers_txt'] = 'All clients and resellers'; |
| | | $wb['all_clients_txt'] = 'All clients'; |
| | | $wb['variables_txt'] = 'Variables:'; |
| | | $wb['btn_send_txt'] = 'Odeslat e-mail'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | $wb['sender_txt'] = 'E-mailová adresa odesílatele'; |
| | | $wb['subject_txt'] = 'Předmět'; |
| | | $wb['message_txt'] = 'Zpráva'; |
| | | $wb['form_legend_client_txt'] = 'Poslat e-mailovou zprávu všem klientům.'; |
| | | $wb['form_legend_admin_txt'] = 'Poslat e-mailovou zprávu všem klientům a prodejcům.'; |
| | | $wb['sender_invalid_error'] = 'Odesílatel e-mailu je neplatný.'; |
| | | $wb['subject_invalid_error'] = 'Předmět je prázdný.'; |
| | | $wb['message_invalid_error'] = 'Zpráva je prázdný.'; |
| | | $wb['email_sent_to_txt'] = 'E-mail poslat na adresu:'; |
| | | $wb['page_head_txt'] = 'Poslat informace zákazníkovi'; |
| | | $wb['recipient_txt'] = 'Příjemce'; |
| | | $wb['all_clients_resellers_txt'] = 'Všichni klienti a prodejci'; |
| | | $wb['all_clients_txt'] = 'Všichni klienti'; |
| | | $wb['variables_txt'] = 'Výběr:'; |
| | | ?> |
| | |
| | | $wb['limit_mailrouting_txt'] = 'Max. počet emailových směrování'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. počet emailových filtrů'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. počet účtů externího získávání emailů'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox kvóta'; |
| | | $wb['limit_mailquota_txt'] = 'Kvóty poštovních schránek'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. počet spamfiltrových bílých / černých listinových filtrů'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. počet spamflitrových uživatelů'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. počet spamfiltrových politik'; |
| | |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Force virtual server template'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'The virtual server limit must be a number.'; |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['template_type_txt'] = 'Template type'; |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | $wb['limit_cgi_txt'] = 'CGI available'; |
| | | $wb['limit_ssi_txt'] = 'SSI available'; |
| | | $wb['limit_perl_txt'] = 'Perl available'; |
| | | $wb['limit_ruby_txt'] = 'Ruby available'; |
| | | $wb['limit_python_txt'] = 'Python available'; |
| | | $wb['force_suexec_txt'] = 'SuEXEC forced'; |
| | | $wb['web_php_options_txt'] = 'PHP - dostupné volby pro klienta'; |
| | | $wb['template_type_txt'] = 'Typ šablony'; |
| | | $wb['template_name_txt'] = 'Název šablony'; |
| | | $wb['limit_cgi_txt'] = 'CGI - dostupná volba pro klienta'; |
| | | $wb['limit_ssi_txt'] = 'SSI - dostupná volba pro klienta'; |
| | | $wb['limit_perl_txt'] = 'Perl - dostupná volba pro klienta'; |
| | | $wb['limit_ruby_txt'] = 'Ruby - dostupná volba pro klienta'; |
| | | $wb['limit_python_txt'] = 'Python - dostupná volba pro klienta'; |
| | | $wb['force_suexec_txt'] = 'SuEXEC - vynucená volba u klienta'; |
| | | $wb['limit_hterror_txt'] = 'Custom error docs available'; |
| | | $wb['limit_wildcard_txt'] = 'Wildcard subdomain available'; |
| | | $wb['limit_ssl_txt'] = 'SSL available'; |
| | | $wb['web_limits_txt'] = 'Web Limits'; |
| | | $wb['email_limits_txt'] = 'Email Limits'; |
| | | $wb['database_limits_txt'] = 'Database Limits'; |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['limit_ssl_txt'] = 'SSL - dostupná volba pro klienta'; |
| | | $wb['web_limits_txt'] = 'Web nastavení limitů'; |
| | | $wb['email_limits_txt'] = 'E-mail nastavení limitů'; |
| | | $wb['database_limits_txt'] = 'Databáze nastavení limitů'; |
| | | $wb['cron_job_limits_txt'] = 'Cron úlohy nastavení limitů'; |
| | | $wb['dns_limits_txt'] = 'DNS nastavení limitů'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualizace nastavení limitů'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Město'; |
| | | $wb['country_txt'] = 'Stát'; |
| | | $wb['add_new_record_txt'] = 'Přidat klienta'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_error_empty'] = 'The domain-name is empty'; |
| | | $wb['domain_error_unique'] = 'The domain already exists'; |
| | | $wb['domain_error_regex'] = 'This domain-name is not allowed'; |
| | | $wb['Domain'] = 'Domain'; |
| | | $wb['domain_error_empty'] = 'Doménové jméno je prázdné'; |
| | | $wb['domain_error_unique'] = 'Doména již existuje'; |
| | | $wb['domain_error_regex'] = 'Toto doménové jméno není dovoleno'; |
| | | $wb['Domain'] = 'Doména'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Domains'; |
| | | $wb['add_new_record_txt'] = 'Add new Domain'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['user_txt'] = 'Client'; |
| | | $wb['list_head_txt'] = 'Domény'; |
| | | $wb['add_new_record_txt'] = 'Přidat novou doménu'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['user_txt'] = 'Klient'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['limit_maildomain_txt'] = 'Max. počet emailových domén'; |
| | | $wb['limit_maildomain_txt'] = 'Max. počet e-mailových domén'; |
| | | $wb['limit_mailbox_txt'] = 'Max. počet mailboxů'; |
| | | $wb['limit_mailalias_txt'] = 'Max. počet emailových aliasů'; |
| | | $wb['limit_mailforward_txt'] = 'Max. počet emailových předávání'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. počet emailových košů'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. počet emailových směrování'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. počet emailových filtrů'; |
| | | $wb['limit_mailalias_txt'] = 'Max. počet e-mailových aliasů'; |
| | | $wb['limit_mailforward_txt'] = 'Max. počet e-mailových předávání'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. počet e-mailových košů'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. počet e-mailových směrování'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. počet e-mailových filtrů'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. počet účtů externího získávání emailů'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox kvóta'; |
| | | $wb['limit_mailquota_txt'] = 'Kvóty poštovních schránek'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. počet spamfiltrových bílých / černých listinových filtrů'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. počet spamflitrových uživatelů'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. počet spamfiltrových politik'; |
| | |
| | | $wb['telephone_txt'] = 'Telefon'; |
| | | $wb['mobile_txt'] = 'Mobilní telefon'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Poznámky'; |
| | |
| | | $wb['customer_no_txt'] = 'Zákaznické číslo'; |
| | | $wb['vat_id_txt'] = 'DIČ'; |
| | | $wb['required_fields_txt'] = '* Povinná pole'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. number of Webdav users'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. počet WebDAV uživatelů'; |
| | | $wb['limit_webdav_user_error_notint'] = 'The webdav user limit must be a number.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. number of mailing lists'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. počet e-mailovových konferencí (mailinglist)'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Max. number of domain aliases'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'The mailing list record limit must be a number.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. number of virtual servers'; |
| | |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['email_error_isemail'] = 'Zadejte prosím platnou e-mailovou adresu.'; |
| | | $wb['customer_no_error_unique'] = 'Číslo zákazníka musí být unikátní (nebo prázdné).'; |
| | | $wb['paypal_email_error_isemail'] = 'Zadejte prosím platnou PayPal e-mailovou adresu.'; |
| | | $wb['paypal_email_txt'] = 'PayPal E-mail'; |
| | | $wb['company_id_txt'] = 'Firma / podnikatel ID'; |
| | | $wb['bank_account_number_txt'] = 'Číslo bankovního účtu'; |
| | | $wb['bank_account_owner_txt'] = 'Bankovní účet vlastníka'; |
| | | $wb['bank_code_txt'] = 'Kód banky'; |
| | | $wb['bank_name_txt'] = 'Název banky'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Město'; |
| | | $wb['country_txt'] = 'Stát'; |
| | | $wb['add_new_record_txt'] = 'Přidat distributora'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['email_error_isemail'] = 'Bitte geben Sie eine gültige Email-Adresse an.'; |
| | | $wb['paypal_email_error_isemail'] = 'Bitte geben Sie eine gültige PayPal-E-Mail-Adresse an.'; |
| | | $wb['paypal_email_txt'] = 'PayPal-E-Mail'; |
| | | $wb['err_msg_master_tpl_set'] = 'Die hier eingestellten Werte werden ignoriert, wenn als Mastervorlage nicht \"Custom\" gewählt ist.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Land'; |
| | | $wb['add_new_record_txt'] = 'Kunden hinzufügen'; |
| | | $wb['username_txt'] = 'Benutzername'; |
| | | $wb['customer_no_txt'] = 'Kundennummer'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Ort'; |
| | | $wb['country_txt'] = 'Land'; |
| | | $wb['add_new_record_txt'] = 'Neuen Reseller hinzufügen'; |
| | | $wb['customer_no_txt'] = 'Kundennummer'; |
| | | $wb['username_txt'] = 'Benutzername'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Χώρα'; |
| | | $wb['add_new_record_txt'] = 'Νέος Πελάτης'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Πόλη'; |
| | | $wb['country_txt'] = 'Χώρα'; |
| | | $wb['add_new_record_txt'] = 'Νεός Μεταπωλητής'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policies'; |
| | | $wb["default_mailserver_txt"] = 'Default Mailserver'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | |
| | | $wb["customer_no_error_unique"] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than "custom" is selected.'; |
| | | ?> |
| | |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policies'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new client'; |
| | | $wb["customer_no_txt"] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new reseller'; |
| | | $wb["customer_no_txt"] = 'Customer No.'; |
| | | $wb["username_txt"] = 'Username'; |
| | | ?> |
| | |
| | | $wb['Add Reseller'] = 'Añadir revendedor'; |
| | | $wb['Edit Reseller'] = 'Editar revendedor'; |
| | | $wb['Resellers'] = 'Revendedores'; |
| | | $wb['error_has_clients'] = 'This reseller has clients. Delete the clients of the reseller first.'; |
| | | $wb['add_additional_template_txt'] = 'Add additional template'; |
| | | $wb['delete_additional_template_txt'] = 'Delete additional template'; |
| | | $wb['Messaging'] = 'Messaging'; |
| | | $wb['error_has_clients'] = 'Este revendedor tiene clientes. Eliminar los clientes del revendedor primero.'; |
| | | $wb['add_additional_template_txt'] = 'Añadir plantilla adicional'; |
| | | $wb['delete_additional_template_txt'] = 'Eliminar plantilla adicional'; |
| | | $wb['Messaging'] = 'Mensajes'; |
| | | $wb['Send email'] = 'Send Email'; |
| | | $wb['Edit Client Circle'] = 'Edit Client Circle'; |
| | | $wb['Domains'] = 'Domains'; |
| | |
| | | $wb['customer_no_txt'] = 'Número Cliente'; |
| | | $wb['vat_id_txt'] = 'VAT ID'; |
| | | $wb['required_fields_txt'] = '* Campos Requeridos'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'The mailing list record limit must be a number.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. number of virtual servers'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Force virtual server template'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'The virtual server limit must be a number.'; |
| | | $wb['web_php_options_notempty'] = 'No PHP option(s) selected. Select at least one PHP option.'; |
| | | $wb['ssh_chroot_notempty'] = 'No SSH chroot option selected. Select at least one SSH option.'; |
| | | $wb['username_error_collision'] = 'The username may not start with the word -web- or -web- followed by a number.'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'El límite de registro de la lista de correo debe ser un número.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. número de servidores virtuales'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Fuerza plantilla de servidor virtual'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'El límite del servidor virtual debe ser un número.'; |
| | | $wb['web_php_options_notempty'] = 'No hay opción de PHP(s) seleccionado. Seleccione al menos una opción de PHP.'; |
| | | $wb['ssh_chroot_notempty'] = 'No hay opción chroot SSH seleccionado. Seleccione al menos una opción SSH.'; |
| | | $wb['username_error_collision'] = 'El nombre de usuario no puede comenzar con la palabra -web- o web- seguida de un número.'; |
| | | $wb['active_template_additional_txt'] = 'Active Addons'; |
| | | $wb['add_additional_template_txt'] = 'Add additional template'; |
| | | $wb['delete_additional_template_txt'] = 'Delete additional template'; |
| | | $wb['limit_cgi_txt'] = 'CGI available'; |
| | |
| | | $wb['limit_wildcard_txt'] = 'Wildcard subdomain available'; |
| | | $wb['limit_ssl_txt'] = 'SSL available'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['active_template_additional_txt'] = 'Active Addons'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['btn_send_txt'] = 'Send email'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['sender_txt'] = 'Sender email address'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['message_txt'] = 'Message'; |
| | | $wb['form_legend_client_txt'] = 'Send email message to all clients.'; |
| | | $wb['form_legend_admin_txt'] = 'Send email message to all clients and resellers.'; |
| | | $wb['sender_invalid_error'] = 'Sender email invalid.'; |
| | | $wb['subject_invalid_error'] = 'Subject is empty.'; |
| | | $wb['message_invalid_error'] = 'Message is empty.'; |
| | | $wb['email_sent_to_txt'] = 'Email sent to:'; |
| | | $wb['btn_send_txt'] = 'Enviar correo'; |
| | | $wb['btn_cancel_txt'] = 'Cancelar'; |
| | | $wb['sender_txt'] = 'Dirección de correo del remitente'; |
| | | $wb['subject_txt'] = 'Asunto'; |
| | | $wb['message_txt'] = 'Mensaje'; |
| | | $wb['form_legend_client_txt'] = 'Enviar mensaje de correo para todos los clientes.'; |
| | | $wb['form_legend_admin_txt'] = 'Enviar mensaje de correo a todos los clientes y revendedores.'; |
| | | $wb['sender_invalid_error'] = 'El correo del remitente no es válido.'; |
| | | $wb['subject_invalid_error'] = 'El sujeto está vacío.'; |
| | | $wb['message_invalid_error'] = 'El mensaje está vacío.'; |
| | | $wb['email_sent_to_txt'] = 'El correo enviado a:'; |
| | | $wb['page_head_txt'] = 'Send customer information'; |
| | | $wb['recipient_txt'] = 'Recipient'; |
| | | $wb['all_clients_resellers_txt'] = 'All clients and resellers'; |
| | |
| | | $wb['limit_trafficquota_error_notint'] = 'Cuota de Tráfico debe ser un número.'; |
| | | $wb['template_del_aborted_txt'] = 'Eliminación abortada. Hay un cliente que tiene esta plantilla seleccionada.'; |
| | | $wb['limit_webdav_user_txt'] = 'Número máximo de usuarios Webdav'; |
| | | $wb['limit_webdav_user_error_notint'] = 'El límite de usuarios Webdav debe ser un número.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. number of mailing lists'; |
| | | $wb['limit_webdav_user_error_notint'] = 'La lista de correo límite de registro debe ser un número.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. número de listas de correo'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'The mailing list record limit must be a number.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. number of virtual servers'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Force virtual server template'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'The virtual server limit must be a number.'; |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['template_type_txt'] = 'Template type'; |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. número de servidores virtuales'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Fuerza plantilla de servidor virtual'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'El límite del servidor virtual debe ser un número.'; |
| | | $wb['ssh_chroot_txt'] = 'Opciones SSH-Chroot'; |
| | | $wb['web_php_options_txt'] = 'Opciones de PHP'; |
| | | $wb['template_type_txt'] = 'Tipo de Plantilla'; |
| | | $wb['template_name_txt'] = 'Nombre de plantilla'; |
| | | $wb['limit_cgi_txt'] = 'CGI available'; |
| | | $wb['limit_ssi_txt'] = 'SSI available'; |
| | | $wb['limit_perl_txt'] = 'Perl available'; |
| | |
| | | $wb['city_txt'] = 'Localidad'; |
| | | $wb['country_txt'] = 'País'; |
| | | $wb['add_new_record_txt'] = 'Añadir un nuevo cliente'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['username_txt'] = 'Nombre de usuario'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['required_fields_txt'] = '* Campos Requeridos'; |
| | | $wb['limit_webdav_user_txt'] = 'Numero máximo de usuarios Webdav'; |
| | | $wb['limit_webdav_user_error_notint'] = 'El límite de usuarios Webdav debe ser un número.'; |
| | | $wb['company_txt'] = 'Company'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'The mailing list record limit must be a number.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. number of virtual servers'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Force virtual server template'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'The virtual server limit must be a number.'; |
| | | $wb['web_php_options_notempty'] = 'No PHP option(s) selected. Select at least one PHP option.'; |
| | | $wb['ssh_chroot_notempty'] = 'No SSH chroot option selected. Select at least one SSH option.'; |
| | | $wb['username_error_collision'] = 'The username may not start with the word -web- or -web- followed by a number.'; |
| | | $wb['company_txt'] = 'Compañia'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'La lista de correo límite de registro debe ser un número.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. número de servidores virtuales'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Fuerza plantilla de servidor virtual'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'El límite del servidor virtual debe ser un número.'; |
| | | $wb['web_php_options_notempty'] = 'No hay opción de PHP (s) seleccionado. Seleccione al menos una opción de PHP.'; |
| | | $wb['ssh_chroot_notempty'] = 'No hay opción chroot SSH seleccionado. Seleccione al menos una opción SSH.'; |
| | | $wb['username_error_collision'] = 'El nombre de usuario no puede comenzar con la palabra -web- o -web- seguida de un número.'; |
| | | $wb['add_additional_template_txt'] = 'Add additional template'; |
| | | $wb['delete_additional_template_txt'] = 'Delete additional template'; |
| | | $wb['limit_cgi_txt'] = 'CGI available'; |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Localidad'; |
| | | $wb['country_txt'] = 'País'; |
| | | $wb['add_new_record_txt'] = 'Añadir un nuevo revendedor'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['client_id_txt'] = 'Tunnus'; |
| | | $wb['add_new_record_txt'] = 'Add new client'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Kaupunki'; |
| | | $wb['country_txt'] = 'Maa'; |
| | | $wb['add_new_record_txt'] = 'Lisää uusi jälleenmyyjä'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['active_template_additional_txt'] = 'Active Addons'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Pays'; |
| | | $wb['add_new_record_txt'] = 'Ajouter un nouveau client'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Ville'; |
| | | $wb['country_txt'] = 'Pays'; |
| | | $wb['add_new_record_txt'] = 'Ajouter un nouveau client'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Država'; |
| | | $wb['add_new_record_txt'] = 'Dodaj klijenta'; |
| | | $wb['username_txt'] = 'Korisničko ime'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Grad'; |
| | | $wb['country_txt'] = 'Država'; |
| | | $wb['add_new_record_txt'] = 'Dodaj novog preprodavača'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Ország'; |
| | | $wb['add_new_record_txt'] = 'Új Ügyfél hozzáadása'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Város'; |
| | | $wb['country_txt'] = 'Ország'; |
| | | $wb['add_new_record_txt'] = 'Új Viszonteladó'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Negara'; |
| | | $wb['add_new_record_txt'] = 'Tambah Klien Baru'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Kota'; |
| | | $wb['country_txt'] = 'Negara'; |
| | | $wb['add_new_record_txt'] = 'Tambah Reseller Baru'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Stato'; |
| | | $wb['add_new_record_txt'] = 'Aggiungi nuovo cliente'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Città'; |
| | | $wb['country_txt'] = 'Nazione'; |
| | | $wb['add_new_record_txt'] = 'Aggiungi nuovo rivenditore'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = '国'; |
| | | $wb['add_new_record_txt'] = 'クライアントを追加する'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = '市区町村'; |
| | | $wb['country_txt'] = '国'; |
| | | $wb['add_new_record_txt'] = 'リセラーを追加する'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Land'; |
| | | $wb['add_new_record_txt'] = 'Toevoegen nieuwe klant'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Plaatsnaam'; |
| | | $wb['country_txt'] = 'Land'; |
| | | $wb['add_new_record_txt'] = 'Toevoegen nieuwe reseller'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Kraj'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego klienta'; |
| | | $wb['username_txt'] = 'Login'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Miasto'; |
| | | $wb['country_txt'] = 'Państwo'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego resellera'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'País'; |
| | | $wb['add_new_record_txt'] = 'Adicionar Cliente'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Cidade'; |
| | | $wb['country_txt'] = 'País'; |
| | | $wb['add_new_record_txt'] = 'Adicionar um novo revendedor'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Tara'; |
| | | $wb['add_new_record_txt'] = 'Adauga client nou'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['add_new_record_txt'] = 'Добавить клиента'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Город'; |
| | | $wb['country_txt'] = 'Страна'; |
| | | $wb['add_new_record_txt'] = 'Добавить реселлера'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new client'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Krajina'; |
| | | $wb['add_new_record_txt'] = 'Pridať nového klienta'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Mesto'; |
| | | $wb['country_txt'] = 'Krajina'; |
| | | $wb['add_new_record_txt'] = 'Pridať nového predajcu'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than \"custom\" is selected.'; |
| | | ?> |
| | |
| | | $wb['country_txt'] = 'Ülke'; |
| | | $wb['add_new_record_txt'] = 'Yeni Müşteri'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | ?> |
| | |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_account_owner_txt'] = 'Bank account owner'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['city_txt'] = 'Şehir'; |
| | | $wb['country_txt'] = 'Ülke'; |
| | | $wb['add_new_record_txt'] = 'Yeni Reseller'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | 'prefix' => "%", |
| | | 'suffix' => "%", |
| | | 'width' => "", |
| | | 'value' => ""); |
| | | 'value' => ""); |
| | | |
| | | $liste["item"][] = array( 'field' => "customer_no", |
| | | 'datatype' => "VARCHAR", |
| | | 'formtype' => "TEXT", |
| | | 'op' => "like", |
| | | 'prefix' => "%", |
| | | 'suffix' => "%", |
| | | 'width' => "", |
| | | 'value' => ""); |
| | | |
| | | $liste["item"][] = array( 'field' => "username", |
| | | 'datatype' => "VARCHAR", |
| | |
| | | 'suffix' => "%", |
| | | 'width' => "", |
| | | 'value' => ""); |
| | | |
| | | $liste["item"][] = array( 'field' => "customer_no", |
| | | 'datatype' => "VARCHAR", |
| | | 'formtype' => "TEXT", |
| | | 'op' => "like", |
| | | 'prefix' => "%", |
| | | 'suffix' => "%", |
| | | 'width' => "", |
| | | 'value' => ""); |
| | | |
| | | $liste["item"][] = array( 'field' => "username", |
| | | 'datatype' => "VARCHAR", |
| | | 'formtype' => "TEXT", |
| | | 'op' => "like", |
| | | 'prefix' => "%", |
| | | 'suffix' => "%", |
| | | 'width' => "", |
| | | 'value' => ""); |
| | | |
| | | $liste["item"][] = array( 'field' => "city", |
| | | 'datatype' => "VARCHAR", |
| | |
| | | </div> |
| | | </div> |
| | | |
| | | </div> |
| | | </div> |
| | | <script type="text/javascript"> |
| | | <!-- |
| | | function custom_template_selected() { |
| | | return ($('#template_master').val() == '0' ? true : false); |
| | | } |
| | | |
| | | jQuery('div.panel_client') |
| | | .find('div.pnl_formsarea') |
| | | .find('fieldset') |
| | | .find('input,select,button') |
| | | .not('#template_master,#template_additional') |
| | | .click(function(e) { |
| | | if(custom_template_selected()) return true; |
| | | e.preventDefault(); |
| | | alert('{tmpl_var name="err_msg_master_tpl_set"}'); |
| | | }) |
| | | .focus(function() { |
| | | if(custom_template_selected()) return true; |
| | | $(this).blur(); |
| | | }); |
| | | |
| | | //--> |
| | | </script> |
| | |
| | | <th class="tbl_col_client_id" scope="col"><tmpl_var name="client_id_txt"></th> |
| | | <th class="tbl_col_company_name" scope="col"><tmpl_var name="company_name_txt"></th> |
| | | <th class="tbl_col_contact_name" scope="col"><tmpl_var name="contact_name_txt"></th> |
| | | <th class="tbl_col_customer_no" scope="col"><tmpl_var name="customer_no_txt"></th> |
| | | <th class="tbl_col_username" scope="col"><tmpl_var name="username_txt"></th> |
| | | <th class="tbl_col_city" scope="col"><tmpl_var name="city_txt"></th> |
| | | <th class="tbl_col_country" scope="col"><tmpl_var name="country_txt"></th> |
| | |
| | | </tr> |
| | | <tr class="filter"> |
| | | <td class="tbl_col_client_pid"><input type="text" name="search_client_id" value="{tmpl_var name='search_client_id'}" /></td> |
| | | <td class="tbl_col_company_name"><input type="text" name="search_company_name" value="{tmpl_var name='search_company_name'}" /></td> |
| | | <td class="tbl_col_contact_name"><input type="text" name="search_contact_name" value="{tmpl_var name='search_contact_name'}" /></td> |
| | | <td class="tbl_col_username"><input type="text" name="search_username" value="{tmpl_var name='search_username'}" /></td> |
| | | <td class="tbl_col_city"><input type="text" name="search_city" value="{tmpl_var name='search_city'}" /></td> |
| | | <td class="tbl_col_company_name"><input type="text" name="search_company_name" value="{tmpl_var name='search_company_name'}" size="10" /></td> |
| | | <td class="tbl_col_contact_name"><input type="text" name="search_contact_name" value="{tmpl_var name='search_contact_name'}" size="10" /></td> |
| | | <td class="tbl_col_customer_no"><input type="text" name="search_customer_no" value="{tmpl_var name='search_customer_no'}" size="10" /></td> |
| | | <td class="tbl_col_username"><input type="text" name="search_username" value="{tmpl_var name='search_username'}" size="10" /></td> |
| | | <td class="tbl_col_city"><input type="text" name="search_city" value="{tmpl_var name='search_city'}" size="10" /></td> |
| | | <td class="tbl_col_country"><select name="search_country">{tmpl_var name='search_country'}</select></td> |
| | | <td class="tbl_col_buttons"> |
| | | <button type="button" class="button icons16 icoFilter" name="Filter" id="Filter" value="{tmpl_var name="filter_txt"}" onclick="submitForm('pageForm','client/client_list.php');"><span>{tmpl_var name="filter_txt"}</span></button> |
| | |
| | | <td class="tbl_col_client_pid"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="client_id"}</a></td> |
| | | <td class="tbl_col_company_name"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="company_name"}</a></td> |
| | | <td class="tbl_col_contact_name"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="contact_name"}</a></td> |
| | | <td class="tbl_col_customer_no"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="customer_no"}</a></td> |
| | | <td class="tbl_col_username"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="username"}</a></td> |
| | | <td class="tbl_col_city"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="city"}</a></td> |
| | | <td class="tbl_col_country"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');"><div class="country-{tmpl_var name="countryiso"}" style="float:left"></div>{tmpl_var name="country"}</a></td> |
| | |
| | | </tbody> |
| | | <tfoot> |
| | | <tr> |
| | | <td class="tbl_footer tbl_paging" colspan="7"><tmpl_var name="paging"></td> |
| | | <td class="tbl_footer tbl_paging" colspan="8"><tmpl_var name="paging"></td> |
| | | </tr> |
| | | </tfoot> |
| | | </table> |
| | |
| | | <th class="tbl_col_client_id" scope="col"><tmpl_var name="client_id_txt"></th> |
| | | <th class="tbl_col_company_name" scope="col"><tmpl_var name="company_name_txt"></th> |
| | | <th class="tbl_col_contact_name" scope="col"><tmpl_var name="contact_name_txt"></th> |
| | | <th class="tbl_col_customer_no" scope="col"><tmpl_var name="customer_no_txt"></th> |
| | | <th class="tbl_col_username" scope="col"><tmpl_var name="username_txt"></th> |
| | | <th class="tbl_col_city" scope="col"><tmpl_var name="city_txt"></th> |
| | | <th class="tbl_col_country" scope="col"><tmpl_var name="country_txt"></th> |
| | | <th class="tbl_col_limit" scope="col">{tmpl_var name='search_limit'}</th> |
| | | </tr> |
| | | <tr class="filter"> |
| | | <td class="tbl_col_client_pid"><input type="text" name="search_client_id" value="{tmpl_var name='search_client_id'}" /></td> |
| | | <td class="tbl_col_company_name"><input type="text" name="search_company_name" value="{tmpl_var name='search_company_name'}" /></td> |
| | | <td class="tbl_col_contact_name"><input type="text" name="search_contact_name" value="{tmpl_var name='search_contact_name'}" /></td> |
| | | <td class="tbl_col_company_name"><input type="text" name="search_company_name" value="{tmpl_var name='search_company_name'}" size="10" /></td> |
| | | <td class="tbl_col_contact_name"><input type="text" name="search_contact_name" value="{tmpl_var name='search_contact_name'}" size="10" /></td> |
| | | <td class="tbl_col_customer_no"><input type="text" name="search_customer_no" value="{tmpl_var name='search_customer_no'}" size="10" /></td> |
| | | <td class="tbl_col_username"><input type="text" name="search_username" value="{tmpl_var name='search_username'}" size="10" /></td> |
| | | <td class="tbl_col_city"><input type="text" name="search_city" value="{tmpl_var name='search_city'}" /></td> |
| | | <td class="tbl_col_country"><select name="search_country">{tmpl_var name='search_country'}</select></td> |
| | | <td class="tbl_col_buttons"> |
| | |
| | | <td class="tbl_col_client_pid"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="client_id"}</a></td> |
| | | <td class="tbl_col_company_name"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="company_name"}</a></td> |
| | | <td class="tbl_col_contact_name"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="contact_name"}</a></td> |
| | | <td class="tbl_col_customer_no"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="customer_no"}</a></td> |
| | | <td class="tbl_col_username"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="username"}</a></td> |
| | | <td class="tbl_col_city"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="city"}</a></td> |
| | | <td class="tbl_col_country"><a href="#" onclick="loadContent('client/reseller_edit.php?id={tmpl_var name='id'}');"><div class="country-{tmpl_var name="countryiso"}" style="float:left"></div>{tmpl_var name="country"}</a></td> |
| | | <td class="tbl_col_buttons"> |
| | |
| | | </tbody> |
| | | <tfoot> |
| | | <tr> |
| | | <td class="tbl_footer tbl_paging" colspan="6"><tmpl_var name="paging"></td> |
| | | <td class="tbl_footer tbl_paging" colspan="8"><tmpl_var name="paging"></td> |
| | | </tr> |
| | | </tfoot> |
| | | </table> |
| | |
| | | $wb["limit_fetchmail_txt"] = 'Number of fetchmail accounts'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Number of spamfilter policys'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Number of spamfilter policies'; |
| | | $wb["limit_cron_txt"] = 'Number of cron jobs'; |
| | | $wb["limit_web_domain_txt"] = 'Number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Number of web aliasdomains'; |
| | |
| | | <?php |
| | | $wb['welcome_user_txt'] = 'Bienvenido %s'; |
| | | $wb['available_modules_txt'] = 'Available Modules'; |
| | | $wb['available_modules_txt'] = 'Módulos disponibles'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['available_modules_txt'] = 'Módulos Disponibles'; |
| | | $wb['available_modules_txt'] = 'Módulos disponibles'; |
| | | ?> |
| | |
| | | if(isset($_POST['ns2']) && $_POST['ns2'] == '') $error .= $app->lng('error_ns2_empty').'<br />'; |
| | | if(isset($_POST['email']) && $_POST['email'] == '') $error .= $app->lng('error_email_empty').'<br />'; |
| | | |
| | | if(isset($_POST['domain']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z0-9\-]{2,30}[\.]{0,1}$/',$_POST['domain'])) $error .= $app->lng('error_domain_regex').'<br />'; |
| | | if(isset($_POST['ns1']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z0-9]{2,30}[\.]{0,1}$/',$_POST['ns1'])) $error .= $app->lng('error_ns1_regex').'<br />'; |
| | | if(isset($_POST['ns2']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z0-9]{2,30}[\.]{0,1}$/',$_POST['ns2'])) $error .= $app->lng('error_ns2_regex').'<br />'; |
| | | if(isset($_POST['domain']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z0-9\-]{2,30}$/',$_POST['domain'])) $error .= $app->lng('error_domain_regex').'<br />'; |
| | | if(isset($_POST['ns1']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z0-9]{2,30}$/',$_POST['ns1'])) $error .= $app->lng('error_ns1_regex').'<br />'; |
| | | if(isset($_POST['ns2']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z0-9]{2,30}$/',$_POST['ns2'])) $error .= $app->lng('error_ns2_regex').'<br />'; |
| | | if(isset($_POST['email']) && !preg_match('/^\w+[\w.-]*\w+@\w+[\w.-]*\w+\.[a-z0-9\-]{2,30}$/i',$_POST['email'])) $error .= $app->lng('error_email_regex').'<br />'; |
| | | |
| | | // make sure that the record belongs to the clinet group and not the admin group when a dmin inserts it |
| | | // make sure that the record belongs to the client group and not the admin group when admin inserts it |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' && isset($_POST['client_group_id'])) { |
| | | $sys_groupid = $app->functions->intval($_POST['client_group_id']); |
| | | } elseif($app->auth->has_clients($_SESSION['s']['user']['userid']) && isset($_POST['client_group_id'])) { |
| | |
| | | 'ns' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'filters' => array( 0 => array( 'event' => 'SAVE', |
| | | 'type' => 'IDNTOASCII'), |
| | | 1 => array( 'event' => 'SHOW', |
| | | 'type' => 'IDNTOUTF8'), |
| | | 2 => array( 'event' => 'SAVE', |
| | | 'type' => 'TOLOWER') |
| | | ), |
| | | 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^[\w\.\-]{1,255}$/', |
| | | 'regex' => '/^[0-9\.]{1,255}$/', |
| | | 'errmsg'=> 'ns_error_regex'), |
| | | ), |
| | | 'default' => '', |
| | |
| | | 'xfer' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^[0-9\.\,]{0,255}$/', |
| | | 'errmsg'=> 'xfer_error_regex'), |
| | | ), |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['zone_txt'] = 'Zóna'; |
| | | $wb['name_txt'] = 'Hostname'; |
| | | $wb['name_txt'] = 'Název hostitele (hostname)'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['data_txt'] = 'Hostname mailserveru'; |
| | | $wb['data_txt'] = 'Název hostitele (hostname) e-mail serveru'; |
| | | $wb['aux_txt'] = 'Priorita'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_dns_record_txt'] = 'Dosažen maximální počet DNS záznamů pro Váš účet.'; |
| | | $wb['no_zone_perm'] = 'Nemáte oprávnění přidat záznam do této zóny.'; |
| | | $wb['name_error_empty'] = 'Hostname je prázdný.'; |
| | | $wb['name_error_regex'] = 'Hostname má chybný formát.'; |
| | | $wb['data_error_empty'] = 'Hostname mailserveru je prázdný'; |
| | | $wb['data_error_regex'] = 'Hostname mailserveru má chybný formát'; |
| | | $wb['name_error_empty'] = 'Název hostitele (hostname) je prázdný.'; |
| | | $wb['name_error_regex'] = 'Název hostitele (hostname) má chybný formát.'; |
| | | $wb['data_error_empty'] = 'Název hostitele (hostname) e-mail serveru je prázdný'; |
| | | $wb['data_error_regex'] = 'Název hostitele (hostname) e-mail serveru má chybný formát'; |
| | | ?> |
| | |
| | | $wb['zone_txt'] = 'Zóna'; |
| | | $wb['name_txt'] = 'Název'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['data_txt'] = 'Kanonický hostname'; |
| | | $wb['data_txt'] = 'Kanonický Název hostitele (hostname)'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_dns_record_txt'] = 'Dosažen maximální počet DNS záznamů pro Váš účet.'; |
| | |
| | | $wb['ns_error_regex'] = 'NS má neplatný formát.'; |
| | | $wb['eg_domain_tld'] = 'např. domena.cz'; |
| | | $wb['ipv4_form_txt'] = 'IPV4 formát, např. 1.2.3.4'; |
| | | $wb['secondary_zone_txt'] = 'Secondary DNS Zone'; |
| | | $wb['secondary_zone_txt'] = 'Sekundární DNS zóna'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['origin_txt'] = 'Zóna (SOA záznam)'; |
| | | $wb['ns_txt'] = 'NS'; |
| | | $wb['mbox_txt'] = 'Email'; |
| | | $wb['mbox_txt'] = 'E-mail'; |
| | | $wb['serial_txt'] = 'Serial'; |
| | | $wb['refresh_txt'] = 'Refresh'; |
| | | $wb['retry_txt'] = 'Retry'; |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['origin_txt'] = 'Zóna'; |
| | | $wb['ns_txt'] = 'NS'; |
| | | $wb['mbox_txt'] = 'Email'; |
| | | $wb['mbox_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat DNS zónu (SOA záznam)'; |
| | | $wb['add_new_record_wizard_txt'] = 'Přidat DNS zónu (dle šablony)'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['zone_txt'] = 'Zóna'; |
| | | $wb['zone_txt'] = 'Zóna'; |
| | | $wb['name_txt'] = 'Hostname'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['target_txt'] = 'Target'; |
| | | $wb['target_txt'] = 'Cíl'; |
| | | $wb['weight_txt'] = 'Weight'; |
| | | $wb['port_txt'] = 'Port'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'AktivnÃ'; |
| | | $wb['limit_dns_record_txt'] = 'Dosažen maximálnà po�et DNS záznamů pro Váš ú�et.'; |
| | | $wb['no_zone_perm'] = 'Nemáte oprávněnà přidat záznam do této zóny.'; |
| | | $wb['name_error_empty'] = 'Hostname je prázdný.'; |
| | | $wb['name_error_regex'] = 'Hostname má chybný formát.'; |
| | | $wb['data_error_empty'] = 'Záznam serveru je prázdný'; |
| | | $wb['data_error_regex'] = 'Záznam serveru má chybný formát'; |
| | | $wb['srv_error_regex'] = 'Neplatný formát záznau serveru. Záznam serveru musà obsahovat 3 textové řetězce oddělené mezerami.'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_dns_record_txt'] = 'Dosažen maximální počet DNS záznamů pro Váš účet.'; |
| | | $wb['no_zone_perm'] = 'Nemáte oprávnění přidat záznam do této zóny.'; |
| | | $wb['name_error_empty'] = 'Hostname je prázdný.'; |
| | | $wb['name_error_regex'] = 'Hostname má chybný formát.'; |
| | | $wb['data_error_empty'] = 'Záznam serveru je prázdný'; |
| | | $wb['data_error_regex'] = 'Záznam serveru má chybný formát'; |
| | | $wb['srv_error_regex'] = 'Neplatný formát záznamu serveru. Záznam serveru musí obsahovat 3 textové řetězce oddělené mezerami.'; |
| | | $wb['aux_txt'] = 'Priority'; |
| | | ?> |
| | |
| | | $wb['btn_save_txt'] = 'Vytvořit DNS záznam'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['ns1_txt'] = 'NS 1'; |
| | | $wb['ns2_txt'] = 'NS 2'; |
| | | $wb['ip_txt'] = 'IP adresa'; |
| | |
| | | $wb['error_ns1_regex'] = 'NS1 obsahuje neplatné znaky.'; |
| | | $wb['error_ns2_regex'] = 'NS2 obsahuje neplatné znaky.'; |
| | | $wb['error_email_regex'] = 'Email neobsahuje platnou emailovou adresu.'; |
| | | $wb['dns_zone_txt'] = 'DNS Zone'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | $wb['dns_zone_txt'] = 'DNS Zóna'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'z'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'výsledky'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'Žádné výsledky.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 výsledků'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Hledat'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Návrhy'; |
| | | $wb['list_head_txt'] = 'DNS Průvodce vytvořením zóny'; |
| | | $wb['list_desc_txt'] = 'Vytvoření zóny DNS pomocí průvodce'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['origin_txt'] = 'DNS Zone'; |
| | | $wb['secondary_zone_txt'] = 'Secondary DNS Zone'; |
| | | $wb['ns_txt'] = 'NS'; |
| | | $wb['ns_txt'] = 'NS (IP-Adresse)'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Die maximale Anzahl an Secondary DNS Zonen für Ihr Konto wurde erreicht.'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | |
| | | $wb['expire_txt'] = 'Expire'; |
| | | $wb['minimum_txt'] = 'Minimum'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['xfer_txt'] = 'Zonentransfer zu diesen IPs erlauben (mit Beistrich getrennte Liste)'; |
| | | $wb['xfer_txt'] = 'Zonentransfer zu diesen IPs erlauben (mit Komma getrennte Liste)'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['limit_dns_zone_txt'] = 'Die maximale Anzahl an DNS-Einträgen für ihr Konto wurde erreicht.'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["origin_txt"] = 'DNS-Zone'; |
| | | $wb["secondary_zone_txt"] = 'Secondary DNS Zone'; |
| | | $wb["ns_txt"] = 'NS'; |
| | | $wb["ns_txt"] = 'NS (IP-address)'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["limit_dns_slave_zone_txt"] = 'The max. number of Secondary DNS zones for your account is reached.'; |
| | | $wb["client_txt"] = 'Client'; |
| | |
| | | $wb['DNS Wizard'] = 'Asistente DNS'; |
| | | $wb['Add DNS Zone'] = 'Agregar Zona DNS'; |
| | | $wb['Templates'] = 'Plantillas'; |
| | | $wb['Secondary Zones'] = 'Secondary Zones'; |
| | | $wb['Import Zone File'] = 'Import Zone File'; |
| | | $wb['Secondary Zones'] = 'Zonas secundarias'; |
| | | $wb['Import Zone File'] = 'Zona de importación de archivo'; |
| | | ?> |
| | |
| | | $wb['name_txt'] = 'Nombre'; |
| | | $wb['data_txt'] = 'Fecha'; |
| | | $wb['aux_txt'] = 'Prioridad'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['type_txt'] = 'Tipo'; |
| | | $wb['add_new_record_txt'] = 'Añadir nuevo registro A'; |
| | | $wb['page_txt'] = 'Página'; |
| | | $wb['page_of_txt'] = 'de'; |
| | | $wb['delete_confirmation'] = '¿Realmente desea eliminar este registro?'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | ?> |
| | |
| | | $wb['name_error_regex'] = 'El nombre de la máquina tiene un registro incorrecto.'; |
| | | $wb['data_error_empty'] = 'El nombre de la máquina de destino está vacío.'; |
| | | $wb['data_error_regex'] = 'El nombre de la máquina de destino tiene un formato no válido.'; |
| | | $wb['data_error_duplicate'] = 'Duplicate A-Record or CNAME-Record'; |
| | | $wb['data_error_duplicate'] = 'Duplicar el registro A o el registro CNAME'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['client_txt'] = 'Cliente'; |
| | | $wb['btn_save_txt'] = 'Import Zonefile'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['zone_file_successfully_imported_txt'] = 'The zone file has successfully been imported!'; |
| | | $wb['error_no_valid_zone_file_txt'] = 'This appears to be no valid zone file!'; |
| | | $wb['zonefile_to_import_txt'] = 'Zone File'; |
| | | $wb['domain_field_desc_txt'] = 'Can be left empty if domain name is in the filename or the zone-file content.'; |
| | | $wb['title'] = 'Import Zone Files'; |
| | | $wb['no_file_uploaded_error'] = 'No zonefile uploaded'; |
| | | $wb['btn_cancel_txt'] = 'Cancelar'; |
| | | $wb['domain_txt'] = 'Dominio'; |
| | | $wb['zone_file_successfully_imported_txt'] = '¡El archivo de zona ha sido importado con éxito!'; |
| | | $wb['error_no_valid_zone_file_txt'] = '¡Esto parece que no hay archivo de zona válido!'; |
| | | $wb['zonefile_to_import_txt'] = 'Zona de archivo'; |
| | | $wb['domain_field_desc_txt'] = 'Se puede dejar vacío si el nombre de dominio es el nombre del archivo o el contenido de la zona de archivo.'; |
| | | $wb['title'] = 'Archivos de zona de importación'; |
| | | $wb['no_file_uploaded_error'] = 'No hay fichero en zona subida'; |
| | | $wb['zone_file_import_txt'] = 'Zone File Import'; |
| | | ?> |
| | |
| | | $wb['origin_txt'] = 'Zona'; |
| | | $wb['ns_txt'] = 'NS'; |
| | | $wb['add_new_record_txt'] = 'Añadir nueva zona DNS secundaria'; |
| | | $wb['eg_domain_tld'] = 'e.g. domain.tld.'; |
| | | $wb['eg_domain_tld'] = 'ej. domain.tld.'; |
| | | ?> |
| | |
| | | $wb['mbox_error_empty'] = 'Correo vacío.'; |
| | | $wb['mbox_error_regex'] = 'Formato de correo no válido.'; |
| | | $wb['also_notify_txt'] = 'Notificar también a'; |
| | | $wb['also_notify_error_regex'] = 'Please use an IP address.'; |
| | | $wb['also_notify_error_regex'] = 'Por favor, utilice una dirección IP.'; |
| | | $wb['update_acl_txt'] = 'Actualizar ACL'; |
| | | $wb['seconds_txt'] = 'Seconds'; |
| | | $wb['eg_domain_tld'] = 'e.g. domain.tld'; |
| | | $wb['eg_ns1_domain_tld'] = 'e.g. ns1.domain.tld'; |
| | | $wb['eg_webmaster_domain_tld'] = 'e.g. webmaster@domain.tld'; |
| | | $wb['The Domain can not be changed. Please ask your Administrator if you want to change the domain name.'] = 'The Domain can not be changed. Please ask your Administrator if you want to change the domain name.'; |
| | | $wb['seconds_txt'] = 'Segundos'; |
| | | $wb['eg_domain_tld'] = 'ej. domain.tld'; |
| | | $wb['eg_ns1_domain_tld'] = 'ej. ns1.domain.tld'; |
| | | $wb['eg_webmaster_domain_tld'] = 'ej. webmaster@domain.tld'; |
| | | $wb['The Domain can not be changed. Please ask your Administrator if you want to change the domain name.'] = 'El dominio no puede ser cambiado. Por favor, pregunte a su administrador si desea cambiar el nombre de dominio.'; |
| | | $wb['refresh_range_error'] = 'Min. Refresh time is 60 seconds.'; |
| | | $wb['retry_range_error'] = 'Min. Retry time is 60 seconds.'; |
| | | $wb['expire_range_error'] = 'Min. Expire time is 60 seconds.'; |
| | |
| | | $wb['error_ns1_regex'] = 'NS1 contiene caracteres inválidos.'; |
| | | $wb['error_ns2_regex'] = 'NS2 contiene caracteres inválidos.'; |
| | | $wb['error_email_regex'] = 'El campo Correo no contiene una dirección válida.'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | $wb['dns_zone_txt'] = 'DNS Zone'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['edit_txt'] = 'Edit'; |
| | | $wb['edit_txt'] = 'Upravit'; |
| | | ?> |
| | |
| | | $wb['Send message'] = 'Enviar mensaje'; |
| | | $wb['View messages'] = 'Ver mensajes'; |
| | | $wb['Support'] = 'Soporte'; |
| | | $wb['About ISPConfig'] = 'About ISPConfig'; |
| | | $wb['About ISPConfig'] = 'Acerca de ISPConfig'; |
| | | $wb['Version'] = 'Version'; |
| | | $wb['Frequently Asked Questions'] = 'Frequently Asked Questions'; |
| | | $wb['FAQ Sections'] = 'FAQ Sections'; |
| | | $wb['Manage Sections'] = 'Manage Sections'; |
| | | $wb['Add a Question & Answer Pair'] = 'Add a Question & Answer Pair'; |
| | | $wb['Manage Questions'] = 'Manage Questions'; |
| | | $wb['Frequently Asked Questions'] = 'Preguntas frecuentes'; |
| | | $wb['FAQ Sections'] = 'Secciones FAQ'; |
| | | $wb['Manage Sections'] = 'Gestionar las Secciones'; |
| | | $wb['Add a Question & Answer Pair'] = 'Añadir un par de preguntas y respuestas'; |
| | | $wb['Manage Questions'] = 'Administrar preguntas'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['edit_txt'] = 'Edit'; |
| | | $wb['edit_txt'] = 'Editar'; |
| | | ?> |
| | |
| | | $wb['sender_id_txt'] = 'ID Remitente'; |
| | | $wb['subject_txt'] = 'Asunto'; |
| | | $wb['message_txt'] = 'Mensaje'; |
| | | $wb['tstamp_txt'] = 'Marcadetiempo'; |
| | | $wb['reply_txt'] = 'Reply'; |
| | | $wb['tstamp_txt'] = 'Marca de tiempo'; |
| | | $wb['reply_txt'] = 'Responder'; |
| | | ?> |
| | |
| | | <th class="tbl_col_buttons" scope="col">{tmpl_var name="faq_edit_txt"}</th> |
| | | </tr> |
| | | </thead> |
| | | <tbody> |
| | | <tmpl_loop name="records"> |
| | | <tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> |
| | | <td>{tmpl_var name='hf_question'}</td> |
| | |
| | | </td> |
| | | </tr> |
| | | </tmpl_loop> |
| | | </tbody> |
| | | <tfoot> |
| | | <tr> |
| | | <td class="tbl_footer tbl_paging" colspan="4"><tmpl_var name="paging"></td> |
| | | </tr> |
| | | </tfoot> |
| | | </table> |
| | | </fieldset> |
| | | </div> |
| | |
| | | <div class="panel panel_support_message"> |
| | | |
| | | <div class="pnl_formsarea"> |
| | | <fieldset class="inlineLabels"><legend>Section</legend> |
| | | <fieldset class="inlineLabels"><legend>{tmpl_var name='faq_section_name_txt'}</legend> |
| | | <div class="ctrlHolder"> |
| | | <label for="hfs_name">{tmpl_var name='faq_section_name_txt'}</label> |
| | | <input name="hfs_name" id="hfs_name" value="{tmpl_var name='hfs_name'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | |
| | | {tmpl_var name='hf_answer'} |
| | | </p> |
| | | <tmpl_if name='is_admin'> |
| | | <a class="button icons16 icoDelete" href="javascript: del_record('help/faq_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span>Delete</span></a> |
| | | <a class="button icons16 icoDelete" href="javascript: del_record('help/faq_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span>{tmpl_var name="delete_txt"}</span></a> |
| | | <a href="#" onclick="loadContent('help/faq_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="edit_txt"}</a> |
| | | <br/> |
| | | <br/> |
| | |
| | | <th class="tbl_col_buttons" scope="col">{tmpl_var name="faq_edit_txt"}</th> |
| | | </tr> |
| | | </thead> |
| | | <tbody> |
| | | <tmpl_loop name="records"> |
| | | <tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> |
| | | <th class="tbl_col_section_name"><b>{tmpl_var name='hfs_name'}</b></td> |
| | | <td class="tbl_col_section_name"><b>{tmpl_var name='hfs_name'}</b></td> |
| | | <td class="tbl_col_buttons"> |
| | | <a class="button icons16 icoDelete" href="javascript: del_record('help/faq_sections_delete.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span>{tmpl_var name="faq_delete_txt"}</span></a> |
| | | </td> |
| | |
| | | </td> |
| | | </tr> |
| | | </tmpl_loop> |
| | | </tbody> |
| | | <tfoot> |
| | | <tr> |
| | | <td class="tbl_footer tbl_paging" colspan="3"><tmpl_var name="paging"></td> |
| | | </tr> |
| | | </tfoot> |
| | | </table> |
| | | </fieldset> |
| | | </div> |
| | |
| | | <div class="panel panel_support_message"> |
| | | |
| | | <div class="pnl_formsarea"> |
| | | <fieldset class="inlineLabels"><legend>Message</legend> |
| | | <fieldset class="inlineLabels"><legend>{tmpl_var name='message_txt'}</legend> |
| | | <div class="ctrlHolder"> |
| | | <label for="recipient_id">{tmpl_var name='recipient_id_txt'}</label> |
| | | <select name="recipient_id" id="recipient_id" class="selectInput"> |
| | |
| | | <div class="panel panel_support_message"> |
| | | |
| | | <div class="pnl_formsarea"> |
| | | <fieldset class="inlineLabels"><legend>Message</legend> |
| | | <fieldset class="inlineLabels"><legend>{tmpl_var name='message_txt'}</legend> |
| | | <div class="ctrlHolder"> |
| | | <label for="subject">{tmpl_var name='subject_txt'}</label> |
| | | <p>{tmpl_var name='subject'}</p> |
| | |
| | | <?php |
| | | session_start(); |
| | | include('../../lib/config.inc.php'); |
| | | require_once('../../lib/app.inc.php'); |
| | | $lang = (isset($_SESSION['s']['language']) && $_SESSION['s']['language'] != '')?$_SESSION['s']['language']:'en'; |
| | | include_once(ISPC_ROOT_PATH.'/web/strengthmeter/lib/lang/'.$lang.'_strengthmeter.lng'); |
| | | |
| | | $app->uses('ini_parser,getconf'); |
| | | $server_config_array = $app->getconf->get_global_config(); |
| | | ?> |
| | | var pageFormChanged = false; |
| | | var tabChangeWarningTxt = ''; |
| | |
| | | /*alert(request);*/ |
| | | } |
| | | |
| | | function resetFormChanged() { |
| | | pageFormChanged = false; |
| | | } |
| | | |
| | | function showLoadIndicator() { |
| | | <?php |
| | | if($server_config_array['misc']['use_loadindicator'] == 'y'){ |
| | | ?> |
| | | requestsRunning += 1; |
| | | |
| | | if(requestsRunning < 2) { |
| | |
| | | if(requestsRunning < 1) $(this).fadeOut('fast', function() { $(this).hide();}); |
| | | }); |
| | | } |
| | | <?php |
| | | } |
| | | ?> |
| | | } |
| | | |
| | | function hideLoadIndicator() { |
| | |
| | | } |
| | | |
| | | function onAfterContentLoad() { |
| | | <?php |
| | | if($server_config_array['misc']['use_combobox'] == 'y'){ |
| | | ?> |
| | | $('#pageContent').find("select").combobox(); |
| | | <?php |
| | | } |
| | | ?> |
| | | } |
| | | |
| | | function loadContentRefresh(pagename) { |
| | |
| | | <?php |
| | | $wb['error_user_password_empty'] = 'Nombre de usuario o contraseña vacía.'; |
| | | $wb['error_user_password_incorrect'] = 'Nombre de usuario o contraseña incorrecta.'; |
| | | $wb['error_user_blocked'] = 'El usuario está bloqueado.'; |
| | | $wb['error_user_too_many_logins'] = 'Demasiados errores de inicio de sesión. Por favor, vuélvalo a intentar dentro de 15 minutos.'; |
| | | $wb['pass_reset_txt'] = 'Se generará una nueva contraseña y se le enviará a la cuenta de correo indicada en su configuración.'; |
| | | $wb['pw_reset'] = 'La nueva contraseña ha sido generada y enviada a su cuenta de correo.'; |
| | | $wb['pw_error'] = 'El usuario o la cuenta de correo no coinciden.'; |
| | |
| | | $wb['pw_reset_mail_title'] = 'La contraseña del panel de control ISPConfig 3 ha sido regenerada.'; |
| | | $wb['user_regex_error'] = 'El nombre de usuario contiene caracteres no permitidos o tiene más de 64 caracteres.'; |
| | | $wb['pw_error_length'] = 'La longitud de la contraseña es superior a 64 caracteres.'; |
| | | $wb['error_user_password_empty'] = 'Nombre de usuario o contraseña vacía.'; |
| | | $wb['error_user_password_incorrect'] = 'Nombre de usuario o contraseña incorrecta.'; |
| | | $wb['error_user_blocked'] = 'El usuario está bloqueado.'; |
| | | $wb['error_user_too_many_logins'] = 'Demasiados errores de inicio de sesión. Por favor, vuélvalo a intentar dentro de 15 minutos.'; |
| | | $wb['username_txt'] = 'Nombre de usuario'; |
| | | $wb['password_txt'] = 'Contraseña'; |
| | | $wb['login_button_txt'] = 'Iniciar sesión'; |
| | | $wb['pw_lost_txt'] = 'Password lost'; |
| | | $wb['error_maintenance_mode'] = 'This ISPConfig installation is currently under maintenance. We should be back shortly. Thank you for your patience.'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['pw_lost_txt'] = 'Password lost'; |
| | | $wb['pw_reset_txt'] = 'Password reset'; |
| | | $wb['pw_button_txt'] = 'Resend password'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['error_maintenance_mode'] = 'This ISPConfig installation is currently under maintenance. We should be back shortly. Thank you for your patience.'; |
| | | $wb['theme_not_compatible'] = 'The chosen theme is not compatible with the current ISPConfig version. Please check for a new version of the theme.<br />The default theme as been activated automatically.'; |
| | | ?> |
| | |
| | | $wb['pw_reset_txt'] = 'Password reset'; |
| | | $wb['pw_button_txt'] = 'Resend password'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['theme_not_compatible'] = 'The chosen theme is not compatible with the current ISPConfig version. Please check for a new version of the theme.<br />The default theme as been activated automatically.'; |
| | | ?> |
| | |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| | | 'errmsg'=> 'listname_error_empty'), |
| | | 1 => array ( 'type' => 'UNIQUE', |
| | | 'errmsg'=> 'listname_error_unique'), |
| | | ), |
| | | 'default' => '', |
| | | 'value' => '', |
| | |
| | | 'searchable' => 2 |
| | | ), |
| | | 'quota' => array ( |
| | | 'datatype' => 'INTEGER', |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'ISINT', |
| | | 'validators' => array ( 1 => array ( 'type' => 'ISINT', |
| | | 'errmsg'=> 'quota_error_isint'), |
| | | 1 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^([0-9]*)$/', |
| | | 0 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^([0-9]{1,})$/', |
| | | 'errmsg'=> 'quota_error_value'), |
| | | ), |
| | | 'default' => '-1', |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['Email Alias'] = 'E-mailový alias'; |
| | | $wb['Email Blacklist'] = 'Email černá listina'; |
| | | $wb['Email Blacklist'] = 'E-mail černá listina'; |
| | | $wb['Blacklist'] = 'Černá listina'; |
| | | $wb['Mail Content Filter'] = 'Obsahový filtr'; |
| | | $wb['Filter'] = 'Filtr'; |
| | | $wb['Mail Domain'] = 'Doména e-mailů'; |
| | | $wb['Domain'] = 'Domény'; |
| | | $wb['Email Catchall'] = 'E-mailový koš'; |
| | | $wb['Email Forward'] = 'Přesměrování e-mailů'; |
| | | $wb['Get Email'] = 'Získat email'; |
| | | $wb['Spamfilter'] = 'Spamfiltr'; |
| | | $wb['Get Email'] = 'Získat e-mail'; |
| | | $wb['Spamfilter'] = 'Spamové filtry'; |
| | | $wb['Email Routing'] = 'Směrování'; |
| | | $wb['Email transport'] = 'Transport'; |
| | | $wb['Mailbox'] = 'Mailbox'; |
| | |
| | | $wb['Email filter'] = 'E-mailový filtr'; |
| | | $wb['Email Whitelist'] = 'E-mail bílá listina'; |
| | | $wb['Whitelist'] = 'Bílá listina'; |
| | | $wb['Spamfilter blacklist'] = 'Spamfiltr černá listina'; |
| | | $wb['Spamfilter Config'] = 'Konfigurace spamfiltru'; |
| | | $wb['Spamfilter blacklist'] = 'Spamový filter černá listina'; |
| | | $wb['Spamfilter Config'] = 'Konfigurace spamového filtru'; |
| | | $wb['Server'] = 'Server'; |
| | | $wb['Spamfilter policy'] = 'Spamfiltr politika'; |
| | | $wb['Spamfilter policy'] = 'Politika spamového filtru'; |
| | | $wb['Policy'] = 'Politika'; |
| | | $wb['Quarantine'] = 'Karanténa'; |
| | | $wb['Tag-Level'] = 'Tag úroveň'; |
| | | $wb['Other'] = 'Jiný'; |
| | | $wb['Spamfilter users'] = 'Spamfiltr uživatelé'; |
| | | $wb['Spamfilter users'] = 'Uživatelé spamového filtru'; |
| | | $wb['Users'] = 'Uživatelé'; |
| | | $wb['Spamfilter Whitelist'] = 'Spamfiltr bílá listina'; |
| | | $wb['Email'] = 'Email'; |
| | | $wb['Spamfilter Whitelist'] = 'Spamový filtr bílá listina'; |
| | | $wb['Email Mailbox'] = 'E-mailové schránky'; |
| | | $wb['Email Accounts'] = 'E-mail účty'; |
| | | $wb['Email Accounts'] = 'Nastavení e-mailů'; |
| | | $wb['User / Domain'] = 'Uživatel / Doména'; |
| | | $wb['Server Settings'] = 'Nastavení serveru'; |
| | | $wb['Fetchmail'] = 'Externí získávání emailů'; |
| | | $wb['Fetchmail'] = 'Externí získávání e-mailů'; |
| | | $wb['Mailbox traffic'] = 'Přenesená data'; |
| | | $wb['Postfix Whitelist'] = 'Postfix bílá listina'; |
| | | $wb['Postfix Blacklist'] = 'Postfix černá listina'; |
| | | $wb['Content Filter'] = 'Obsahový filtr'; |
| | | $wb['Global Filters'] = 'Globální filtry'; |
| | | $wb['Domain Alias'] = 'Alias domény'; |
| | | $wb['Global Filters'] = 'Globální e-mailové filtry'; |
| | | $wb['Domain Alias'] = 'Alias e-mailové domény'; |
| | | $wb['Relay Recipients'] = 'Relay adresáti'; |
| | | $wb['Statistics'] = 'Statistiky'; |
| | | $wb['Domain'] = 'E-mailová doména'; |
| | | $wb['Email'] = 'E-mail'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['destination_txt'] = 'Cíl'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['email_error_isemail'] = 'Email adresa je chybná.'; |
| | | $wb['email_error_unique'] = 'Duplikování email adresy.'; |
| | | $wb['email_error_isemail'] = 'Zadejte prosím platnou e-mailovou adresu.'; |
| | | $wb['email_error_unique'] = 'Duplikování e-mail adresy.'; |
| | | $wb['no_domain_perm'] = 'Nemáte oprávnění pro tuto doménu.'; |
| | | $wb['destination_error_isemail'] = 'Cílová email adresa je chybná.'; |
| | | $wb['limit_mailalias_txt'] = 'Dosažen maximální počet email aliasů pro Váš účet.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Mailbox s touto adresou již existuje'; |
| | | $wb['destination_error_isemail'] = 'Cílová e-mail adresa je chybná.'; |
| | | $wb['limit_mailalias_txt'] = 'Dosažen maximální počet e-mail aliasů pro Váš účet.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Mailbox s touto e-mail adresou již existuje'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['duplicate_email_alias_txt'] = 'This email alias does already exist.'; |
| | | $wb['duplicate_email_alias_txt'] = 'Tento e-mailový alias již existuje.'; |
| | | $wb['source_txt'] = 'Alias'; |
| | | ?> |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['source_txt'] = 'Zdroj'; |
| | | $wb['destination_txt'] = 'Cíl'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat nový e-mailový alias'; |
| | | ?> |
| | |
| | | $wb['destination_txt'] = 'Cíl'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['no_domain_perm'] = 'Nemáte oprávnění pro tuto doménu.'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Dosažen maximální počet emailových doménových aliasů pro Váš účet.'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Dosažen maximální počet e-mailových doménových aliasů pro Váš účet.'; |
| | | $wb['source_destination_identical_txt'] = 'Zdrojová a cílová doména jsou stejné.'; |
| | | $wb['source_error_empty'] = 'Zdrojová doména je prázdná.'; |
| | | $wb['source_error_unique'] = 'Duplikování zdrojové domény.'; |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['source_error_notempty'] = 'Adresa je prázdná.'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet email filtrů pro Váš účet.'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet e-mail filtrů pro Váš účet.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Email černá listina'; |
| | | $wb['list_head_txt'] = 'E-mail černá listina'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['source_txt'] = 'Adresy na černé lisitně'; |
| | | $wb['source_txt'] = 'Adresy na černé listině'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['recipient_txt'] = 'Adresát'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na černou listinu'; |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['domain_error_empty'] = 'Doména je prázdná.'; |
| | | $wb['domain_error_unique'] = 'Dupolikování domény.'; |
| | | $wb['domain_error_unique'] = 'Duplikování domény.'; |
| | | $wb['domain_error_regex'] = 'Chybný název domény.'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['limit_maildomain_txt'] = 'Dosažen maximální počet email domén pro Váš účet.'; |
| | | $wb['policy_txt'] = 'Spamfiltr'; |
| | | $wb['limit_maildomain_txt'] = 'Dosažen maximální počet e-mail domén pro Váš účet.'; |
| | | $wb['policy_txt'] = 'Spamový filter'; |
| | | $wb['no_policy'] = '- nepovoleno -'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['destination_txt'] = 'Popis'; |
| | | $wb['destination_txt'] = 'Cílová e-mailová adresa'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['domain_error_unique'] = 'Pro tuto doménu již existuje koš.'; |
| | | $wb['domain_error_unique'] = 'Pro tuto doménu již existuje doménový koš.'; |
| | | $wb['no_domain_perm'] = 'Nemáte oprávnění pro tuto doménu.'; |
| | | $wb['domain_error_regex'] = 'Chybné doménové jméno nebo doména obsahuje chybné znaky.'; |
| | | $wb['limit_mailcatchall_txt'] = 'Dosažen maximální počet košů účtů pro Váš účet.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['destination_error_isemail'] = 'Destination is no valid email address.'; |
| | | $wb['limit_mailcatchall_txt'] = 'Dosažen maximální počet doménových košů pro Váš účet.'; |
| | | $wb['source_txt'] = 'Zdroj'; |
| | | $wb['destination_error_isemail'] = 'Cílová e-mailová adresa není platná e-mailová adresa.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['destination_txt'] = 'Cílový email'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_mailforward_txt'] = 'Dosažen maximální počet email předávání pro Váš účet.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Mailbox s touto adresou již existuje'; |
| | | $wb['limit_mailforward_txt'] = 'Dosažen maximální počet e-mailových předávání pro Váš účet.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Mailbox s touto e-mailovou adresou již existuje'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['source_txt'] = 'Source Email'; |
| | | $wb['source_txt'] = 'Zdrojový e-mail'; |
| | | ?> |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['source_txt'] = 'Zdroj'; |
| | | $wb['destination_txt'] = 'Cíl'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat nové přesměrování'; |
| | | ?> |
| | |
| | | $wb['source_server_txt'] = 'POP3/IMAP server'; |
| | | $wb['source_username_txt'] = 'Uživatelské jméno'; |
| | | $wb['source_password_txt'] = 'Heslo'; |
| | | $wb['source_delete_txt'] = 'Smazat emaily po obdržení'; |
| | | $wb['source_delete_txt'] = 'Smazat e-maily po obdržení'; |
| | | $wb['destination_txt'] = 'Cíl'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_fetchmail_txt'] = 'Dosažen maximální počet záznamů externího získávání emailů pro Váš účet.'; |
| | |
| | | $wb['source_password_error_isempty'] = 'Heslo je prázdné.'; |
| | | $wb['destination_error_isemail'] = 'Nevybrán žádný cíl.'; |
| | | $wb['source_server_error_regex'] = 'POP3/IMAP server není validní doménový název.'; |
| | | $wb['source_read_all_txt'] = 'Retrieve all emails (incl. read mails)'; |
| | | $wb['source_read_all_txt'] = 'Načíst všechny e-maily (vč. přečtených)'; |
| | | $wb['error_delete_read_all_combination'] = 'Illegal combination of options. You can not use \\"Delete emails after retrieval\\" = no together with \\"Retrieve all emails\\" = yes'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Získávat emaily z externích POP3 / IMAP serverů'; |
| | | $wb['list_head_txt'] = 'Získávat e-maily z externích POP3 / IMAP serverů'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['source_server_txt'] = 'Externí server'; |
| | |
| | | <?php |
| | | $wb['limit_mailmailinglist_txt'] = 'Limit reached'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['listname_error_empty'] = 'Listname is empty.'; |
| | | $wb['domain_error_regex'] = 'Invalid domain name.'; |
| | | $wb['email_in_use_txt'] = 'Email is in use'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Limit dosažen'; |
| | | $wb['domain_error_empty'] = 'Doména je prázdná.'; |
| | | $wb['listname_error_empty'] = 'Název seznamu je prázdný.'; |
| | | $wb['domain_error_regex'] = 'Neplatný název domény.'; |
| | | $wb['email_in_use_txt'] = 'E-mail je již použit'; |
| | | $wb['no_domain_perm'] = 'You have no permission for this domain.'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['password_strength_txt'] = 'Síla hesla'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['listname_txt'] = 'Listname'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['listname_txt'] = 'Název seznamu'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['password_txt'] = 'Heslo'; |
| | | $wb['generate_password_txt'] = 'Generovat heslo'; |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Mailing List'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['listname_txt'] = 'Listname'; |
| | | $wb['list_head_txt'] = 'E-mailové konference (mailinglist)'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['listname_txt'] = 'Název seznamu'; |
| | | ?> |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['source_error_notempty'] = 'Adresa je prázdná.'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet email filtrů pro Váš účet.'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet e-mailových filtrů pro Váš účet.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['spam_rewrite_score_int_txt'] = 'Přepisovací skóre'; |
| | | $wb['spam_redirect_score_int_txt'] = 'Přesměrovací skóre'; |
| | | $wb['spam_delete_score_int_txt'] = 'Mazací skóre'; |
| | | $wb['spam_rewrite_subject_txt'] = 'Přepisovací předmět'; |
| | | $wb['spam_redirect_maildir_txt'] = 'Přesměrovací mailbox'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['spam_rewrite_txt'] = 'Přepsat předmět emailu nad toto skóre.'; |
| | | $wb['spam_redirect_txt'] = 'Přesměrovat email nad toto skóre do vybraného mailboxu.'; |
| | | $wb['spam_delete_txt'] = 'Smazat email nad toto skóre.'; |
| | | $wb['spam_rewrite_txt'] = 'Přepsat předmět e-mailu nad toto skóre.'; |
| | | $wb['spam_redirect_txt'] = 'Přesměrovat e-mail nad toto skóre do vybraného mailboxu.'; |
| | | $wb['spam_delete_txt'] = 'Smazat e-mail nad toto skóre.'; |
| | | $wb['disable_txt'] = 'Rada: Pro zrušení filtrování nastavte skóre na 0.00.'; |
| | | $wb['email_error_isemail'] = 'Email adresa je chybná.'; |
| | | $wb['email_error_unique'] = 'Pro tuto email adresu již existuje filtrovací záznam.'; |
| | | $wb['email_error_isemail'] = 'Zadejte prosím platnou e-mailovou adresu.'; |
| | | $wb['email_error_unique'] = 'Pro tuto e-mail adresu již existuje filtrovací záznam.'; |
| | | $wb['spam_redirect_maildir_purge_txt'] = 'Vyčistit poté mailový adresář'; |
| | | $wb['days_txt'] = 'Dny.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Spamfiltr'; |
| | | $wb['list_head_txt'] = 'Spamový filter'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['server_name_txt'] = 'server_name'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat nový záznam spamfiltru'; |
| | | ?> |
| | |
| | | $wb['mx_txt'] = 'Neprovádět MX lookup'; |
| | | $wb['sort_order_txt'] = 'Třídit podle'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_mailrouting_txt'] = 'Dosažen maximální počet email směrování pro Váš účet.'; |
| | | $wb['limit_mailrouting_txt'] = 'Dosažen maximální počet e-mail směrování pro Váš účet.'; |
| | | $wb['transport_txt'] = 'Transport'; |
| | | ?> |
| | |
| | | $wb['cryptpwd_txt'] = 'Heslo'; |
| | | $wb['password_strength_txt'] = 'Bezpečnost hesla'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['email_error_isemail'] = 'E-mail adresa je chybná.'; |
| | | $wb['email_error_isemail'] = 'Zadejte prosím platnou e-mailovou adresu.'; |
| | | $wb['email_error_unique'] = 'Duplikování email adresy.'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Aktivní'; |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat filtr'; |
| | | $wb['page_txt'] = 'Stránka'; |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Opravdu smazat mailový filtr?'; |
| | | $wb['delete_confirmation'] = 'Opravdu smazat e-mailový filtr?'; |
| | | ?> |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['source_error_notempty'] = 'Adresa je prázdná.'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet email filtrů pro Váš účet.'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet e-mail filtrů pro Váš účet.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Email bílá listina'; |
| | | $wb['list_head_txt'] = 'E-mail bílá listina'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['source_txt'] = 'Adresy na bílé listině'; |
| | |
| | | $wb['netmask_txt'] = 'Maska'; |
| | | $wb['gateway_txt'] = 'Brána'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Jmenné servery'; |
| | | $wb['nameservers_txt'] = 'Jmenné servery (DNS)'; |
| | | $wb['module_txt'] = 'Modul serveru'; |
| | | $wb['maildir_path_txt'] = 'Cesta k mail adresáři'; |
| | | $wb['homedir_path_txt'] = 'Cesta k domácímu adresáři'; |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['priority_txt'] = 'Priorita'; |
| | | $wb['policy_id_txt'] = 'Politika'; |
| | | $wb['email_txt'] = 'Email (vzor)'; |
| | | $wb['email_txt'] = 'E-mail (vzor)'; |
| | | $wb['fullname_txt'] = 'Název'; |
| | | $wb['local_txt'] = 'Lokální'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Spamfiltr uživatelé'; |
| | | $wb['list_head_txt'] = 'Uživatelé spamového filtru'; |
| | | $wb['local_txt'] = 'Lokální'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['priority_txt'] = 'Priorita'; |
| | | $wb['policy_id_txt'] = 'Politika'; |
| | | $wb['fullname_txt'] = 'Jméno'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['add_new_record_txt'] = 'Přidat spamfiltr uživatele'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat spamový filter uživatele'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['wb_txt'] = 'wb'; |
| | | $wb['rid_txt'] = 'Uživatel'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['priority_txt'] = 'Priorita'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Dosažen maximální počet záznamů pro bílou / černou listinu pro Váš účet.'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Spamfiltr bílá listina'; |
| | | $wb['list_head_txt'] = 'Spamový filter bílá listina'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['priority_txt'] = 'Priorita'; |
| | | $wb['rid_txt'] = 'Uživatel'; |
| | | $wb['email_txt'] = 'Emaily na bílé listině'; |
| | | $wb['email_txt'] = 'E-maily na bílé listině'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na bílou listinu'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Mailbox quota'; |
| | | $wb['quota_txt'] = 'Quota'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['email_txt'] = 'Email Address'; |
| | | $wb['used_txt'] = 'Used space'; |
| | | $wb['list_head_txt'] = 'Kvóty poštovních schránek'; |
| | | $wb['quota_txt'] = 'Kvóta'; |
| | | $wb['name_txt'] = 'Název'; |
| | | $wb['email_txt'] = 'E-mailová adresa'; |
| | | $wb['used_txt'] = 'Využité místo'; |
| | | ?> |
| | |
| | | $wb['Global Filters'] = 'Globale Filter'; |
| | | $wb['Domain Alias'] = 'E-Mail Domain Alias'; |
| | | $wb['Relay Recipients'] = 'Relay Empfänger'; |
| | | $wb['Mailbox quota'] = 'Mailbox Speichernutzung'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Passwort wiederholen'; |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | $wb['listname_error_unique'] = 'Es beseht bereits eine Mailingliste mit diesem Namen auf dem Serverr. Bitte verwenden Sie einen anderen Mailinglistennamen.'; |
| | | $wb['email_error_isemail'] = 'Die E-Mail Adresse ist falsch.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['Global Filters'] = 'Global Filters'; |
| | | $wb['Domain Alias'] = 'Domain Alias'; |
| | | $wb["Relay Recipients"] = 'Relay Recipients'; |
| | | |
| | | $wb['Mailbox quota'] = 'Mailbox quota'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb["listname_error_unique"] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb["email_error_isemail"] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['destination_error_isemail'] = 'La dirección de correo de destino no es válida'; |
| | | $wb['limit_mailalias_txt'] = 'Ha alcanzado el número máximo de alias de correo para esta cuenta'; |
| | | $wb['duplicate_mailbox_txt'] = 'Ya existe un buzón de correo con esta dirección'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['duplicate_email_alias_txt'] = 'This email alias does already exist.'; |
| | | $wb['domain_txt'] = 'Dominio'; |
| | | $wb['duplicate_email_alias_txt'] = 'Este alais de correo ya existe.'; |
| | | $wb['source_txt'] = 'Alias'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['source_txt'] = 'Origen'; |
| | | $wb['destination_txt'] = 'Destino'; |
| | | $wb['active_txt'] = 'Activa'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['no_domain_perm'] = 'No tiene permisos para este dominio.'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'El número máximo de dominios de alias de correo para su cuenta ha sido alcanzado.'; |
| | | $wb['source_destination_identical_txt'] = 'Dominio de origen y destino son el mismo.'; |
| | |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['limit_mailforward_txt'] = 'Se ha alcanzado el número máximo de reenvíos para esta cuenta'; |
| | | $wb['duplicate_mailbox_txt'] = 'Ya existe un buzón de correo con esta dirección'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['domain_txt'] = 'Dominio'; |
| | | $wb['source_txt'] = 'Source Email'; |
| | | ?> |
| | |
| | | $wb['destination_error_isemail'] = 'No se ha seleccionado el destino.'; |
| | | $wb['source_server_error_regex'] = 'Servidor POP3/IMAP no es un nombre de dominio válido.'; |
| | | $wb['source_read_all_txt'] = 'Retrieve all emails (incl. read mails)'; |
| | | $wb['error_delete_read_all_combination'] = 'Illegal combination of options. You can not use \\"Delete emails after retrieval\\" = no together with \\"Retrieve all emails\\" = yes'; |
| | | $wb['error_delete_read_all_combination'] = 'Illegal combination of options. You can not use \'Delete emails after retrieval\' = no together with \'Retrieve all emails\' = yes'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Recoger el correo de servidores POP3 / IMAP externos'; |
| | | $wb['list_head_txt'] = 'Recoger el correo de servidores POP3/IMAP externos'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['source_server_txt'] = 'Servidor externo'; |
| | |
| | | <?php |
| | | $wb['limit_mailmailinglist_txt'] = 'Limit reached'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['listname_error_empty'] = 'Listname is empty.'; |
| | | $wb['domain_error_regex'] = 'Invalid domain name.'; |
| | | $wb['email_in_use_txt'] = 'Email is in use'; |
| | | $wb['no_domain_perm'] = 'You have no permission for this domain.'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['listname_txt'] = 'Listname'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Lìmite alcanzado'; |
| | | $wb['domain_error_empty'] = 'El dominio está vacío.'; |
| | | $wb['listname_error_empty'] = 'Nombre de la lista está vacío.'; |
| | | $wb['domain_error_regex'] = 'Nombre de dominio no válido.'; |
| | | $wb['email_in_use_txt'] = 'El correo electrónico esta en uso'; |
| | | $wb['no_domain_perm'] = 'Usted no tiene permiso para este dominio.'; |
| | | $wb['password_strength_txt'] = 'Fortaleza de contraseña'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['domain_txt'] = 'Dominio'; |
| | | $wb['listname_txt'] = 'Nombre de la lista'; |
| | | $wb['client_txt'] = 'Cliente'; |
| | | $wb['email_txt'] = 'Ecorreo'; |
| | | $wb['password_txt'] = 'Contraseña'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Mailing List'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['listname_txt'] = 'Listname'; |
| | | $wb['list_head_txt'] = 'Lista de Mailing'; |
| | | $wb['domain_txt'] = 'Dominio'; |
| | | $wb['listname_txt'] = 'Nombre de la lista'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['custom_mailfilter_txt'] = 'Filtro de correo personalizado'; |
| | | $wb['email_txt'] = 'Correo'; |
| | | $wb['email_txt'] = 'Ecorreo'; |
| | | $wb['cryptpwd_txt'] = 'Contraseña'; |
| | | $wb['password_strength_txt'] = 'Fortaleza de la contraseña'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['email_error_isemail'] = 'La dirección de correo no es válida.'; |
| | | $wb['email_error_unique'] = 'Dirección de correo duplicada.'; |
| | | $wb['autoresponder_subject_txt'] = 'Asunto'; |
| | | $wb['autoresponder_text_txt'] = 'Texto'; |
| | | $wb['autoresponder_subject'] = 'Fuera de la Oficina'; |
| | | $wb['autoresponder_txt'] = 'Autorespondedor'; |
| | | $wb['no_domain_perm'] = 'No tiene permiso para administrar este dominio.'; |
| | | $wb['autoresponder_txt'] = 'Activar'; |
| | | $wb['autoresponder_start_date_txt'] = 'Comenzar en'; |
| | | $wb['autoresponder_end_date_txt'] = 'Finalizar por'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'Fecha de finalización se debe establecer y ser posterior a la fecha de inicio.'; |
| | | $wb['no_domain_perm'] = 'Usted no tiene permiso en este dominio.'; |
| | | $wb['error_no_pwd'] = 'La contraseña está vacía.'; |
| | | $wb['quota_error_isint'] = 'El tamaño del buzón de correo debe ser un número.'; |
| | | $wb['quota_txt'] = 'cuota en MB (0 para ilimitado)'; |
| | | $wb['server_id_txt'] = 'server_id'; |
| | | $wb['password_txt'] = 'contraseña'; |
| | | $wb['maildir_txt'] = 'maildir'; |
| | | $wb['postfix_txt'] = 'Habilitar recepción'; |
| | | $wb['access_txt'] = 'Habilitar acceso'; |
| | | $wb['quota_error_isint'] = 'Tamaño del buzón debe ser un número.'; |
| | | $wb['quota_txt'] = 'Cuota'; |
| | | $wb['server_id_txt'] = 'Aerver_id'; |
| | | $wb['password_txt'] = 'Contraseña'; |
| | | $wb['maildir_txt'] = 'Maildir'; |
| | | $wb['postfix_txt'] = 'Habilitar la recepción'; |
| | | $wb['access_txt'] = 'Habilitar el acceso'; |
| | | $wb['policy_txt'] = 'Filtro de spam'; |
| | | $wb['no_policy'] = '- no habilitado -'; |
| | | $wb['limit_mailbox_txt'] = 'Se ha alcanzado el número máximo de buzones de correo de su cuenta.'; |
| | | $wb['limit_mailquota_txt'] = 'Se ha alcanzado el espacio máximo para sus buzones de correo. El espacio máximo disponible en MB es'; |
| | | $wb['disableimap_txt'] = 'Inhabilitar IMAP'; |
| | | $wb['disablepop3_txt'] = 'Inhabilitar POP3'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'Ya existe un alias o reenvío con esta dirección de correo electrónico.'; |
| | | $wb['quota_error_value'] = 'Valor de cuota no válido. Los valores permitidos son: 0 para ilimitado o números > 1'; |
| | | $wb['autoresponder_start_date_txt'] = 'Comenzará el'; |
| | | $wb['autoresponder_end_date_txt'] = 'Finalizará el'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'Fecha de finalización se debe establecer y ser posterior a la fecha de inicio.'; |
| | | $wb['move_junk_txt'] = 'Mover mensajes de spam en el directorio deseado.'; |
| | | $wb['name_txt'] = 'Nombre'; |
| | | $wb['name_optional_txt'] = '(opcional)'; |
| | | $wb['autoresponder_active'] = 'Activar la respuesta automática'; |
| | | $wb['cc_txt'] = 'Enviar una copia a'; |
| | | $wb['cc_error_isemail'] = 'La copia Enviar a campo no contiene una dirección válida de correo electrónico'; |
| | | $wb['limit_mailbox_txt'] = 'La máx. número de buzones de correo de su cuenta se ha alcanzado.'; |
| | | $wb['limit_mailquota_txt'] = 'El espacio máximo para los buzones que se ha alcanzado. La máx. espacio disponible en MB es'; |
| | | $wb['disableimap_txt'] = 'Desactivar IMAP'; |
| | | $wb['disablepop3_txt'] = 'Desactivar POP3'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'Ya existe un alias o hacia adelante con esta dirección de correo electrónico.'; |
| | | $wb['quota_error_value'] = 'Valor de la cuota no es válida. Los valores permitidos son: 0 para ilimitado o números de> 1'; |
| | | $wb['move_junk_txt'] = 'Mover mensajes de spam no deseado en el directorio'; |
| | | $wb['name_txt'] = 'Nombre real'; |
| | | $wb['name_optional_txt'] = '(Opcional)'; |
| | | $wb['autoresponder_active'] = 'Habilitar la respuesta automática'; |
| | | $wb['cc_txt'] = 'Enviar copia a'; |
| | | $wb['cc_error_isemail'] = 'El-Enviar copia al campo no conatin una dirección válida de correo electrónico'; |
| | | $wb['domain_txt'] = 'Dominio'; |
| | | $wb['now_txt'] = 'Ahora'; |
| | | $wb['login_error_unique'] = 'Inicio de sesión ya está tomada.'; |
| | | $wb['login_error_regex'] = 'Los caracteres válidos son A-Z, a-z, 0-9, ., _ y -.'; |
| | | $wb['login_txt'] = 'Login (opcional)'; |
| | | $wb['error_login_email_txt'] = 'Este inicio de sesión no está permitido. Por favor, introduzca un nombre de usuario diferente o utilizar la dirección de correo electrónico como nombre de usuario'; |
| | | $wb['login_error_regex'] = 'Los caracteres válidos son A-Z, a-z, 0-9, _ y - '; |
| | | $wb['login_txt'] = 'Inicio sessión (opcional)'; |
| | | $wb['error_login_email_txt'] = 'Este inicio de sesión no está permitido. Por favor, introduzca un nombre de usuario diferente o utilizar la dirección de correo electrónico como nombre de usuario.'; |
| | | $wb['autoresponder_subject_txt'] = 'Email Subject'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_start_date_ispast'] = 'Start date cannot be in the past.'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | |
| | | $wb['rulename_error_empty'] = 'El nombre está vacío.'; |
| | | $wb['searchterm_is_empty'] = 'El término de búsqueda está vacío.'; |
| | | $wb['source_txt'] = 'Origen'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | | $wb['contains_txt'] = 'Contains'; |
| | | $wb['is_txt'] = 'Is'; |
| | | $wb['begins_with_txt'] = 'Begins with'; |
| | | $wb['ends_with_txt'] = 'Ends with'; |
| | | $wb['move_to_txt'] = 'Move to'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['target_error_regex'] = 'El Objetivo sólo pueden contener los siguientes caracteres: a-z, 0-9, -, ., _, y {espacio}'; |
| | | $wb['limit_mailfilter_txt'] = 'El máx. número de mailfilters se alcanzó'; |
| | | $wb['subject_txt'] = 'Asunto'; |
| | | $wb['from_txt'] = 'Desde'; |
| | | $wb['to_txt'] = 'para'; |
| | | $wb['contains_txt'] = 'Contiene'; |
| | | $wb['is_txt'] = 'Es'; |
| | | $wb['begins_with_txt'] = 'Comienza con'; |
| | | $wb['ends_with_txt'] = 'Terminar con'; |
| | | $wb['move_to_txt'] = 'Mover a'; |
| | | $wb['delete_txt'] = 'Eliminar'; |
| | | ?> |
| | |
| | | $wb['autoresponder_txt'] = 'Autorespondedor'; |
| | | $wb['add_new_record_txt'] = 'Añadir nuevo buzón'; |
| | | $wb['name_txt'] = 'Nombre'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['login_txt'] = 'Iniciar sessión'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['listname_error_unique'] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb['email_error_isemail'] = 'Email address is invalid.'; |
| | | ?> |
| | |
| | | <?php |
| | | |
| | | $function_list['mail_domain_get,mail_domain_add,mail_domain_update,mail_domain_delete,mail_domain_set_status,mail_domain_get_by_domain'] = 'Mail domain functions'; |
| | | $function_list['mail_aliasdomain_get,mail_aliasdomain_add,mail_aliasdomain_update,mail_aliasdomain_delete'] = 'Mail domain alias functions'; |
| | | $function_list['mail_mailinglist_get,mail_mailinglist_add,mail_mailinglist_update,mail_mailinglist_delete'] = 'Mail mailinglist functions'; |
| | | $function_list['mail_user_get,mail_user_add,mail_user_update,mail_user_delete'] = 'Mail user functions'; |
| | | $function_list['mail_alias_get,mail_alias_add,mail_alias_update,mail_alias_delete'] = 'Mail alias functions'; |
| | |
| | | // we will delete all depending records. |
| | | |
| | | // Delete all forwardings where the osurce or destination belongs to this domain |
| | | $records = $app->db->queryAllRecords("SELECT forwarding_id as id FROM mail_forwarding WHERE source like '%@".$app->db->quote($domain)."' OR destination like '%@".$app->db->quote($domain)."'"); |
| | | $records = $app->db->queryAllRecords("SELECT forwarding_id as id FROM mail_forwarding WHERE source like '%@".$app->db->quote($domain)."' OR (destination like '%@".$app->db->quote($domain)."' AND type != 'forward'"); |
| | | foreach($records as $rec) { |
| | | $app->db->datalogDelete('mail_forwarding','forwarding_id',$rec['id']); |
| | | } |
| | |
| | | $app->auth->check_module_permissions('mail'); |
| | | |
| | | // Loading classes |
| | | $app->uses('tpl,tform,tform_actions'); |
| | | $app->uses('tpl,tform,tform_actions,tools_sites'); |
| | | $app->load('tform_actions'); |
| | | |
| | | class page_action extends tform_actions { |
| | |
| | | /* |
| | | * The domain-module is in use. |
| | | */ |
| | | $client_group_id = $_SESSION["s"]["user"]["default_group"]; |
| | | /* |
| | | * The admin can select ALL domains, the user only the domains assigned to him |
| | | */ |
| | | $sql = "SELECT domain_id, domain FROM domain "; |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $sql .= "WHERE sys_groupid =" . $client_group_id; |
| | | } |
| | | $sql .= " ORDER BY domain"; |
| | | $domains = $app->db->queryAllRecords($sql); |
| | | $domains = $app->tools_sites->getDomainModuleDomains(); |
| | | $domain_select = ''; |
| | | if(is_array($domains) && sizeof($domains) > 0) { |
| | | /* We have domains in the list, so create the drop-down-list */ |
| | |
| | | $app->uses('ini_parser,getconf'); |
| | | $settings = $app->getconf->get_global_config('domains'); |
| | | if ($settings['use_domain_module'] == 'y') { |
| | | $client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]); |
| | | |
| | | $sql = "SELECT domain_id, domain FROM domain WHERE domain_id = " . $app->functions->intval($this->dataRecord['domain']); |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $sql .= " AND sys_groupid =" . $client_group_id; |
| | | } |
| | | $domain_check = $app->db->queryOneRecord($sql); |
| | | $domain_check = $app->tools_sites->checkDomainModuleDomain($this->dataRecord['domain']); |
| | | if(!$domain_check) { |
| | | // invalid domain selected |
| | | $app->tform->errorMessage .= $app->tform->lng("domain_error_empty")."<br />"; |
| | | } else { |
| | | $this->dataRecord['domain'] = $domain_check['domain']; |
| | | $this->dataRecord['domain'] = $domain_check; |
| | | } |
| | | } |
| | | |
| | |
| | | $app->tpl->setVar("ar_active", ''); |
| | | } |
| | | |
| | | if($this->dataRecord['autoresponder_subject'] == '') { |
| | | $app->tpl->setVar('autoresponder_subject', $app->tform->lng('autoresponder_subject')); |
| | | } else { |
| | | $app->tpl->setVar('autoresponder_subject', $this->dataRecord['autoresponder_subject']); |
| | | } |
| | | |
| | | $app->uses('getconf'); |
| | | $mail_config = $app->getconf->get_global_config('mail'); |
| | | if($mail_config["enable_custom_login"] == "y") { |
| | |
| | | <div class="pnl_formsarea"> |
| | | <fieldset class="inlineLabels"> |
| | | <div class="ctrlHolder"> |
| | | <p class="label">{tmpl_var name='email_txt'}</p> |
| | | <p class="label">{tmpl_var name='source_txt'}</p> |
| | | <div class="multiField"> |
| | | <label for="email_at" class="blockLabel email_at"> <span id="email_at" name="email_at" />@</label> |
| | | <label for="email_domain" class="blockLabel">{tmpl_var name='domain_txt'}<select name="email_domain" id="email_domain" class="selectInput">{tmpl_var name='email_domain'}</select></label> |
| | |
| | | <?php |
| | | $wb['Email Account'] = 'E-mailový účet'; |
| | | $wb['Overview'] = 'Přehled'; |
| | | $wb['Password'] = 'Heslo'; |
| | | $wb['Autoresponder'] = 'Automatická odpověď'; |
| | | $wb['Send copy'] = 'Poslat kopii na e-mail'; |
| | | $wb['Spamfilter'] = 'Spamový filter'; |
| | | $wb['Email Filters'] = 'E-mailové filtry'; |
| | | $wb['Password'] = 'Heslo'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | $wb['monitor_title_rkhunterlog_txt'] = 'RKHunter log'; |
| | | $wb['monitor_title_fail2ban_txt'] = 'Fail2Ban log'; |
| | | $wb['monitor_updates_nosupport_txt'] = 'Vaše distribuce nepodporuje toto monitorování'; |
| | | $wb['monitor_nosupportedraid1_txt'] = 'At the moment, we support mdadm or mpt-status for monitoring the RAID.<br>We cant find any of them at your server.<br><br>This means we can not support your RAID yet.'; |
| | | $wb['monitor_serverstate_beancounterok_txt'] = 'The beancounter is ok'; |
| | | $wb['monitor_nosupportedraid1_txt'] = 'V současné době, podporujeme nástroje mdadm nebo MPT-stav pro sledování sofwarových RAID polí.<br>Nemůžeme najít žádné z nich na serveru.<br><br>To znamená, že nemůžeme monitorovat váš RAID.'; |
| | | $wb['monitor_serverstate_beancounterok_txt'] = 'Soubor čítačů (limitů) je v pořádku'; |
| | | $wb['monitor_serverstate_beancounterinfo_txt'] = 'There are vew failure in the beancounter'; |
| | | $wb['monitor_serverstate_beancounterwarning_txt'] = 'There are some failure in the beancounter'; |
| | | $wb['monitor_serverstate_beancountercritical_txt'] = 'There are many failure in the beancounter'; |
| | | $wb['monitor_serverstate_beancountererror_txt'] = 'There are too much failure in the beancounter'; |
| | | $wb['monitor_title_beancounter_txt'] = 'OpenVz VE BeanCounter'; |
| | | $wb['monitor_serverstate_beancounterwarning_txt'] = 'Některé čítače (limity) vykazují selhání.'; |
| | | $wb['monitor_serverstate_beancountercritical_txt'] = 'Existuje mnoho selhání čítačů (limitů)'; |
| | | $wb['monitor_serverstate_beancountererror_txt'] = 'Existuje příliš mnoho selhání čítačů (limitů)'; |
| | | $wb['monitor_title_beancounter_txt'] = 'OpenVz VE čítače (limity)'; |
| | | $wb['monitor_beancounter_nosupport_txt'] = 'This server is not a OpenVz VE and has no beancounter information'; |
| | | $wb['monitor_title_iptables_txt'] = 'IPTables Pravidla'; |
| | | $wb['Show fail2ban-Log'] = 'Zobrazit Fail2Ban Log'; |
| | | $wb['Show IPTables'] = 'Zobrazit IPTables pravidla'; |
| | | $wb['Show OpenVz VE BeanCounter'] = 'Show OpenVz VE BeanCounter'; |
| | | $wb['Show OpenVz VE BeanCounter'] = 'Ukázat OpenVz VE čítače (limity)'; |
| | | ?> |
| | |
| | | $wb['monitor_title_raidstate_txt'] = 'Estado del RAID'; |
| | | $wb['monitor_title_rkhunterlog_txt'] = 'Registro de RKHunter'; |
| | | $wb['monitor_updates_nosupport_txt'] = 'Su distribución no es soportada por este monitorizador'; |
| | | $wb['monitor_title_fail2ban_txt'] = 'Fail2Ban Log'; |
| | | $wb['monitor_nosupportedraid1_txt'] = 'At the moment, we support mdadm or mpt-status for monitoring the RAID.<br>We cant find any of them at your server.<br><br>This means we can not support your RAID yet.'; |
| | | $wb['monitor_serverstate_beancounterok_txt'] = 'The beancounter is ok'; |
| | | $wb['monitor_serverstate_beancounterinfo_txt'] = 'There are vew failure in the beancounter'; |
| | | $wb['monitor_serverstate_beancounterwarning_txt'] = 'There are some failure in the beancounter'; |
| | | $wb['monitor_serverstate_beancountercritical_txt'] = 'There are many failure in the beancounter'; |
| | | $wb['monitor_serverstate_beancountererror_txt'] = 'There are too much failure in the beancounter'; |
| | | $wb['monitor_title_fail2ban_txt'] = 'Registro de Fail2Ban'; |
| | | $wb['monitor_nosupportedraid1_txt'] = 'Por el momento, apoyamos mdadm para supervisar el RAID. <br>No encontramos ningún RAID en su servidor. </br> Esto significa que no podemos monitorizar su RAID todavía.'; |
| | | $wb['monitor_serverstate_beancounterok_txt'] = 'El Beancounter es correcto'; |
| | | $wb['monitor_serverstate_beancounterinfo_txt'] = 'Hay fracaso en el Beancounter'; |
| | | $wb['monitor_serverstate_beancounterwarning_txt'] = 'Hay algún fallo en el Beancounter'; |
| | | $wb['monitor_serverstate_beancountercritical_txt'] = 'Hay muchos fallos en el Beancounter'; |
| | | $wb['monitor_serverstate_beancountererror_txt'] = 'No falta mucho en el Beancounter'; |
| | | $wb['monitor_title_beancounter_txt'] = 'OpenVz VE BeanCounter'; |
| | | $wb['monitor_beancounter_nosupport_txt'] = 'This server is not a OpenVz VE and has no beancounter information'; |
| | | $wb['monitor_title_iptables_txt'] = 'IPTables Rules'; |
| | | $wb['Show fail2ban-Log'] = 'Show fail2ban-Log'; |
| | | $wb['Show IPTables'] = 'Show IPTables'; |
| | | $wb['Show OpenVz VE BeanCounter'] = 'Show OpenVz VE BeanCounter'; |
| | | $wb['monitor_beancounter_nosupport_txt'] = 'Este servidor no es un VE OpenVZ y no tiene información Beancounter'; |
| | | $wb['monitor_title_iptables_txt'] = 'Reglas de IPTables'; |
| | | $wb['Show fail2ban-Log'] = 'Mostrar el registro de Fail2ban'; |
| | | $wb['Show IPTables'] = 'Mostrar IPTables'; |
| | | $wb['Show OpenVz VE BeanCounter'] = 'Mostrar OpenVz VE BeanCounter'; |
| | | ?> |
| | |
| | | if(substr($json,-1) == ',') $json = substr($json,0,-1); |
| | | $json .= '}'; |
| | | } |
| | | |
| | | if($type == 'get_use_combobox'){ |
| | | $json = '{"usecombobox":"'; |
| | | $use_combobox = 'y'; |
| | | $server_config_array = $app->getconf->get_global_config(); |
| | | if($server_config_array['misc']['use_combobox'] != 'y') $use_combobox = 'n'; |
| | | $json .= $use_combobox; |
| | | unset($server_config_array); |
| | | $json .= '"}'; |
| | | } |
| | | |
| | | if($type == 'get_use_loadindicator'){ |
| | | $json = '{"useloadindicator":"'; |
| | | $use_loadindicator = 'y'; |
| | | $server_config_array = $app->getconf->get_global_config(); |
| | | if($server_config_array['misc']['use_loadindicator'] != 'y') $use_loadindicator = 'n'; |
| | | $json .= $use_loadindicator; |
| | | unset($server_config_array); |
| | | $json .= '"}'; |
| | | } |
| | | |
| | | //} |
| | | |
| | |
| | | WHERE id = ".$app->db->quote($_GET['id'])." AND
|
| | | (instance_status = ".INSTANCE_SUCCESS." OR instance_status = ".INSTANCE_ERROR.");");
|
| | | if($check['id'] > 0) $gui->deleteInstance($_GET['id']);
|
| | | echo $app->lng('Installation_remove');
|
| | | //echo $app->lng('Installation_remove');
|
| | | @header('Location:aps_installedpackages_list.php');
|
| | | }
|
| | | else if($_GET['action'] == 'reinstall_instance')
|
| | | {
|
| | |
| | | if(!$check) die('Check failed'); // normally this might not happen at all, so just die
|
| | |
|
| | | $gui->reinstallInstance($_GET['id']);
|
| | | echo $app->lng('Installation_task');
|
| | | //echo $app->lng('Installation_task');
|
| | | @header('Location:aps_installedpackages_list.php');
|
| | | }
|
| | | ?>
|
| | |
| | | if(!$is_admin)
|
| | | {
|
| | | $cid = $app->db->queryOneRecord('SELECT client_id FROM client WHERE username = "'.$app->db->quote($_SESSION['s']['user']['username']).'";');
|
| | | $client_ext = ' AND aps_instances.customer_id = '.$cid['client_id'];
|
| | | //$client_ext = ' AND aps_instances.customer_id = '.$cid['client_id'];
|
| | | $client_ext = ' AND '.$app->tform->getAuthSQL('r', 'aps_instances');
|
| | | }
|
| | | $app->listform_actions->SQLExtWhere = 'aps_instances.package_id = aps_packages.id'.$client_ext;
|
| | | $app->listform_actions->SQLOrderBy = 'ORDER BY package_name';
|
| | |
| | | |
| | | if ($this->dataRecord['database_name'] != ""){ |
| | | /* REMOVE the restriction */ |
| | | $app->tpl->setVar("database_name", str_replace($dbname_prefix , '', $this->dataRecord['database_name'])); |
| | | $app->tpl->setVar("database_name", $app->tools_sites->removePrefix($this->dataRecord['database_name'], $this->dataRecord['database_name_prefix'], $dbname_prefix)); |
| | | } |
| | | |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' || $app->auth->has_clients($_SESSION['s']['user']['userid'])) { |
| | | $app->tpl->setVar("database_name_prefix", $global_config['dbname_prefix']); |
| | | } else { |
| | | $app->tpl->setVar("database_name_prefix", $dbname_prefix); |
| | | } |
| | | |
| | | $app->tpl->setVar("database_name_prefix", $app->tools_sites->getPrefix($this->dataRecord['database_name_prefix'], $dbname_prefix, $global_config['dbname_prefix'])); |
| | | |
| | | if($this->id > 0) { |
| | | //* we are editing a existing record |
| | |
| | | |
| | | //* Prevent that the database name and charset is changed |
| | | $old_record = $app->tform->getDataRecord($this->id); |
| | | $dbname_prefix = $app->tools_sites->getPrefix($old_record['database_name_prefix'], $dbname_prefix); |
| | | $this->dataRecord['database_name_prefix'] = $dbname_prefix; |
| | | |
| | | if($old_record["database_name"] != $dbname_prefix . $this->dataRecord["database_name"]) { |
| | | $app->tform->errorMessage .= $app->tform->wordbook["database_name_change_txt"].'<br />'; |
| | | } |
| | |
| | | $app->uses('getconf,tools_sites'); |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | $dbname_prefix = $app->tools_sites->replacePrefix($global_config['dbname_prefix'], $this->dataRecord); |
| | | $this->dataRecord['database_name_prefix'] = $dbname_prefix; |
| | | |
| | | if(strlen($dbname_prefix . $this->dataRecord['database_name']) > 64) $app->tform->errorMessage .= str_replace('{db}',$dbname_prefix . $this->dataRecord['database_name'],$app->tform->wordbook["database_name_error_len"]).'<br />'; |
| | | |
| | |
| | | |
| | | if ($this->dataRecord['database_user'] != ""){ |
| | | /* REMOVE the restriction */ |
| | | $app->tpl->setVar("database_user", str_replace($dbuser_prefix , '', $this->dataRecord['database_user'])); |
| | | $app->tpl->setVar("database_user", $app->tools_sites->removePrefix($this->dataRecord['database_user'], $this->dataRecord['database_user_prefix'], $dbuser_prefix)); |
| | | } |
| | | |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' || $app->auth->has_clients($_SESSION['s']['user']['userid'])) { |
| | | $app->tpl->setVar("database_user_prefix", $global_config['dbuser_prefix']); |
| | | } else { |
| | | $app->tpl->setVar("database_user_prefix", $dbuser_prefix); |
| | | } |
| | | |
| | | $app->tpl->setVar("database_user_prefix", $app->tools_sites->getPrefix($this->dataRecord['database_user_prefix'], $dbuser_prefix, $global_config['dbuser_prefix'])); |
| | | |
| | | parent::onShowEnd(); |
| | | } |
| | |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | $dbuser_prefix = $app->tools_sites->replacePrefix($global_config['dbuser_prefix'], $this->dataRecord); |
| | | |
| | | $this->oldDataRecord = $app->db->queryOneRecord("SELECT * FROM web_database_user WHERE database_user_id = '".$this->id."'"); |
| | | |
| | | $dbuser_prefix = $app->tools_sites->getPrefix($this->oldDataRecord['database_user_prefix'], $dbuser_prefix); |
| | | $this->dataRecord['database_user_prefix'] = $dbuser_prefix; |
| | | |
| | | //* Database username shall not be empty |
| | | if($this->dataRecord['database_user'] == '') $app->tform->errorMessage .= $app->tform->wordbook["database_user_error_empty"].'<br />'; |
| | | |
| | |
| | | } |
| | | |
| | | $this->dataRecord['server_id'] = $conf['server_id']; |
| | | $this->oldDataRecord = $app->db->queryOneRecord("SELECT * FROM web_database_user WHERE database_user_id = '".$this->id."'"); |
| | | |
| | | parent::onBeforeUpdate(); |
| | | } |
| | |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | $dbuser_prefix = $app->tools_sites->replacePrefix($global_config['dbuser_prefix'], $this->dataRecord); |
| | | |
| | | $this->dataRecord['database_user_prefix'] = $dbuser_prefix; |
| | | |
| | | if(strlen($dbuser_prefix . $this->dataRecord['database_user']) > 16) $app->tform->errorMessage .= str_replace('{user}',$dbuser_prefix . $this->dataRecord['database_user'],$app->tform->wordbook["database_user_error_len"]).'<br />'; |
| | | |
| | | //* Check database user against blacklist |
| | |
| | | 'maxlength' => '255', |
| | | 'searchable' => 1 |
| | | ), |
| | | 'database_name_prefix' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '25' |
| | | ), |
| | | 'database_user_id' => array ( |
| | | 'datatype' => 'INTEGER', |
| | | 'formtype' => 'SELECT', |
| | |
| | | 'maxlength' => '255', |
| | | 'searchable' => 1 |
| | | ), |
| | | 'database_user_prefix' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '25' |
| | | ), |
| | | 'database_password' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'PASSWORD', |
| | |
| | | 'maxlength' => '255', |
| | | 'searchable' => 1 |
| | | ), |
| | | 'username_prefix' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '25' |
| | | ), |
| | | 'password' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'PASSWORD', |
| | |
| | | 'maxlength' => '255', |
| | | 'searchable' => 1 |
| | | ), |
| | | 'username_prefix' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '25' |
| | | ), |
| | | 'password' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'PASSWORD', |
| | |
| | | 'width' => '30', |
| | | 'maxlength' => '255' |
| | | ), |
| | | 'username_prefix' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '25' |
| | | ), |
| | | 'password' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'encryption' => 'CLEARTEXT', |
| | |
| | | |
| | | if ($this->dataRecord['username'] != ""){ |
| | | /* REMOVE the restriction */ |
| | | $app->tpl->setVar("username", preg_replace('/'.$ftpuser_prefix.'/' , '', $this->dataRecord['username'], 1)); |
| | | $app->tpl->setVar("username", $app->tools_sites->removePrefix($this->dataRecord['username'], $this->dataRecord['username_prefix'], $ftpuser_prefix)); |
| | | } |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' || $app->auth->has_clients($_SESSION['s']['user']['userid'])) { |
| | | $app->tpl->setVar("username_prefix", $global_config['ftpuser_prefix']); |
| | | } |
| | | else { |
| | | $app->tpl->setVar("username_prefix", $ftpuser_prefix); |
| | | } |
| | | |
| | | $app->tpl->setVar("username_prefix", $app->tools_sites->getPrefix($this->dataRecord['username_prefix'], $ftpuser_prefix, $global_config['ftpuser_prefix'])); |
| | | |
| | | parent::onShowEnd(); |
| | | } |
| | |
| | | $app->uses('getconf,tools_sites'); |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | $ftpuser_prefix = $app->tools_sites->replacePrefix($global_config['ftpuser_prefix'], $this->dataRecord); |
| | | |
| | | $this->dataRecord['username_prefix'] = $ftpuser_prefix; |
| | | |
| | | if ($app->tform->errorMessage == '') { |
| | | $this->dataRecord['username'] = $ftpuser_prefix . $this->dataRecord['username']; |
| | |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | $ftpuser_prefix = $app->tools_sites->replacePrefix($global_config['ftpuser_prefix'], $this->dataRecord); |
| | | |
| | | $old_record = $app->tform->getDataRecord($this->id); |
| | | $ftpuser_prefix = $app->tools_sites->getPrefix($old_record['username_prefix'], $ftpuser_prefix); |
| | | $this->dataRecord['username_prefix'] = $ftpuser_prefix; |
| | | |
| | | /* restrict the names */ |
| | | if ($app->tform->errorMessage == '') { |
| | | $this->dataRecord['username'] = $ftpuser_prefix . $this->dataRecord['username']; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'Без редирект'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['Webdav'] = 'WebDAV'; |
| | | $wb['FTP'] = 'FTP'; |
| | | $wb['Options'] = 'Volby'; |
| | | $wb['Domain'] = 'Doména'; |
| | | $wb['Redirect'] = 'Přesměrování'; |
| | | $wb['SSL'] = 'SSL'; |
| | | $wb['Sites'] = 'Stránky'; |
| | | $wb['Database User'] = 'Uživatelé databáze'; |
| | | $wb['APS Installer'] = 'APS Installer'; |
| | | $wb['Available packages'] = 'Available packages'; |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['APS Installer'] = 'APS instalátor'; |
| | | $wb['Available packages'] = 'Dostupné balíčky'; |
| | | $wb['Installed packages'] = 'Nainstalované balíčky'; |
| | | $wb['Update Packagelist'] = 'Aktualizace seznamu balíčků'; |
| | | $wb['Domain'] = 'Domain'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Installed packages'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['customer_txt'] = 'Client'; |
| | | $wb['list_head_txt'] = 'Nainstalované balíčky'; |
| | | $wb['name_txt'] = 'Název'; |
| | | $wb['version_txt'] = 'Verze'; |
| | | $wb['customer_txt'] = 'Klient'; |
| | | $wb['status_txt'] = 'Status'; |
| | | $wb['install_location_txt'] = 'Install location'; |
| | | $wb['pkg_delete_confirmation'] = 'Do you really want to delete this installation?'; |
| | | $wb['pkg_reinstall_confirmation'] = 'Do you really want to reinstall this package with the same settings?'; |
| | | $wb['filter_txt'] = 'Search'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['reinstall_txt'] = 'Reinstall'; |
| | | $wb['install_location_txt'] = 'Umístění instalace'; |
| | | $wb['pkg_delete_confirmation'] = 'Opravdu chcete smazat tuto instalaci ?'; |
| | | $wb['pkg_reinstall_confirmation'] = 'Opravdu chcete přeinstalovat tento balíček se stejným nastavením ?'; |
| | | $wb['filter_txt'] = 'Hledat'; |
| | | $wb['delete_txt'] = 'Vymazat'; |
| | | $wb['reinstall_txt'] = 'Přeinstalovat'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Available packages'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['category_txt'] = 'Category'; |
| | | $wb['status_txt'] = 'Unlocked'; |
| | | $wb['filter_txt'] = 'Search'; |
| | | $wb['list_head_txt'] = 'Dostupné balíčky'; |
| | | $wb['name_txt'] = 'Název'; |
| | | $wb['version_txt'] = 'Verze'; |
| | | $wb['category_txt'] = 'Kategorie'; |
| | | $wb['status_txt'] = 'Odemčený'; |
| | | $wb['filter_txt'] = 'Hledat'; |
| | | ?> |
| | |
| | | $wb['run_wday_txt'] = 'Dny týdne'; |
| | | $wb['command_txt'] = 'Příkaz'; |
| | | $wb['add_new_cron_txt'] = 'Přidat novou cron úlohu'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['parent_domain_id_txt'] = 'Webové stránky'; |
| | | ?> |
| | |
| | | $wb['optional_txt'] = 'Volitelný'; |
| | | $wb['select_dbuser_txt'] = 'Vyberte uživatele databáze'; |
| | | $wb['no_dbuser_txt'] = 'Žádný'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | $wb['used_txt'] = 'Využité místo'; |
| | | $wb['hard_txt'] = 'Tvrdý limit'; |
| | | $wb['soft_txt'] = 'Měkký limit'; |
| | | $wb['files_txt'] = 'Single files'; |
| | | $wb['files_txt'] = 'Počet souborů'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $wb['domain_txt'] = 'Alias domény'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['web_folder_id_txt'] = 'Folder'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_txt'] = 'Heslo'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['folder_error_empty'] = 'No web folder selecetd.'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['password_strength_txt'] = 'Síla hesla'; |
| | | $wb['generate_password_txt'] = 'Generovat heslo'; |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | |
| | | $wb['last_month_txt'] = 'Minulý měsíc'; |
| | | $wb['this_year_txt'] = 'Tento rok'; |
| | | $wb['last_year_txt'] = 'Minulý rok'; |
| | | $wb['sum_txt'] = 'Sum'; |
| | | $wb['sum_txt'] = 'Součet'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'Žádné přesměrování'; |
| | | $wb['no_flag_txt'] = 'Žádný příznak'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['limit_web_domain_txt'] = 'The max. Počet webových stránek for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['client_group_id_txt'] = 'Klient'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['password_txt'] = 'Heslo'; |
| | | $wb['password_strength_txt'] = 'Síla hesla'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_webdav_user_txt'] = 'The max. number of webdav users for your account is reached.'; |
| | | $wb['username_error_empty'] = 'Username is empty.'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'Χωρίς Ανακατεύθυνση'; |
| | | $wb['no_flag_txt'] = 'Χωρίς Σημαία'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['Available packages'] = 'Available packages'; |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['Websites'] = 'Websites'; |
| | | $wb['Website'] = 'Website'; |
| | | $wb['Subdomain'] = 'Subdominio'; |
| | | $wb['Aliasdomain'] = 'Alias de dominio'; |
| | | $wb['Database'] = 'Base de datos'; |
| | | $wb['Web Access'] = 'Web Access'; |
| | | $wb['FTP-User'] = 'Usuario FTP'; |
| | | $wb['Webdav-User'] = 'Usuario de Webdav'; |
| | | $wb['Folder'] = 'Protected Folders'; |
| | | $wb['Folder users'] = 'Protected Folder Users'; |
| | | $wb['Command Line'] = 'Command Line'; |
| | | $wb['Shell-User'] = 'Usuario de consola'; |
| | | $wb['Cron Jobs'] = 'Cron Jobs'; |
| | | $wb['Statistics'] = 'Estadísticas'; |
| | | $wb['Web traffic'] = 'Trafico Web'; |
| | | $wb['Website quota (Harddisk)'] = 'Cuota sito web (Disco Duro)'; |
| | | $wb['Cron'] = 'Cron'; |
| | | $wb['Stats'] = 'Estadísticas'; |
| | | $wb['Shell'] = 'Shell'; |
| | | $wb['Webdav'] = 'WebDAV'; |
| | | $wb['FTP'] = 'FTP'; |
| | | $wb['Options'] = 'Opciones'; |
| | | $wb['Domain'] = 'Dominio'; |
| | | $wb['Redirect'] = 'Redirección'; |
| | | $wb['SSL'] = 'SSL'; |
| | | $wb['Subdomain'] = 'Subdominio'; |
| | | $wb['Sites'] = 'Sitios'; |
| | | $wb['Aliasdomain'] = 'Alias de dominio'; |
| | | $wb['FTP-User'] = 'Usuario FTP'; |
| | | $wb['FTP'] = 'FTP'; |
| | | $wb['Shell-User'] = 'Usuario de consola'; |
| | | $wb['Shell'] = 'Consola (shell)'; |
| | | $wb['Websites'] = 'Sitios web'; |
| | | $wb['Stats'] = 'Estadísticas'; |
| | | $wb['Website'] = 'Sitio web'; |
| | | $wb['Cron'] = 'Cron'; |
| | | $wb['Cron Jobs'] = 'Cron Jobs'; |
| | | $wb['Statistics'] = 'Estadísticas'; |
| | | $wb['Web traffic'] = 'Trafico Web'; |
| | | $wb['Webdav-User'] = 'Usuario de Webdav'; |
| | | $wb['Webdav'] = 'Webdav'; |
| | | $wb['Website quota (Harddisk)'] = 'Cuota sito web (Disco Duro)'; |
| | | $wb['Database User'] = 'Database Users'; |
| | | $wb['Web Access'] = 'Web Access'; |
| | | $wb['Folder'] = 'Protected Folders'; |
| | | $wb['Folder users'] = 'Protected Folder Users'; |
| | | $wb['Command Line'] = 'Command Line'; |
| | | $wb['APS Installer'] = 'APS Installer'; |
| | | $wb['Available packages'] = 'Available packages'; |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['run_wday_txt'] = 'Día de la semana'; |
| | | $wb['command_txt'] = 'Comando'; |
| | | $wb['add_new_cron_txt'] = 'Añadir nueva tarea cron'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['parent_domain_id_txt'] = 'Sitio web'; |
| | | ?> |
| | |
| | | $wb['database_remote_error_ips'] = 'Al menos una de las IP introducidas no es válida.'; |
| | | $wb['database_name_error_len'] = 'El nombre de la base de datos - {db} - es demasiado largo. La longitud máxima del nombre de la base de datos, incluyendo el prefijo, es de 64 caracteres.'; |
| | | $wb['database_user_error_len'] = 'El nombre de usuario de la base de datos - {user}- es demasiado largo. La longitud máxima del nombre de usuario de la base de datos, incluyendo el prefijo, es de 16 caracteres.'; |
| | | $wb['database_ro_user_txt'] = 'Read-only database user'; |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | $wb['parent_domain_id_txt'] = 'Site'; |
| | | $wb['database_site_error_empty'] = 'Select the site to which the database belongs.'; |
| | | $wb['select_site_txt'] = '- Select Site -'; |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['database_ro_user_txt'] = 'Read-only database user'; |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['quota_files_unity_txt'] = 'Ficheros'; |
| | | $wb['directory_error_notinweb'] = 'El directorio no está dentro del directorio web raíz.'; |
| | | $wb['parent_domain_id_error_empty'] = 'No se ha seleccionado un sitio web.'; |
| | | $wb['quota_size_error_regex'] = 'Quota: enter a -1 for unlimited or a number > 0'; |
| | | $wb['dir_dot_error'] = 'No .. in path allowed.'; |
| | | $wb['dir_slashdot_error'] = 'No ./ in path allowed.'; |
| | | $wb['quota_size_error_regex'] = 'Cuota: introduzca un -1 para ilimitados ó un número > 0'; |
| | | $wb['dir_dot_error'] = 'No .. ruta permitida.'; |
| | | $wb['dir_slashdot_error'] = 'No ./ en ruta permitida.'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | |
| | | $wb['directory_error_empty'] = 'Directorio vacío'; |
| | | $wb['limit_shell_user_txt'] = 'Se ha alcanzado el número máximo de usuarios de consola'; |
| | | $wb['parent_domain_id_error_empty'] = 'No se ha seleccionado un sitio web.'; |
| | | $wb['puser_txt'] = 'Web Username'; |
| | | $wb['puser_txt'] = 'Nombre del usuario Web'; |
| | | $wb['pgroup_txt'] = 'Web Group'; |
| | | $wb['ssh_rsa_txt'] = 'SSH-RSA Public Key (for key-based logins)'; |
| | | $wb['dir_dot_error'] = 'No .. in path allowed.'; |
| | | $wb['dir_slashdot_error'] = 'No ./ in path allowed.'; |
| | | $wb['ssh_rsa_txt'] = 'SSH-RSA de clave pública (para los inicios de sesión basados ??en clave)'; |
| | | $wb['dir_dot_error'] = 'No .. ruta permitida.'; |
| | | $wb['dir_slashdot_error'] = 'No ./ en ruta permitida.'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Usuario de consola'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['parent_domain_id_txt'] = 'Sitio'; |
| | | $wb['username_txt'] = 'Usuario'; |
| | | $wb['add_new_record_txt'] = 'Añadir nuevo usuario de consola'; |
| | | $wb['list_head_txt'] = 'Shell User'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Site'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['add_new_record_txt'] = 'Add new Shell-User'; |
| | | ?> |
| | |
| | | $wb['domain_error_empty'] = 'El dominio está vacío'; |
| | | $wb['domain_error_unique'] = 'El domino debe ser único'; |
| | | $wb['domain_error_regex'] = 'El nombre de dominio no es válido'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_redirect_txt'] = 'No redirigir'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['none_txt'] = 'Ninguno'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['ssl_state_txt'] = 'Provincia/Estado'; |
| | | $wb['backup_interval_txt'] = 'Intervalo de copia de seguridad'; |
| | | $wb['backup_copies_txt'] = 'Número de copias de seguridad'; |
| | | $wb['ssl_state_txt'] = 'Estado/Provincia'; |
| | | $wb['ssl_locality_txt'] = 'Localidad'; |
| | | $wb['ssl_organisation_txt'] = 'Organización'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Unidad de la organización'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Departamento de la organización'; |
| | | $wb['ssl_country_txt'] = 'País'; |
| | | $wb['ssl_request_txt'] = 'Petición SSL'; |
| | | $wb['ssl_cert_txt'] = 'Certificado SSL'; |
| | | $wb['ssl_bundle_txt'] = 'Paquete SSL'; |
| | | $wb['ssl_action_txt'] = 'Acción SSL'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Dominio'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['domain_txt'] = 'Dominio'; |
| | | $wb['type_txt'] = 'Tipo'; |
| | | $wb['parent_domain_id_txt'] = 'Sitio web padre'; |
| | | $wb['redirect_type_txt'] = 'Tipo de redirección'; |
| | | $wb['redirect_path_txt'] = 'Ruta de redirección'; |
| | | $wb['redirect_type_txt'] = 'Tipo redirección'; |
| | | $wb['redirect_path_txt'] = 'Ruta redirección'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['document_root_txt'] = 'Carpeta inicial'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Usuario Linux'; |
| | | $wb['system_group_txt'] = 'Grupo Linux'; |
| | | $wb['ip_address_txt'] = 'Dirección IP'; |
| | | $wb['vhost_type_txt'] = 'Tipo vhost'; |
| | | $wb['hd_quota_txt'] = 'Cuota de disco'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Tipo'; |
| | | $wb['hd_quota_txt'] = 'Couta disco duro'; |
| | | $wb['traffic_quota_txt'] = 'Cuota de tráfico'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Documentos de error propios'; |
| | | $wb['errordocs_txt'] = 'Documentos propios de error'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdominio'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | |
| | | $wb['limit_web_aliasdomain_txt'] = 'Se ha alcanzado el número máximo de alias de dominios de esta cuenta'; |
| | | $wb['limit_web_subdomain_txt'] = 'Se ha alcanzado el número máximo de subdominios web de esta cuenta'; |
| | | $wb['apache_directives_txt'] = 'Directivas de Apache'; |
| | | $wb['domain_error_empty'] = 'El dominio está vacío'; |
| | | $wb['domain_error_unique'] = 'El dominio debe ser único'; |
| | | $wb['domain_error_regex'] = 'El dominio no es válido'; |
| | | $wb['hd_quota_error_empty'] = 'La cuota de disco está vacía'; |
| | | $wb['traffic_quota_error_empty'] = 'La cuota de tráfico está vacía'; |
| | | $wb['error_ssl_state_empty'] = 'Provincia/Estado SSL está vacío'; |
| | | $wb['error_ssl_locality_empty'] = 'Localidad SSL está vacío'; |
| | | $wb['error_ssl_organisation_empty'] = 'Organización SSL está vacío'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'Unidad de organización de SSL está vacío'; |
| | | $wb['error_ssl_country_empty'] = 'País SSL está vacío'; |
| | | $wb['subdomain_txt'] = 'Autosubdominio'; |
| | | $wb['domain_error_empty'] = 'El dominio está vacío.'; |
| | | $wb['domain_error_unique'] = 'Ya existe un sitio web o sub/aliasdominio con este nombre de dominio.'; |
| | | $wb['domain_error_regex'] = 'El nombre de dominio no es válido'; |
| | | $wb['hd_quota_error_empty'] = 'Cuota de disco duro es 0 o vacío.'; |
| | | $wb['traffic_quota_error_empty'] = 'Cuota de tráfico está vacío.'; |
| | | $wb['error_ssl_state_empty'] = 'Estado SSL está vacío.'; |
| | | $wb['error_ssl_locality_empty'] = 'Sitio SSL está vacío.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organización está vacío.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Unidad de Organización está vacío.'; |
| | | $wb['error_ssl_country_empty'] = 'País SSL está vacío.'; |
| | | $wb['error_ssl_cert_empty'] = 'Campo de certificado SSL está vacío.'; |
| | | $wb['client_group_id_txt'] = 'Cliente'; |
| | | $wb['stats_password_txt'] = 'Contraseña de estadísticas web'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['allow_override_txt'] = 'Allow Override'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['stats_password_txt'] = 'Contraseña de estadísticas Web '; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. cuota disco duro disponible'; |
| | | $wb['ssl_state_error_regex'] = 'Estado no válido de SSL. Los caracteres válidos son: a-z, 0-9 y,-_.'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid Sitio válido SSL. Los caracteres válidos son: a-z, 0-9 y,-_.'; |
| | | $wb['ssl_organisation_error_regex'] = 'Organización no válido SSL. Los caracteres válidos son: a-z, 0-9 y,-_.'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Unidad de Organización no válido SSL. Los caracteres válidos son: a-z, 0-9 y,-_.'; |
| | | $wb['ssl_country_error_regex'] = 'País no válido SSL. Los caracteres válidos son: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. Cuota de tráfico disponible'; |
| | | $wb['redirect_error_regex'] = 'Redirección no válida camino. Redirecciones válidos son, por ejemplo,: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Cuota de tráfico excedida'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['stats_user_txt'] = 'Estadísticas Web nombre de usuario'; |
| | | $wb['stats_type_txt'] = 'Estadísticas Web del programa'; |
| | | $wb['custom_php_ini_txt'] = 'Configuración personalizada de php.ini'; |
| | | $wb['none_txt'] = 'Ninguno'; |
| | | $wb['disabled_txt'] = 'Desactivado'; |
| | | $wb['no_redirect_txt'] = 'No redirigir'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['save_certificate_txt'] = 'Guardar el certificado'; |
| | | $wb['create_certificate_txt'] = 'Crear el certificado'; |
| | | $wb['delete_certificate_txt'] = 'Eliminar certificado'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Usar Socket para PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI para SSL no está activado en este servidor. Sólo es posible activar un certificado SSL en cada dirección IP.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Los valores de configuración de PHP-FPM pm debe ser como sigue: pm.max_children> = pm.max_spare_servers> = pm.start_servers> = pm.min_spare_servers> 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children debe ser un valor entero positivo.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers debe ser un valor entero positivo.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers debe ser un valor entero positivo.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers debe ser un valor entero positivo.'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['path_txt'] = 'Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['path_error_regex'] = 'Invalid folder path.'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['parent_domain_id_txt'] = 'Sitio web'; |
| | | $wb['path_txt'] = 'Ruta'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['path_error_regex'] = 'Ruta del archivo invalida.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['path_txt'] = 'Path'; |
| | | $wb['list_head_txt'] = 'Carpeta'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['parent_domain_id_txt'] = 'Sitio web'; |
| | | $wb['path_txt'] = 'Ruta'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['web_folder_id_txt'] = 'Folder'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['folder_error_empty'] = 'No web folder selecetd.'; |
| | | $wb['web_folder_id_txt'] = 'Carpeta'; |
| | | $wb['username_txt'] = 'Nombre de usuario'; |
| | | $wb['password_txt'] = 'Contraseña'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['folder_error_empty'] = 'Ninguna carpeta web selecionada.'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Folder User'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['web_folder_id_txt'] = 'Folder'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['list_head_txt'] = 'Carpeta del usuario'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['web_folder_id_txt'] = 'Carpeta'; |
| | | $wb['username_txt'] = 'Nombre de usuario'; |
| | | ?> |
| | |
| | | $wb['domain_error_unique'] = 'El dominio debe ser único.'; |
| | | $wb['domain_error_regex'] = 'El nombre de dominio no es válido.'; |
| | | $wb['host_txt'] = 'Alojamiento'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['redirect_error_regex'] = 'Redirección no válida ruta. Redirecciones válidos son por ejemplo: /test/ or http://www.domain.tld/test/'; |
| | | $wb['no_redirect_txt'] = 'No redirigir'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['dir_txt'] = 'Directory'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['limit_webdav_user_txt'] = 'The max. number of webdav users for your account is reached.'; |
| | | $wb['username_error_empty'] = 'Username is empty.'; |
| | | $wb['username_error_unique'] = 'The username must be unique.'; |
| | | $wb['username_error_regex'] = 'The username contains characters that are not allowed.'; |
| | | $wb['directory_error_empty'] = 'Directory empty.'; |
| | | $wb['parent_domain_id_error_empty'] = 'No website selected.'; |
| | | $wb['dir_txt'] = 'Directorio'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['parent_domain_id_txt'] = 'Sitio web'; |
| | | $wb['username_txt'] = 'Nombre de usuario'; |
| | | $wb['password_txt'] = 'Contraseña'; |
| | | $wb['password_strength_txt'] = 'Fortaleza de la contraseña'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['limit_webdav_user_txt'] = 'La máx. número de usuarios de WebDAV para su cuenta se alcanza.'; |
| | | $wb['username_error_empty'] = 'Nombre de usuario está vacía.'; |
| | | $wb['username_error_unique'] = 'Nombre de usuario debe ser único.'; |
| | | $wb['username_error_regex'] = 'El nombre de usuario contiene charachters que no están permitidos.'; |
| | | $wb['directory_error_empty'] = 'Directorio de vacío.'; |
| | | $wb['parent_domain_id_error_empty'] = 'No hay sitio web seleccionado.'; |
| | | $wb['dir_dot_error'] = 'No .. in path allowed.'; |
| | | $wb['dir_slashdot_error'] = 'No ./ in path allowed.'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Webdav-User'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['add_new_record_txt'] = 'Add new Webdav-User'; |
| | | $wb['list_head_txt'] = 'Usuarios de Webdav'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['parent_domain_id_txt'] = 'Sitio web'; |
| | | $wb['username_txt'] = 'Nombre de usuario'; |
| | | $wb['add_new_record_txt'] = 'Añadir nuevo usuario Webdav'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['Subdomain'] = 'Sous-domaine'; |
| | | $wb['Aliasdomain'] = 'Alias'; |
| | | $wb['Database'] = 'Base de données'; |
| | | $wb['Database Users'] = 'Database Users'; |
| | | $wb['Web Access'] = 'Web Access'; |
| | | $wb['FTP-User'] = 'Utilisateur FTP'; |
| | | $wb['Webdav-User'] = 'Utilisateur WebDav'; |
| | |
| | | $wb['Redirect'] = 'Redirection'; |
| | | $wb['SSL'] = 'SSL'; |
| | | $wb['Sites'] = 'Sites'; |
| | | $wb['Database User'] = 'Database Users'; |
| | | $wb['APS Installer'] = 'APS Installer'; |
| | | $wb['Available packages'] = 'Available packages'; |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | ?> |
| | |
| | | <?php
|
| | | $wb['overview_txt'] = 'Overview';
|
| | | $wb['administration_txt'] = 'Administration';
|
| | | $wb['available_packages_txt'] = 'Available packages';
|
| | | $wb['installed_packages_txt'] = 'Installed packages';
|
| | | $wb['yes_txt'] = 'Yes';
|
| | | $wb['no_txt'] = 'No';
|
| | | $wb['invalid_id_txt'] = 'No valid ID has been provided.';
|
| | | $wb['details_txt'] = 'Details';
|
| | | $wb['version_txt'] = 'Version';
|
| | | $wb['category_txt'] = 'Category';
|
| | | $wb['homepage_txt'] = 'Homepage';
|
| | | $wb['supported_languages_txt'] = 'Supported languages';
|
| | | $wb['description_txt'] = 'Description';
|
| | | $wb['config_script_txt'] = 'Configuration script';
|
| | | $wb['installed_size_txt'] = 'Size after installation';
|
| | | $wb['license_txt'] = 'License';
|
| | | $wb['screenshots_txt'] = 'Screenshots';
|
| | | $wb['changelog_txt'] = 'Changelog';
|
| | | $wb['server_requirements_txt'] = 'Server requirements';
|
| | | $wb['php_extensions_txt'] = 'PHP extensions';
|
| | | $wb['php_settings_txt'] = 'PHP settings';
|
| | | $wb['supported_php_versions_txt'] = 'Supported PHP versions';
|
| | | $wb['database_txt'] = 'Database';
|
| | | $wb['settings_txt'] = 'Settings';
|
| | | $wb['install_package_txt'] = 'Install this package';
|
| | | $wb['installation_txt'] = 'Installation';
|
| | | $wb['install_location_txt'] = 'Install location';
|
| | | $wb['btn_install'] = 'Install';
|
| | | $wb['btn_cancel'] = 'Cancel';
|
| | | $wb['acceptance_txt'] = 'Acceptance';
|
| | | $wb['acceptance_text_txt'] = 'Yes, i\'ve read the license and agree.';
|
| | | $wb['install_language_txt'] = 'Interface language';
|
| | | $wb['new_database_password_txt'] = 'New database password';
|
| | | $wb['basic_settings_txt'] = 'Basic settings';
|
| | | $wb['package_settings_txt'] = 'Package settings';
|
| | | $wb['error_main_domain'] = 'The domain of the installation path is invalid.';
|
| | | $wb['error_no_main_location'] = 'You have provided no valid installation path.';
|
| | | $wb['error_inv_main_location'] = 'The given install location folder is invalid.';
|
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.';
|
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.';
|
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.';
|
| | | $wb['error_no_value_for'] = 'The field "%s" must not be empty.';
|
| | | $wb['error_short_value_for'] = 'The field "%s" requires a longer input value.';
|
| | | $wb['error_long_value_for'] = 'The field "%s" requires a shorter input value.';
|
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field "%s".';
|
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field "%s".';
|
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field "%s".';
|
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field "%s".';
|
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field "%s".';
|
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.';
|
| | | $wb['installation_task_txt'] = 'Install planned';
|
| | | $wb['installation_error_txt'] = 'Install error';
|
| | | $wb['installation_success_txt'] = 'Installed';
|
| | | $wb['installation_remove_txt'] = 'Removal planned';
|
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.';
|
| | | ?> |
| | | <?php |
| | | $wb['overview_txt'] = 'Overview'; |
| | | $wb['administration_txt'] = 'Administration'; |
| | | $wb['available_packages_txt'] = 'Available packages'; |
| | | $wb['installed_packages_txt'] = 'Installed packages'; |
| | | $wb['yes_txt'] = 'Yes'; |
| | | $wb['no_txt'] = 'No'; |
| | | $wb['invalid_id_txt'] = 'No valid ID has been provided.'; |
| | | $wb['details_txt'] = 'Details'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['category_txt'] = 'Category'; |
| | | $wb['homepage_txt'] = 'Homepage'; |
| | | $wb['supported_languages_txt'] = 'Supported languages'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['config_script_txt'] = 'Configuration script'; |
| | | $wb['installed_size_txt'] = 'Size after installation'; |
| | | $wb['license_txt'] = 'License'; |
| | | $wb['screenshots_txt'] = 'Screenshots'; |
| | | $wb['changelog_txt'] = 'Changelog'; |
| | | $wb['server_requirements_txt'] = 'Server requirements'; |
| | | $wb['php_extensions_txt'] = 'PHP extensions'; |
| | | $wb['php_settings_txt'] = 'PHP settings'; |
| | | $wb['supported_php_versions_txt'] = 'Supported PHP versions'; |
| | | $wb['database_txt'] = 'Database'; |
| | | $wb['settings_txt'] = 'Settings'; |
| | | $wb['install_package_txt'] = 'Install this package'; |
| | | $wb['installation_txt'] = 'Installation'; |
| | | $wb['install_location_txt'] = 'Install location'; |
| | | $wb['acceptance_txt'] = 'Acceptance'; |
| | | $wb['acceptance_text_txt'] = 'Yes, i\'ve read the license and agree.'; |
| | | $wb['install_language_txt'] = 'Interface language'; |
| | | $wb['new_database_password_txt'] = 'New database password'; |
| | | $wb['basic_settings_txt'] = 'Basic settings'; |
| | | $wb['package_settings_txt'] = 'Package settings'; |
| | | $wb['error_main_domain'] = 'The domain of the installation path is invalid.'; |
| | | $wb['error_no_main_location'] = 'You have provided no valid installation path.'; |
| | | $wb['error_inv_main_location'] = 'The given install location folder is invalid.'; |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | | $wb['installation_success_txt'] = 'Installed'; |
| | | $wb['installation_remove_txt'] = 'Removal planned'; |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | ?> |
| | |
| | | <?php
|
| | | $wb['list_head_txt'] = 'Installed packages';
|
| | | $wb['name_txt'] = 'Name';
|
| | | $wb['version_txt'] = 'Version';
|
| | | $wb['customer_txt'] = 'Client';
|
| | | $wb['status_txt'] = 'Status';
|
| | | $wb['install_location_txt'] = 'Install location';
|
| | | $wb['pkg_delete_confirmation'] = 'Do you really want to delete this installation?';
|
| | | $wb['pkg_reinstall_confirmation'] = 'Do you really want to reinstall this package with the same settings?';
|
| | | $wb['filter_txt'] = 'Search';
|
| | | $wb['delete_txt'] = 'Delete';
|
| | | $wb['reinstall_txt'] = 'Reinstall';
|
| | | ?> |
| | | <?php |
| | | $wb['list_head_txt'] = 'Installed packages'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['customer_txt'] = 'Client'; |
| | | $wb['status_txt'] = 'Status'; |
| | | $wb['install_location_txt'] = 'Install location'; |
| | | $wb['pkg_delete_confirmation'] = 'Do you really want to delete this installation?'; |
| | | $wb['pkg_reinstall_confirmation'] = 'Do you really want to reinstall this package with the same settings?'; |
| | | $wb['filter_txt'] = 'Search'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['reinstall_txt'] = 'Reinstall'; |
| | | ?> |
| | |
| | | <?php
|
| | | $wb['list_head_txt'] = 'Available packages';
|
| | | $wb['name_txt'] = 'Name';
|
| | | $wb['version_txt'] = 'Version';
|
| | | $wb['category_txt'] = 'Category';
|
| | | $wb['status_txt'] = 'Unlocked';
|
| | | $wb['filter_txt'] = 'Search';
|
| | | ?> |
| | | <?php |
| | | $wb['list_head_txt'] = 'Available packages'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['category_txt'] = 'Category'; |
| | | $wb['status_txt'] = 'Unlocked'; |
| | | $wb['filter_txt'] = 'Search'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['database_ro_user_txt'] = 'Read-only database user'; |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['restore_pending_txt'] = 'There is already a pending backup restore job.'; |
| | | $wb['backup_type_mysql'] = 'MySQL Database'; |
| | | $wb['backup_type_web'] = 'Website files'; |
| | | |
| | | ?> |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['last_month_txt'] = 'Le mois précédent'; |
| | | $wb['this_year_txt'] = 'L\'année en cours'; |
| | | $wb['last_year_txt'] = 'L\'année précédente'; |
| | | $wb['sum_txt'] = 'Sum'; |
| | | ?> |
| | |
| | | $wb['redirect_error_regex'] = 'Chemin de redirection invalide. Exemples de redirections valides: /test/ ou http://www.domain.tld/test/'; |
| | | $wb['no_redirect_txt'] = 'Aucune redirecton'; |
| | | $wb['no_flag_txt'] = 'Aucun flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'Bez redirekcije'; |
| | | $wb['no_flag_txt'] = 'Bez markiranja'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'Bez przekierowania'; |
| | | $wb['no_flag_txt'] = 'Bez flagi'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \"%s\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \"%s\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \"%s\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \"%s\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \"%s\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \"%s\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \"%s\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \"%s\".'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["database_password_txt"] = 'Database password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["database_user_error_empty"] = 'Database user is empty.'; |
| | | $wb["database_user_error_unique"] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb["database_user_error_regex"] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb["database_user_error_len"] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb["btn_save_txt"] = 'Save'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "of"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "results"; |
| | | $wb['globalsearch_noresults_text_txt'] = "No results."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 results"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Search"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database User'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new User'; |
| | | $wb["sys_groupid_txt"] = 'Client'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Database user'; |
| | | $wb["database_user_txt"] = 'Database user'; |
| | | $wb["add_new_record_txt"] = 'Add new user'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["web_folder_txt"] = 'Web folder'; |
| | | $wb["web_folder_invalid_txt"] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb["web_folder_unique_txt"] = 'The web folder is already used, please choose a different one.'; |
| | | $wb["backup_interval_txt"] = 'Backup interval'; |
| | | $wb["backup_copies_txt"] = 'Number of backup copies'; |
| | | $wb["ssl_state_txt"] = 'State'; |
| | | $wb["ssl_locality_txt"] = 'Locality'; |
| | | $wb["ssl_organisation_txt"] = 'Organisation'; |
| | | $wb["ssl_organisation_unit_txt"] = 'Organisation Unit'; |
| | | $wb["ssl_country_txt"] = 'Country'; |
| | | $wb["ssl_key_txt"] = 'SSL Key'; |
| | | $wb["ssl_request_txt"] = 'SSL Request'; |
| | | $wb["ssl_cert_txt"] = 'SSL Certificate'; |
| | | $wb["ssl_bundle_txt"] = 'SSL Bundle'; |
| | | $wb["ssl_action_txt"] = 'SSL Action'; |
| | | $wb["ssl_domain_txt"] = 'SSL Domain'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["host_txt"] = 'Hostname'; |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["parent_domain_id_txt"] = 'Parent Website'; |
| | | $wb["redirect_type_txt"] = 'Redirect Type'; |
| | | $wb["redirect_path_txt"] = 'Redirect Path'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["document_root_txt"] = 'Documentroot'; |
| | | $wb["system_user_txt"] = 'Linux User'; |
| | | $wb["system_group_txt"] = 'Linux Group'; |
| | | $wb["ip_address_txt"] = 'IPv4-Address'; |
| | | $wb["ipv6_address_txt"] = 'IPv6-Address'; |
| | | $wb["vhost_type_txt"] = 'VHost Type'; |
| | | $wb["hd_quota_txt"] = 'Harddisk Quota'; |
| | | $wb["traffic_quota_txt"] = 'Traffic Quota'; |
| | | $wb["cgi_txt"] = 'CGI'; |
| | | $wb["ssi_txt"] = 'SSI'; |
| | | $wb["errordocs_txt"] = 'Own Error-Documents'; |
| | | $wb["subdomain_txt"] = 'Auto-Subdomain'; |
| | | $wb["ssl_txt"] = 'SSL'; |
| | | $wb["suexec_txt"] = 'SuEXEC'; |
| | | $wb["php_txt"] = 'PHP'; |
| | | $wb["client_txt"] = 'Client'; |
| | | $wb["limit_web_domain_txt"] = 'The max. number of web domains for your account is reached.'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb["limit_web_subdomain_txt"] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb["apache_directives_txt"] = 'Apache Directives'; |
| | | $wb["domain_error_empty"] = 'Domain is empty.'; |
| | | $wb["domain_error_unique"] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb["domain_error_regex"] = 'Domain name invalid.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb["hd_quota_error_empty"] = 'Harddisk quota is 0 or empty.'; |
| | | $wb["traffic_quota_error_empty"] = 'Traffic quota is empty.'; |
| | | $wb["error_ssl_state_empty"] = 'SSL State is empty.'; |
| | | $wb["error_ssl_locality_empty"] = 'SSL Locality is empty.'; |
| | | $wb["error_ssl_organisation_empty"] = 'SSL Organisation is empty.'; |
| | | $wb["error_ssl_organisation_unit_empty"] = 'SSL Organisation Unit is empty.'; |
| | | $wb["error_ssl_country_empty"] = 'SSL Country is empty.'; |
| | | $wb["error_ssl_cert_empty"] = 'SSL Certificate field is empty'; |
| | | $wb["client_group_id_txt"] = 'Client'; |
| | | $wb["stats_password_txt"] = 'Webstatistics password'; |
| | | $wb["allow_override_txt"] = 'Apache AllowOverride'; |
| | | $wb["limit_web_quota_free_txt"] = 'Max. available Harddisk Quota'; |
| | | $wb["ssl_state_error_regex"] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_locality_error_regex"] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organisation_error_regex"] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb["ssl_country_error_regex"] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb["limit_traffic_quota_free_txt"] = 'Max. available Traffic Quota'; |
| | | $wb["redirect_error_regex"] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb["php_open_basedir_txt"] = 'PHP open_basedir'; |
| | | $wb["traffic_quota_exceeded_txt"] = 'Traffic quota exceeded'; |
| | | $wb["ruby_txt"] = 'Ruby'; |
| | | $wb["stats_user_txt"] = 'Webstatistics username'; |
| | | $wb["stats_type_txt"] = 'Webstatistics program'; |
| | | $wb["custom_php_ini_txt"] = 'Custom php.ini settings'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb["nginx_directives_txt"] = 'nginx Directives'; |
| | | $wb["seo_redirect_txt"] = 'SEO Redirect'; |
| | | $wb["non_www_to_www_txt"] = 'Non-www -> www'; |
| | | $wb["www_to_non_www_txt"] = 'www -> non-www'; |
| | | $wb["php_fpm_use_socket_txt"] = 'Use Socket For PHP-FPM'; |
| | | $wb["error_no_sni_txt"] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb["python_txt"] = 'Python'; |
| | | $wb["perl_txt"] = 'Perl'; |
| | | $wb["pm_max_children_txt"] = 'PHP-FPM pm.max_children'; |
| | | $wb["pm_start_servers_txt"] = 'PHP-FPM pm.start_servers'; |
| | | $wb["pm_min_spare_servers_txt"] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb["pm_max_spare_servers_txt"] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb["error_php_fpm_pm_settings_txt"] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb["pm_max_children_error_regex"] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb["pm_start_servers_error_regex"] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb["pm_min_spare_servers_error_regex"] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb["pm_max_spare_servers_error_regex"] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb["hd_quota_error_regex"] = 'Harddisk quota is invalid.'; |
| | | $wb["traffic_quota_error_regex"] = 'Traffic quota is invalid.'; |
| | | $wb["fastcgi_php_version_txt"] = 'PHP Version'; |
| | | $wb["pm_txt"] = 'PHP-FPM Process Manager'; |
| | | $wb["pm_process_idle_timeout_txt"] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb["pm_max_requests_txt"] = 'PHP-FPM pm.max_requests'; |
| | | $wb["pm_process_idle_timeout_error_regex"] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb["pm_max_requests_error_regex"] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb["pm_ondemand_hint_txt"] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Subdomains'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["parent_domain_id_txt"] = 'Website'; |
| | | $wb["domain_txt"] = 'Subdomain'; |
| | | $wb["add_new_record_txt"] = 'Add new subdomain'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | $wb['database_client_differs_txt'] = 'The client of the parent web and the database do not match.'; |
| | | ?> |
| | |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | |
| | | 'width' => '',
|
| | | 'value' => '');
|
| | |
|
| | | $liste["item"][] = array('field' => 'customer_name',
|
| | | 'datatype' => 'VARCHAR',
|
| | | 'formtype' => 'TEXT',
|
| | | 'op' => 'LIKE',
|
| | | 'prefix' => '%',
|
| | | 'suffix' => '%',
|
| | | /*
|
| | | $liste["item"][] = array('field' => 'customer_id',
|
| | | 'datatype' => 'INTEGER',
|
| | | 'formtype' => 'SELECT',
|
| | | 'op' => '=',
|
| | | 'prefix' => '',
|
| | | 'suffix' => '',
|
| | | 'width' => '',
|
| | | 'value' => '');
|
| | | */
|
| | |
|
| | | $liste["item"][] = array('field' => 'instance_status',
|
| | | 'datatype' => 'VARCHAR',
|
| | |
| | | |
| | | if ($this->dataRecord['username'] != ""){ |
| | | /* REMOVE the restriction */ |
| | | $app->tpl->setVar("username", preg_replace('/'.$shelluser_prefix.'/', '', $this->dataRecord['username'], 1)); |
| | | $app->tpl->setVar("username", $app->tools_sites->removePrefix($this->dataRecord['username'], $this->dataRecord['username_prefix'], $shelluser_prefix)); |
| | | } |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' || $app->auth->has_clients($_SESSION['s']['user']['userid'])) { |
| | | $app->tpl->setVar("username_prefix", $global_config['shelluser_prefix']); |
| | | } else { |
| | | $app->tpl->setVar("username_prefix", $shelluser_prefix); |
| | | } |
| | | |
| | | $app->tpl->setVar("username_prefix", $app->tools_sites->getPrefix($this->dataRecord['username_prefix'], $shelluser_prefix, $global_config['shelluser_prefix'])); |
| | | |
| | | if($this->id > 0) { |
| | | //* we are editing a existing record |
| | |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | $shelluser_prefix = $app->tools_sites->replacePrefix($global_config['shelluser_prefix'], $this->dataRecord); |
| | | |
| | | $this->dataRecord['username_prefix'] = $shelluser_prefix; |
| | | /* restrict the names */ |
| | | $this->dataRecord['username'] = $shelluser_prefix . $this->dataRecord['username']; |
| | | } |
| | |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | $shelluser_prefix = $app->tools_sites->replacePrefix($global_config['shelluser_prefix'], $this->dataRecord); |
| | | |
| | | $old_record = $app->tform->getDataRecord($this->id); |
| | | $shelluser_prefix = $app->tools_sites->getPrefix($old_record['username_prefix'], $shelluser_prefix); |
| | | $this->dataRecord['username_prefix'] = $shelluser_prefix; |
| | | |
| | | /* restrict the names */ |
| | | $this->dataRecord['username'] = $shelluser_prefix . $this->dataRecord['username']; |
| | | } |
| | |
| | | <th class="tbl_col_name" scope="col">{tmpl_var name='name_txt'}</th>
|
| | | <th class="tbl_col_version" scope="col">{tmpl_var name='version_txt'}</th>
|
| | | <tmpl_if name='is_noclient'>
|
| | | <th class="tbl_col_customer" scope="col">{tmpl_var name='customer_txt'}</th>
|
| | | <!--<th class="tbl_col_customer" scope="col">{tmpl_var name='customer_txt'}</th>-->
|
| | | </tmpl_if>
|
| | | <th class="tbl_col_installlocation" scope="col">{tmpl_var name='install_location_txt'}</th>
|
| | | <th class="tbl_col_instancestatus" scope="col">{tmpl_var name='status_txt'}</th>
|
| | |
| | | <td class="tbl_col_name"><input type="text" name="search_name" value="{tmpl_var name='search_name'}" /></td>
|
| | | <td class="tbl_col_version"><input type="text" name="search_version" value="{tmpl_var name='search_version'}" /></td>
|
| | | <tmpl_if name='is_noclient'>
|
| | | <td class="tbl_col_customer"><input type="text" name="search_customer_name" value="{tmpl_var name='search_customer_name'}" /></td>
|
| | | <!--<td class="tbl_col_customer"><input type="text" name="search_customer_name" value="{tmpl_var name='search_customer_name'}" /></td>-->
|
| | | </tmpl_if>
|
| | | <td class="tbl_col_installlocation"> </td>
|
| | | <td class="tbl_col_instancestatus"><select name="search_instance_status" onChange="submitForm('pageForm','sites/aps_installedpackages_list.php');">{tmpl_var name='search_instance_status'}</select></td>
|
| | |
| | | <td class="tbl_col_name"><a href="#" onclick="loadContent('sites/aps_packagedetails_show.php?id={tmpl_var name='package_id'}');">{tmpl_var name='package_name'}</a></td>
|
| | | <td class="tbl_col_version">{tmpl_var name='package_version'}-{tmpl_var name='package_release'}</td>
|
| | | <tmpl_if name='is_noclient'>
|
| | | <td class="tbl_col_customer"><a href="#" onclick="loadContent('client/client_edit.php?id={tmpl_var name='CustomerID'}');">{tmpl_var name='customer_name'}</a></td>
|
| | | <!--<td class="tbl_col_customer"><a href="#" onclick="loadContent('sites/aps_packagedetails_show.php?id={tmpl_var name='package_id'}');">{tmpl_var name='customer_name'}</a></td>-->
|
| | | </tmpl_if>
|
| | | <td class="tbl_col_installlocation"><a href="http://{tmpl_var name='install_location'}" target="_blank">{tmpl_var name='install_location_short'}</a></td>
|
| | | <td class="tbl_col_instancestatus"><span id="status_content{tmpl_var name='__ROWNUM__'}">{tmpl_var name='instance_status'}</span></td>
|
| | |
| | | <a class="button icons16 icoDelete" href="javascript: del_record('sites/aps_do_operation.php?action=delete_instance&id={tmpl_var name='id'}','{tmpl_var name='pkg_delete_confirmation'}')"><span>{tmpl_var name='delete_txt'}</span></a>
|
| | | </tmpl_if>
|
| | | <tmpl_if name='reinstall_possible'>
|
| | | <a class="button icons16 icoEdit" href="javascript: del_record('sites/aps_do_operation.php?action=reinstall_instance&id={tmpl_var name='id'}','{tmpl_var name='pkg_delete_confirmation'}')"><span>{tmpl_var name='reinstall_txt'}</span></a>
|
| | | <a class="button icons16 icoEdit" href="javascript: del_record('sites/aps_do_operation.php?action=reinstall_instance&id={tmpl_var name='id'}','{tmpl_var name='pkg_reinstall_confirmation'}')"><span>{tmpl_var name='reinstall_txt'}</span></a>
|
| | | </tmpl_if>
|
| | | </td>
|
| | | </tr>
|
| | |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="ul_ratio">{tmpl_var name='ul_ratio_txt'}</label> |
| | | <input name="ul_ratio" id="ul_ratio" value="{tmpl_var name='ul_ratio'}" size="7" maxlength="7" type="text" class="textInput formLengthLimit" /><p class="label">MB</p> |
| | | <input name="ul_ratio" id="ul_ratio" value="{tmpl_var name='ul_ratio'}" size="7" maxlength="7" type="text" class="textInput formLengthLimit" /><p class="label"></p> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="dl_ratio">{tmpl_var name='dl_ratio_txt'}</label> |
| | | <input name="dl_ratio" id="dl_ratio" value="{tmpl_var name='dl_ratio'}" size="7" maxlength="7" type="text" class="textInput formLengthLimit" /><p class="label">MB</p> |
| | | <input name="dl_ratio" id="dl_ratio" value="{tmpl_var name='dl_ratio'}" size="7" maxlength="7" type="text" class="textInput formLengthLimit" /><p class="label"></p> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="ul_bandwidth">{tmpl_var name='ul_bandwidth_txt'}</label> |
| | |
| | | reloadFastcgiPHPVersions(); |
| | | }); |
| | | } |
| | | adjustForm(); |
| | | reloadFastcgiPHPVersions(); |
| | | adjustForm(true); |
| | | reloadFastcgiPHPVersions(true); |
| | | |
| | | jQuery('#client_group_id').change(function(){ |
| | | clientGroupId = $(this).val(); |
| | |
| | | } else { |
| | | jQuery('.fastcgi_php_version:visible').hide(); |
| | | } |
| | | //resetFormChanged(); |
| | | |
| | | jQuery('#php').change(function(){ |
| | | reloadFastcgiPHPVersions(); |
| | | if(jQuery(this).val() == 'fast-cgi' || jQuery(this).val() == 'php-fpm'){ |
| | |
| | | } |
| | | }); |
| | | |
| | | function adjustForm(){ |
| | | function adjustForm(noFormChange){ |
| | | jQuery.getJSON('sites/ajax_get_json.php'+ '?' + Math.round(new Date().getTime()), {server_id : serverId, type : "getservertype"}, function(data) { |
| | | if(data.servertype == "nginx"){ |
| | | var selected = jQuery('#php').val(); |
| | |
| | | jQuery('#php option[value="mod"]').show(); |
| | | jQuery('#php option[value="suphp"]').show(); |
| | | } |
| | | jQuery('#php').change(); |
| | | if(noFormChange) resetFormChanged(); |
| | | else jQuery('#php').change(); |
| | | }); |
| | | } |
| | | |
| | |
| | | loadOptionInto('ipv6_address','sites/ajax_get_ip.php?ip_type=IPv6&server_id='+serverId+'&client_group_id='+clientGroupId); |
| | | } |
| | | |
| | | function reloadFastcgiPHPVersions() { |
| | | function reloadFastcgiPHPVersions(noFormChange) { |
| | | jQuery.getJSON('sites/ajax_get_json.php'+ '?' + Math.round(new Date().getTime()), {server_id : serverId, php_type : jQuery('#php').val(), type : "getphpfastcgi"}, function(data) { |
| | | var options = '<option value="">Default</option>'; |
| | | var phpfastcgiselected = ''; |
| | |
| | | options += '<option value="'+key+'"'+phpfastcgiselected+'>'+val+'</option>'; |
| | | }); |
| | | $('#fastcgi_php_version').html(options).change(); |
| | | if(noFormChange) resetFormChanged(); |
| | | }); |
| | | } |
| | | |
| | |
| | | $app->auth->check_module_permissions('sites'); |
| | | |
| | | // Loading classes |
| | | $app->uses('tpl,tform,tform_actions'); |
| | | $app->uses('tpl,tform,tform_actions,tools_sites'); |
| | | $app->load('tform_actions'); |
| | | |
| | | class page_action extends tform_actions { |
| | |
| | | /* |
| | | * The domain-module is in use. |
| | | */ |
| | | $client_group_id = $_SESSION["s"]["user"]["default_group"]; |
| | | /* |
| | | * The admin can select ALL domains, the user only the domains assigned to him |
| | | */ |
| | | $sql = "SELECT domain_id, domain FROM domain "; |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $sql .= "WHERE sys_groupid =" . $client_group_id; |
| | | } |
| | | $sql .= " ORDER BY domain"; |
| | | $domains = $app->db->queryAllRecords($sql); |
| | | $domains = $app->tools_sites->getDomainModuleDomains(); |
| | | $domain_select = ''; |
| | | if(is_array($domains) && sizeof($domains) > 0) { |
| | | /* We have domains in the list, so create the drop-down-list */ |
| | |
| | | $app->uses('ini_parser,getconf'); |
| | | $settings = $app->getconf->get_global_config('domains'); |
| | | if ($settings['use_domain_module'] == 'y') { |
| | | $client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]); |
| | | |
| | | $sql = "SELECT domain_id, domain FROM domain WHERE domain_id = " . $app->functions->intval($this->dataRecord['domain']); |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $sql .= " AND sys_groupid =" . $client_group_id; |
| | | } |
| | | $domain_check = $app->db->queryOneRecord($sql); |
| | | $domain_check = $app->tools_sites->checkDomainModuleDomain($this->dataRecord['domain']); |
| | | if(!$domain_check) { |
| | | // invalid domain selected |
| | | $app->tform->errorMessage .= $app->tform->lng("domain_error_empty")."<br />"; |
| | | } else { |
| | | $this->dataRecord['domain'] = $domain_check['domain']; |
| | | $this->dataRecord['domain'] = $domain_check; |
| | | } |
| | | } |
| | | |
| | |
| | | $app->auth->check_module_permissions('sites'); |
| | | |
| | | // Loading classes |
| | | $app->uses('tpl,tform,tform_actions'); |
| | | $app->uses('tpl,tform,tform_actions,tools_sites'); |
| | | $app->load('tform_actions'); |
| | | |
| | | class page_action extends tform_actions { |
| | |
| | | |
| | | $ssl_domain_select = ''; |
| | | $tmp = $app->db->queryOneRecord("SELECT domain FROM web_domain WHERE domain_id = ".$this->id); |
| | | $ssl_domains = array($tmp["domain"],'www.'.$tmp["domain"]); |
| | | $ssl_domains = array($tmp["domain"],'www.'.$tmp["domain"],'*.'.$tmp["domain"]); |
| | | if(is_array($ssl_domains)) { |
| | | foreach( $ssl_domains as $ssl_domain) { |
| | | $selected = ($ssl_domain == $this->dataRecord['ssl_domain'])?'SELECTED':''; |
| | |
| | | /* |
| | | * The domain-module is in use. |
| | | */ |
| | | $client_group_id = $_SESSION["s"]["user"]["default_group"]; |
| | | /* |
| | | * The admin can select ALL domains, the user only the domains assigned to him |
| | | */ |
| | | $sql = "SELECT domain_id, domain FROM domain "; |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $sql .= "WHERE sys_groupid =" . $client_group_id; |
| | | } |
| | | $sql .= " ORDER BY domain"; |
| | | $domains = $app->db->queryAllRecords($sql); |
| | | $domains = $app->tools_sites->getDomainModuleDomains(); |
| | | $domain_select = ''; |
| | | if(is_array($domains) && sizeof($domains) > 0) { |
| | | /* We have domains in the list, so create the drop-down-list */ |
| | |
| | | $app->uses('ini_parser,getconf'); |
| | | $settings = $app->getconf->get_global_config('domains'); |
| | | if ($settings['use_domain_module'] == 'y') { |
| | | $client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]); |
| | | |
| | | $sql = "SELECT domain_id, domain FROM domain WHERE domain_id = " . $app->functions->intval($this->dataRecord['domain']); |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $sql .= " AND sys_groupid =" . $client_group_id; |
| | | } |
| | | $domain_check = $app->db->queryOneRecord($sql); |
| | | $domain_check = $app->tools_sites->checkDomainModuleDomain($this->dataRecord['domain']); |
| | | if(!$domain_check) { |
| | | // invalid domain selected |
| | | $app->tform->errorMessage .= $app->tform->lng("domain_error_empty")."<br />"; |
| | | } else { |
| | | $this->dataRecord['domain'] = $domain_check['domain']; |
| | | $this->dataRecord['domain'] = $domain_check; |
| | | } |
| | | } |
| | | } |
| | |
| | | if($client['limit_perl'] != 'y') $this->dataRecord['perl'] = '-'; |
| | | if($client['limit_ruby'] != 'y') $this->dataRecord['ruby'] = '-'; |
| | | if($client['limit_python'] != 'y') $this->dataRecord['python'] = '-'; |
| | | if($client['force_suexec'] != 'n') $this->dataRecord['suexec'] = '-'; |
| | | if($client['force_suexec'] == 'y') $this->dataRecord['suexec'] = 'y'; |
| | | if($client['limit_hterror'] != 'y') $this->dataRecord['errordocs'] = '-'; |
| | | if($client['limit_wildcard'] != 'y' && $this->dataRecord['subdomain'] == '*') $this->dataRecord['subdomain'] = '-'; |
| | | if($client['limit_ssl'] != 'y') $this->dataRecord['ssl'] = '-'; |
| | |
| | | |
| | | //* Set php_open_basedir if empty or domain or client has been changed |
| | | if(empty($web_rec['php_open_basedir']) || |
| | | (!empty($this->dataRecord["domain"]) && !empty($this->oldDataRecord["domain"]) && $this->dataRecord["domain"] != $this->oldDataRecord["domain"]) || |
| | | (!empty($this->dataRecord["domain"]) && !empty($this->oldDataRecord["domain"]) && $this->dataRecord["domain"] != $this->oldDataRecord["domain"])) { |
| | | $php_open_basedir = $web_rec['php_open_basedir']; |
| | | $php_open_basedir = str_replace($this->oldDataRecord['domain'],$web_rec['domain'],$php_open_basedir); |
| | | $sql = "UPDATE web_domain SET php_open_basedir = '$php_open_basedir' WHERE domain_id = ".$this->id; |
| | | $app->db->query($sql); |
| | | } |
| | | if(empty($web_rec['php_open_basedir']) || |
| | | (isset($this->dataRecord["client_group_id"]) && $this->dataRecord["client_group_id"] != $this->oldDataRecord["sys_groupid"])) { |
| | | $document_root = $app->db->quote(str_replace("[client_id]",$client_id,$document_root)); |
| | | $php_open_basedir = str_replace("[website_path]",$document_root,$web_config["php_open_basedir"]); |
| | |
| | | $app->auth->check_module_permissions('sites'); |
| | | |
| | | // Loading classes |
| | | $app->uses('tpl,tform,tform_actions'); |
| | | $app->uses('tpl,tform,tform_actions,tools_sites'); |
| | | $app->load('tform_actions'); |
| | | |
| | | class page_action extends tform_actions { |
| | |
| | | /* |
| | | * The domain-module is in use. |
| | | */ |
| | | $client_group_id = $_SESSION["s"]["user"]["default_group"]; |
| | | /* |
| | | * The admin can select ALL domains, the user only the domains assigned to him |
| | | */ |
| | | $sql = "SELECT domain_id, domain FROM domain "; |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $sql .= "WHERE sys_groupid =" . $client_group_id; |
| | | } |
| | | $sql .= " ORDER BY domain"; |
| | | $domains = $app->db->queryAllRecords($sql); |
| | | $domains = $app->tools_sites->getDomainModuleDomains(); |
| | | $domain_select = ''; |
| | | $selected_domain = ''; |
| | | if(is_array($domains) && sizeof($domains) > 0) { |
| | |
| | | $settings = $app->getconf->get_global_config('domains'); |
| | | if ($settings['use_domain_module'] == 'y') { |
| | | // get the record of the domain module domain |
| | | $domain = $app->db->queryOneRecord("SELECT * FROM domain WHERE domain_id = ".$app->functions->intval($this->dataRecord["sel_domain"])); |
| | | $domain = $app->tools_sites->checkDomainModuleDomain($this->dataRecord['sel_domain']); |
| | | if(!$domain) { |
| | | $app->tform->errorMessage .= $app->tform->lng("domain_error_empty")."<br />"; |
| | | } else { |
| | | $this->dataRecord['domain'] = $this->dataRecord['domain'] . '.' . $domain['domain']; |
| | | $this->dataRecord['domain'] = $this->dataRecord['domain'] . '.' . $domain; |
| | | } |
| | | } else { |
| | | $this->dataRecord["domain"] = $this->dataRecord["domain"].'.'.$parent_domain["domain"]; |
| | |
| | | $app->auth->check_module_permissions('sites'); |
| | | |
| | | // Loading classes |
| | | $app->uses('tpl,tform,tform_actions'); |
| | | $app->uses('tpl,tform,tform_actions,tools_sites'); |
| | | $app->load('tform_actions'); |
| | | |
| | | class page_action extends tform_actions { |
| | |
| | | /* |
| | | * The domain-module is in use. |
| | | */ |
| | | $client_group_id = $_SESSION["s"]["user"]["default_group"]; |
| | | /* |
| | | * The admin can select ALL domains, the user only the domains assigned to him |
| | | */ |
| | | $sql = "SELECT domain_id, domain FROM domain "; |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $sql .= "WHERE sys_groupid =" . $client_group_id; |
| | | } |
| | | $sql .= " ORDER BY domain"; |
| | | $domains = $app->db->queryAllRecords($sql); |
| | | $domains = $app->tools_sites->getDomainModuleDomains(); |
| | | $domain_select = ''; |
| | | $selected_domain = ''; |
| | | if(is_array($domains) && sizeof($domains) > 0) { |
| | |
| | | $app->uses('ini_parser,getconf'); |
| | | $settings = $app->getconf->get_global_config('domains'); |
| | | if ($settings['use_domain_module'] == 'y') { |
| | | $client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]); |
| | | |
| | | $sql = "SELECT domain_id, domain FROM domain WHERE domain_id = " . $app->functions->intval($this->dataRecord['sel_domain']); |
| | | if ($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $sql .= " AND sys_groupid =" . $client_group_id; |
| | | } |
| | | $domain_check = $app->db->queryOneRecord($sql); |
| | | $domain_check = $app->tools_sites->checkDomainModuleDomain($this->dataRecord['sel_domain']); |
| | | if(!$domain_check) { |
| | | // invalid domain selected |
| | | $app->tform->errorMessage .= $app->tform->lng("domain_error_empty")."<br />"; |
| | | } else { |
| | | $this->dataRecord['domain'] = $this->dataRecord['domain'] . '.' . $domain_check['domain']; |
| | | $this->dataRecord['domain'] = $this->dataRecord['domain'] . '.' . $domain_check; |
| | | } |
| | | } else { |
| | | $this->dataRecord["domain"] = $this->dataRecord["domain"].'.'.$parent_domain["domain"]; |
| | |
| | | |
| | | if ($this->dataRecord['username'] != "") { |
| | | /* REMOVE the restriction */ |
| | | $app->tpl->setVar("username", str_replace($webdavuser_prefix , '', $this->dataRecord['username'])); |
| | | $app->tpl->setVar("username", $app->tools_sites->removePrefix($this->dataRecord['username'], $this->dataRecord['username_prefix'], $webdavuser_prefix)); |
| | | } |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' || $app->auth->has_clients($_SESSION['s']['user']['userid'])) { |
| | | $app->tpl->setVar("username_prefix", $global_config['webdavuser_prefix']); |
| | | } else { |
| | | $app->tpl->setVar("username_prefix", $webdavuser_prefix); |
| | | } |
| | | |
| | | |
| | | $app->tpl->setVar("username_prefix", $app->tools_sites->getPrefix($this->dataRecord['username_prefix'], $webdavuser_prefix, $global_config['webdavuser_prefix'])); |
| | | |
| | | if($this->id > 0) { |
| | | //* we are editing a existing record |
| | | $app->tpl->setVar("edit_disabled", 1); |
| | |
| | | $global_config = $app->getconf->get_global_config('sites'); |
| | | $webdavuser_prefix = $app->tools_sites->replacePrefix($global_config['webdavuser_prefix'], $this->dataRecord); |
| | | |
| | | $this->dataRecord['username_prefix'] = $webdavuser_prefix; |
| | | |
| | | /* restrict the names */ |
| | | $this->dataRecord['username'] = $webdavuser_prefix . $this->dataRecord['username']; |
| | | |
| | |
| | | $data = $app->db->queryOneRecord("SELECT * FROM webdav_user WHERE webdav_user_id = ".$app->functions->intval($this->id)); |
| | | $this->dataRecord["username"] = $data['username']; |
| | | $this->dataRecord["dir"] = $data['dir']; |
| | | $this->dataRecord['username_prefix'] = $data['username_prefix']; |
| | | $passwordOld = $data['password']; |
| | | |
| | | /* |
| | |
| | | $wb['Settings'] = 'Configuraciones'; |
| | | $wb['ISPConfig Tools'] = 'Herramientas ISPConfig'; |
| | | $wb['Password and Language'] = 'Contraseña e Idioma'; |
| | | $wb['ispconfig_tools_note'] = 'Este módulo le permite cambiar la contraseña y el idioma y para iniciar una resincronización de los registros de DNS.'; |
| | | $wb['ispconfig_tools_note'] = 'Este módulo le permite cambiar la contraseña y el idioma e iniciar una resincronización de los registros DNS.'; |
| | | $wb['Resync'] = 'Resync'; |
| | | $wb['Sync Tools'] = 'Sync Tools'; |
| | | $wb['Import'] = 'Import'; |
| | | $wb['ISPConfig 3 mail'] = 'ISPConfig 3 mail'; |
| | | $wb['Sync Tools'] = 'Herramientas Sync'; |
| | | $wb['Import'] = 'Importar'; |
| | | $wb['ISPConfig 3 mail'] = 'Correo de ISPConfig 3'; |
| | | $wb['PDNS Tupa'] = 'PowerDNS Tupa'; |
| | | $wb['Interface'] = 'Interface'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Import email configuration from ISPConfig 3'; |
| | | $wb['legend_txt'] = 'Remote server connection details'; |
| | | $wb['legend2_txt'] = 'Import email domain'; |
| | | $wb['resync_sites_txt'] = 'Resync Websites'; |
| | | $wb['resync_ftp_txt'] = 'Resync FTP users'; |
| | | $wb['resync_shell_txt'] = 'Resync shell users'; |
| | | $wb['resync_cron_txt'] = 'Resync cronjobs'; |
| | | $wb['resync_db_txt'] = 'Resync clientdb config'; |
| | | $wb['resync_mailbox_txt'] = 'Resync Mailboxes'; |
| | | $wb['resync_dns_txt'] = 'Resync DNS records'; |
| | | $wb['btn_start_txt'] = 'Start Import'; |
| | | $wb['btn_connect_txt'] = 'Connect to remote server'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['client_group_id_txt'] = 'Local client'; |
| | | $wb['mail_domain_txt'] = 'Remote email domain'; |
| | | $wb['import_mailbox_txt'] = 'Import mailbox'; |
| | | $wb['import_aliasdomain_txt'] = 'Import alias domain'; |
| | | $wb['import_alias_txt'] = 'Import email alias'; |
| | | $wb['import_forward_txt'] = 'Import forward'; |
| | | $wb['import_user_filter_txt'] = 'Import user filter'; |
| | | $wb['import_spamfilter_txt'] = 'Import spamfilter'; |
| | | $wb['head_txt'] = 'Configuración del correo Importar de ISPConfig 3'; |
| | | $wb['legend_txt'] = 'Detalles de conexión remota del servidor'; |
| | | $wb['legend2_txt'] = 'Importar dominio de correo'; |
| | | $wb['resync_sites_txt'] = 'Resync: Sitios webs'; |
| | | $wb['resync_ftp_txt'] = 'Resync: Usuarios FTP'; |
| | | $wb['resync_shell_txt'] = 'Resync: Usuarios de shell'; |
| | | $wb['resync_cron_txt'] = 'Resync: cronjobs'; |
| | | $wb['resync_db_txt'] = 'Resync: clientdb config'; |
| | | $wb['resync_mailbox_txt'] = 'Resync: buzones de correo'; |
| | | $wb['resync_dns_txt'] = 'Resync: registros DNS '; |
| | | $wb['btn_start_txt'] = 'Comenzar importación'; |
| | | $wb['btn_connect_txt'] = 'Conectar al servidor remoto'; |
| | | $wb['btn_cancel_txt'] = 'Cancelar'; |
| | | $wb['client_group_id_txt'] = 'Cliente local'; |
| | | $wb['mail_domain_txt'] = 'Dominio de correo remoto'; |
| | | $wb['import_mailbox_txt'] = 'Importar buzón de correo'; |
| | | $wb['import_aliasdomain_txt'] = 'Importar alias de dominio'; |
| | | $wb['import_alias_txt'] = 'Importe alias de correo'; |
| | | $wb['import_forward_txt'] = 'Importar reenvio'; |
| | | $wb['import_user_filter_txt'] = 'Importar filtro de usuarios'; |
| | | $wb['import_spamfilter_txt'] = 'Importar filtro de spam'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Resync Tool'; |
| | | $wb['head_txt'] = 'Herramientas Resync'; |
| | | $wb['legend_txt'] = 'Resync'; |
| | | $wb['resync_sites_txt'] = 'Resync Websites'; |
| | | $wb['resync_ftp_txt'] = 'Resync FTP users'; |
| | | $wb['resync_shell_txt'] = 'Resync shell users'; |
| | | $wb['resync_sites_txt'] = 'Sitios webs Resync'; |
| | | $wb['resync_ftp_txt'] = 'Usuarios FTP de Resync'; |
| | | $wb['resync_shell_txt'] = 'Usuarios shell de Resync'; |
| | | $wb['resync_cron_txt'] = 'Resync cronjobs'; |
| | | $wb['resync_db_txt'] = 'Resync clientdb config'; |
| | | $wb['resync_mailbox_txt'] = 'Resync Mailboxes'; |
| | | $wb['resync_dns_txt'] = 'Resync DNS records'; |
| | | $wb['btn_start_txt'] = 'Start'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['resync_mailbox_txt'] = 'Resync Buzones de correo'; |
| | | $wb['resync_dns_txt'] = 'Resync DNS registros'; |
| | | $wb['btn_start_txt'] = 'Inicio'; |
| | | $wb['btn_cancel_txt'] = 'Cancelar'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['page_head_txt'] = 'ISPConfig Tools'; |
| | | $wb['page_desc_txt'] = 'Change user settings'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["interface_head_txt"] = 'Interface Settings'; |
| | | $wb["interface_desc_txt"] = 'Modify your interface'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["startmodule_txt"] = 'Startmodule'; |
| | | $wb["app_theme_txt"] = 'Design'; |
| | | ?> |
| | | $wb['interface_head_txt'] = 'Interface Settings'; |
| | | $wb['interface_desc_txt'] = 'Modify your interface'; |
| | | $wb['language_txt'] = 'Language'; |
| | | $wb['startmodule_txt'] = 'Startmodule'; |
| | | $wb['app_theme_txt'] = 'Design'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["tpl_default_head_txt"] = 'Default Theme settings'; |
| | | $wb["tpl_default_desc_txt"] = 'Modify default-theme specific options'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["startmodule_txt"] = 'Startmodule'; |
| | | $wb["app_theme_txt"] = 'Design'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Default Theme settings'; |
| | | $wb['list_desc_txt'] = 'Modify default-theme specific options'; |
| | | $wb['no_settings_txt'] = 'There are no settings for the default theme.'; |
| | | $wb['btn_start_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Back'; |
| | | ?> |
| | |
| | | 'target' => 'content', |
| | | 'link' => 'tools/dns_import_tupa.php'); |
| | | |
| | | /* not yet complete |
| | | $items[] = array( 'title' => 'Plesk', |
| | | 'target' => 'content', |
| | | 'link' => 'tools/import_plesk.php'); |
| | | |
| | | */ |
| | | |
| | | $module['nav'][] = array( 'title' => 'Import', |
| | | 'open' => 1, |
| | |
| | | <h2><tmpl_var name="list_head_txt">Import DNS recods from Tupa PowerDNS controlpanel</h2> |
| | | <h2><tmpl_var name="list_head_txt">Import DNS records from Tupa PowerDNS controlpanel</h2> |
| | | <p><tmpl_var name="list_desc_txt"></p> |
| | | |
| | | <div class="panel panel_tupa_import"> |
| | |
| | | <input id="dbpassword" type="text" value="{tmpl_var name='dbpassword'}" name="dbpassword" /> |
| | | </div> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <p class="label">Import DNS Records</p> |
| | | <div class="multiField"> |
| | | <input id="start" type="checkbox" value="1" name="start" checked/> |
| | | </div> |
| | | </div> |
| | | </fieldset> |
| | | |
| | | <tmpl_if name="msg"> |
| | |
| | | </tmpl_if> |
| | | |
| | | <input type="hidden" name="id" value="{tmpl_var name='id'}"> |
| | | <input type="hidden" name="start" value="1"> |
| | | |
| | | <div class="buttonHolder buttons"> |
| | | <button class="positive iconstxt icoPositive" type="button" value="Import" onClick="submitForm('pageForm','tools/dns_import_tupa.php');"><span>Start</span></button> |
| | |
| | | <?php |
| | | $wb['Virtual Servers'] = 'Virtual Servers'; |
| | | $wb['OS Templates'] = 'OS Templates'; |
| | | $wb['VM Templates'] = 'VM Templates'; |
| | | $wb['IP addresses'] = 'IP addresses'; |
| | | $wb['Virtual Servers'] = 'Virtuální server'; |
| | | $wb['OS Templates'] = 'Šablona OS'; |
| | | $wb['VM Templates'] = 'Šablona VM'; |
| | | $wb['IP addresses'] = 'IP adresy'; |
| | | $wb['OpenVZ'] = 'OpenVZ'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Hostserver'; |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['vm_id_txt'] = 'Virtual server'; |
| | | $wb['reserved_txt'] = 'Reserved'; |
| | | $wb['ip_error_wrong'] = 'Please fill in a valid IPv4 address.'; |
| | | $wb['ip_error_unique'] = 'This IP address does already exist.'; |
| | | $wb['IP address'] = 'IP address'; |
| | | $wb['server_id_txt'] = 'Hostitelský server'; |
| | | $wb['ip_address_txt'] = 'IP adresa'; |
| | | $wb['vm_id_txt'] = 'Virtuální server'; |
| | | $wb['reserved_txt'] = 'Rezervováno'; |
| | | $wb['ip_error_wrong'] = 'Prosím, vyplňte platné IPv4 adresy.'; |
| | | $wb['ip_error_unique'] = 'Tato IP adresa již existuje.'; |
| | | $wb['IP address'] = 'IP adresa'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'OpenVZ OSTemplate'; |
| | | $wb['list_head_txt'] = 'OpenVZ šablona OS'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | $wb['template_name_txt'] = 'Název šablony'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['allservers_txt'] = 'Exists on all servers'; |
| | | $wb['allservers_txt'] = 'Existuje na všech serverech'; |
| | | $wb['ostemplate_id_txt'] = 'ID'; |
| | | ?> |
| | |
| | | $wb['dcachesize_txt'] = 'Dcachesize'; |
| | | $wb['numiptent_txt'] = 'Numiptent'; |
| | | $wb['swappages_txt'] = 'Swappages'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameserver_txt'] = 'Nameserver(s)'; |
| | | $wb['nameserver_desc_txt'] = '(separated by whitespace)'; |
| | | $wb['capability_txt'] = 'Capability'; |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | $wb['diskspace_txt'] = 'Diskspace'; |
| | | $wb['ram_txt'] = 'RAM (guaranteed)'; |
| | | $wb['hostname_txt'] = 'Název hostitele (hostname)'; |
| | | $wb['nameserver_txt'] = 'Jmený server(y)'; |
| | | $wb['nameserver_desc_txt'] = '(oddělené mezerou)'; |
| | | $wb['capability_txt'] = 'Schopnost'; |
| | | $wb['template_name_txt'] = 'Název šablony'; |
| | | $wb['diskspace_txt'] = 'Velikost disku'; |
| | | $wb['ram_txt'] = 'RAM (garantovaná)'; |
| | | $wb['ram_burst_txt'] = 'RAM (burst)'; |
| | | $wb['cpu_units_txt'] = 'CPU units'; |
| | | $wb['cpu_num_txt'] = 'CPU cores'; |
| | |
| | | <?php |
| | | $wb['diskspace_txt'] = 'Diskspace'; |
| | | $wb['ram_txt'] = 'RAM (guaranteed)'; |
| | | $wb['diskspace_txt'] = 'Velikost disku'; |
| | | $wb['ram_txt'] = 'RAM (garantovaná)'; |
| | | $wb['ram_burst_txt'] = 'RAM (burst)'; |
| | | $wb['cpu_units_txt'] = 'CPU units'; |
| | | $wb['cpu_num_txt'] = 'CPU number'; |
| | | $wb['cpu_units_txt'] = 'CPU jednotka'; |
| | | $wb['cpu_num_txt'] = 'Počet CPU'; |
| | | $wb['cpu_limit_txt'] = 'CPU limit'; |
| | | $wb['io_priority_txt'] = 'I/O priority'; |
| | | $wb['nameserver_txt'] = 'Nameserver(s)'; |
| | | $wb['io_priority_txt'] = 'I/O priorita'; |
| | | $wb['nameserver_txt'] = 'Jmený server(y)'; |
| | | $wb['nameserver_desc_txt'] = '(separated by whitespace)'; |
| | | $wb['capability_txt'] = 'Capability'; |
| | | $wb['server_id_txt'] = 'Hostserver'; |
| | | $wb['ostemplate_id_txt'] = 'OSTemplate'; |
| | | $wb['template_id_txt'] = 'Template'; |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['vm_password_txt'] = 'VM Password'; |
| | | $wb['start_boot_txt'] = 'Start at boot'; |
| | | $wb['capability_txt'] = 'Schopnost'; |
| | | $wb['server_id_txt'] = 'Hostitelský server'; |
| | | $wb['ostemplate_id_txt'] = 'Šablona OS'; |
| | | $wb['template_id_txt'] = 'Šablona'; |
| | | $wb['ip_address_txt'] = 'IP adresa'; |
| | | $wb['hostname_txt'] = 'Název hostitele (hostname)'; |
| | | $wb['vm_password_txt'] = 'VM Heslo'; |
| | | $wb['start_boot_txt'] = 'Spuštění při startu'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['description_txt'] = 'Popis'; |
| | | $wb['client_group_id_txt'] = 'Klient'; |
| | | $wb['veid_txt'] = 'VEID'; |
| | | $wb['create_dns_txt'] = 'Create DNS for hostname'; |
| | | $wb['active_until_date_txt'] = 'Active until date'; |
| | | $wb['ip_address_error_empty'] = 'IP address is empty.'; |
| | | $wb['hostname_error_empty'] = 'Hostname is empty.'; |
| | | $wb['vm_password_error_empty'] = 'VM Password is empty.'; |
| | | $wb['veid_error_empty'] = 'VEID is empty.'; |
| | | $wb['veid_error_unique'] = 'VEID does already exist.'; |
| | | $wb['create_dns_txt'] = 'Vytvořte DNS pro hostitele'; |
| | | $wb['active_until_date_txt'] = 'Aktivní do data'; |
| | | $wb['ip_address_error_empty'] = 'IP adresa nebyla vyplněna.'; |
| | | $wb['hostname_error_empty'] = 'Název hostitele (hostname) nebylo zadáno.'; |
| | | $wb['vm_password_error_empty'] = 'VM Heslo nebylo zadáno.'; |
| | | $wb['veid_error_empty'] = 'VEID nebylo vyplněno.'; |
| | | $wb['veid_error_unique'] = 'VEID již existuje.'; |
| | | $wb['diskspace_error_empty'] = 'Diskspace is empty.'; |
| | | $wb['ram_error_empty'] = 'RAM (guaranteed) is empty.'; |
| | | $wb['ram_burst_error_empty'] = 'RAM (burst) is empty.'; |
| | | $wb['cpu_units_error_empty'] = 'CPU units is empty.'; |
| | | $wb['cpu_num_error_empty'] = 'CPU number is empty.'; |
| | | $wb['cpu_limit_error_empty'] = 'CPU limit is empty.'; |
| | | $wb['io_priority_error_empty'] = 'I/O priority is empty.'; |
| | | $wb['template_nameserver_error_empty'] = 'Nameserver(s) is empty.'; |
| | | $wb['Virtual server'] = 'Virtual server'; |
| | | $wb['Advanced'] = 'Advanced'; |
| | | $wb['cpu_num_error_empty'] = 'Počet CPU nebyl vyplněn.'; |
| | | $wb['cpu_limit_error_empty'] = 'CPU limit nebyl vyplněn.'; |
| | | $wb['io_priority_error_empty'] = 'I/O priorita nebyla vyplněna.'; |
| | | $wb['template_nameserver_error_empty'] = 'Jmený server(y) nebyl vyplněn.'; |
| | | $wb['Virtual server'] = 'Virtuální server'; |
| | | $wb['Advanced'] = 'Pokročilé nastavení'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Virtual server'; |
| | | $wb['list_head_txt'] = 'Virtuální server'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['server_id_txt'] = 'Hostserver'; |
| | | $wb['ostemplate_id_txt'] = 'OSTemplate'; |
| | | $wb['template_id_txt'] = 'Template'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['server_id_txt'] = 'Hostitelský server'; |
| | | $wb['ostemplate_id_txt'] = 'Šablona OS'; |
| | | $wb['template_id_txt'] = 'Šablona'; |
| | | $wb['hostname_txt'] = 'Název hostitele (hostname)'; |
| | | $wb['ip_address_txt'] = 'IP adresa'; |
| | | $wb['veid_txt'] = 'VEID'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['Virtual Servers'] = 'Virtual Servers'; |
| | | $wb['OS Templates'] = 'OS Templates'; |
| | | $wb['VM Templates'] = 'VM Templates'; |
| | | $wb['IP addresses'] = 'IP addresses'; |
| | | $wb['Virtual Servers'] = 'Servidor Virtual'; |
| | | $wb['OS Templates'] = 'OS Plantillas'; |
| | | $wb['VM Templates'] = 'VM Plantillas'; |
| | | $wb['IP addresses'] = 'IP dirección'; |
| | | $wb['OpenVZ'] = 'OpenVZ'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Virtual server actions for VM:'; |
| | | $wb['start_txt'] = 'Start virtual server'; |
| | | $wb['stop_txt'] = 'Stop virtual server'; |
| | | $wb['restart_txt'] = 'Restart virtual server'; |
| | | $wb['ostemplate_txt'] = 'Create OSTemplate'; |
| | | $wb['head_txt'] = 'Las acciones del servidor virtual de VM:'; |
| | | $wb['start_txt'] = 'Inicio del servidor virtual'; |
| | | $wb['stop_txt'] = 'Detener servidor virtual'; |
| | | $wb['restart_txt'] = 'Reinicie el servidor virtual'; |
| | | $wb['ostemplate_txt'] = 'Crear OSTemplate'; |
| | | $wb['ostemplate_desc_txt'] = '(example: debian-6.0-i386-custom)'; |
| | | $wb['btn_save_txt'] = 'Execute selected action'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['start_exec_txt'] = 'Start command has been sent to the VM host server. It may take a minute until the VM is started.'; |
| | | $wb['stop_exec_txt'] = 'Stop command has been sent to the VM host server. It may take a minute until the VM is stopped.'; |
| | | $wb['restart_exec_txt'] = 'Restart command has been sent to the VM host server. It may take a minute until the VM is restarted.'; |
| | | $wb['ostemplate_name_error'] = 'The OSTemplate name conatains unallowed characters.'; |
| | | $wb['ostemplate_name_unique_error'] = 'There is already a OSTemplate with that name.'; |
| | | $wb['ostemplate_exec_txt'] = 'The command to create a OSTemplate has been sent to the host server. It will take several minutes until the OSTemplate has been created.'; |
| | | $wb['btn_save_txt'] = 'Ejecuta la acción seleccionada'; |
| | | $wb['btn_cancel_txt'] = 'Cancelar'; |
| | | $wb['start_exec_txt'] = 'Comando de arranque ha sido enviada al servidor host VM. Se puede tomar un minuto hasta que la máquina virtual se inicia.'; |
| | | $wb['stop_exec_txt'] = 'Un comando de paro ha sido enviada al servidor host VM. Se puede tomar un minuto hasta que la máquina virtual se detiene.'; |
| | | $wb['restart_exec_txt'] = 'Reinicie comando se ha enviado al servidor host VM. Se puede tomar un minuto hasta que la máquina virtual se reinicia.'; |
| | | $wb['ostemplate_name_error'] = 'El nombre OSTemplate conatains caracteres no permitidos.'; |
| | | $wb['ostemplate_name_unique_error'] = 'Ya existe un OSTemplate con ese nombre.'; |
| | | $wb['ostemplate_exec_txt'] = 'El comando para crear una OSTemplate ha sido enviada al servidor host. Tomará varios minutos hasta que el OSTemplate se ha creado.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Hostserver'; |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['vm_id_txt'] = 'Virtual server'; |
| | | $wb['reserved_txt'] = 'Reserved'; |
| | | $wb['ip_error_wrong'] = 'Please fill in a valid IPv4 address.'; |
| | | $wb['ip_error_unique'] = 'This IP address does already exist.'; |
| | | $wb['IP address'] = 'IP address'; |
| | | $wb['server_id_txt'] = 'Nombre de maquina del servidor'; |
| | | $wb['ip_address_txt'] = 'IP dirección'; |
| | | $wb['vm_id_txt'] = 'Servidor Virtual'; |
| | | $wb['reserved_txt'] = 'Reservado'; |
| | | $wb['ip_error_wrong'] = 'Por favor, rellene una direcciíón IPv4 válida.'; |
| | | $wb['ip_error_unique'] = 'Esta dirección IP no existe.'; |
| | | $wb['IP address'] = 'IP dirección'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'OpenVZ IP addresses'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['reserved_txt'] = 'Reserved'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['ip_address_txt'] = 'Dirección IP'; |
| | | $wb['reserved_txt'] = 'Reservado'; |
| | | $wb['vm_id_txt'] = 'VM'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | $wb['template_file_txt'] = 'Template filename'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['allservers_txt'] = 'Exists on all servers'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['template_name_error_empty'] = 'Template name is empty.'; |
| | | $wb['template_file_error_empty'] = 'Template filename is empty.'; |
| | | $wb['Template'] = 'Template'; |
| | | $wb['template_name_txt'] = 'Nombre de las plantillas'; |
| | | $wb['template_file_txt'] = 'Nombre de la plantila del archivo'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['allservers_txt'] = 'Existe en todos los servidores'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['description_txt'] = 'Descripción'; |
| | | $wb['template_name_error_empty'] = 'Nombre de la plantilla está vacía.'; |
| | | $wb['template_file_error_empty'] = 'Nombre de archivo de plantilla está vacía.'; |
| | | $wb['Template'] = 'Plantilla'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'OpenVZ OSTemplate'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['allservers_txt'] = 'Exists on all servers'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['template_name_txt'] = 'Nombre de la plantilla'; |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['allservers_txt'] = 'Existe en todos los servidores'; |
| | | $wb['ostemplate_id_txt'] = 'ID'; |
| | | ?> |
| | |
| | | $wb['dcachesize_txt'] = 'Dcachesize'; |
| | | $wb['numiptent_txt'] = 'Numiptent'; |
| | | $wb['swappages_txt'] = 'Swappages'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['hostname_txt'] = 'Nombre de maquina'; |
| | | $wb['nameserver_txt'] = 'Nameserver(s)'; |
| | | $wb['nameserver_desc_txt'] = '(separated by whitespace)'; |
| | | $wb['capability_txt'] = 'Capability'; |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | $wb['diskspace_txt'] = 'Diskspace'; |
| | | $wb['ram_txt'] = 'RAM (guaranteed)'; |
| | | $wb['nameserver_desc_txt'] = '(separados por espacios en blanco)'; |
| | | $wb['capability_txt'] = 'Capacidad'; |
| | | $wb['template_name_txt'] = 'Nombre de plantilla'; |
| | | $wb['diskspace_txt'] = 'Espacio en disco'; |
| | | $wb['ram_txt'] = 'RAM (garantizado)'; |
| | | $wb['ram_burst_txt'] = 'RAM (burst)'; |
| | | $wb['cpu_units_txt'] = 'CPU units'; |
| | | $wb['cpu_num_txt'] = 'CPU cores'; |
| | | $wb['cpu_num_txt'] = 'CPU number'; |
| | | $wb['cpu_limit_txt'] = 'CPU limit %'; |
| | | $wb['io_priority_txt'] = 'I/O priority'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['io_priority_txt'] = 'I/O prioridad'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['description_txt'] = 'Descripción'; |
| | | $wb['numproc_desc_txt'] = 'Number of processes and threads.'; |
| | | $wb['numtcpsock_desc_txt'] = 'Number of TCP sockets.'; |
| | | $wb['numothersock_desc_txt'] = 'Number of sockets other than TCP.'; |
| | |
| | | $wb['tcprcvbuf_desc_txt'] = 'Total size of TCP receive buffers.'; |
| | | $wb['othersockbuf_desc_txt'] = 'Total size of UNIX-domain socket buffers, UDP and other datagram protocol send buffers.'; |
| | | $wb['dgramrcvbuf_desc_txt'] = 'Receive buffers of UDP and other datagram protocols.'; |
| | | $wb['oomguarpages_desc_txt'] = 'The guaranteed amount of memory for the case the memory is over-booked (out-of-memory kill guarantee), in pages.'; |
| | | $wb['oomguarpages_desc_txt'] = 'The guaranteed amount of memory for the case the memory is '; |
| | | $wb['privvmpages_desc_txt'] = 'Memory allocation limit, in pages.'; |
| | | $wb['lockedpages_desc_txt'] = 'Process pages not allowed to be swapped out (pages locked by mlock(2)).'; |
| | | $wb['shmpages_desc_txt'] = 'Total size of shared memory (IPC, shared anonymous mappings and tmpfs objects), in pages.'; |
| | |
| | | $wb['dcachesize_desc_txt'] = 'Total size of dentry and inode structures locked in memory.'; |
| | | $wb['numiptent_desc_txt'] = 'Number of NETFILTER (IP packet filtering) entries.'; |
| | | $wb['swappages_desc_txt'] = 'Amount of swap space to show in container.'; |
| | | $wb['create_dns_txt'] = 'Create DNS for hostname'; |
| | | $wb['template_name_error_empty'] = 'Template name is empty.'; |
| | | $wb['diskspace_error_empty'] = 'Diskspace is empty.'; |
| | | $wb['ram_error_empty'] = 'RAM (guaranteed) is empty.'; |
| | | $wb['ram_burst_error_empty'] = 'RAM (burst) is empty.'; |
| | | $wb['cpu_units_error_empty'] = 'CPU units is empty.'; |
| | | $wb['cpu_num_error_empty'] = 'CPU cores is empty.'; |
| | | $wb['cpu_limit_error_empty'] = 'CPU limit % is empty.'; |
| | | $wb['io_priority_error_empty'] = 'I/O priority is empty.'; |
| | | $wb['template_nameserver_error_empty'] = 'Nameserver(s) is empty.'; |
| | | $wb['numproc_error_empty'] = 'Numproc is empty.'; |
| | | $wb['create_dns_txt'] = 'Crear DNS para el nombre de maquina'; |
| | | $wb['template_name_error_empty'] = 'Nombre de la plantilla está vacía.'; |
| | | $wb['diskspace_error_empty'] = 'Espacio en disco está vacío.'; |
| | | $wb['ram_error_empty'] = 'RAM (guaranteed) esta vacío.'; |
| | | $wb['ram_burst_error_empty'] = 'RAM (burst) esta vacío.'; |
| | | $wb['cpu_units_error_empty'] = 'CPU units esta vacío.'; |
| | | $wb['cpu_num_error_empty'] = 'CPU cores esta vacío.'; |
| | | $wb['cpu_limit_error_empty'] = 'CPU limit % esta vacío.'; |
| | | $wb['io_priority_error_empty'] = 'I/O prioridad esta vacío.'; |
| | | $wb['template_nameserver_error_empty'] = 'Nameserver(s) esta vacío.'; |
| | | $wb['numproc_error_empty'] = 'Numproc esta vacío.'; |
| | | $wb['numtcpsock_error_empty'] = 'Numtcpsock is empty.'; |
| | | $wb['numothersock_error_empty'] = 'Numothersock is empty.'; |
| | | $wb['vmguarpages_error_empty'] = 'Vmguarpages is empty.'; |
| | | $wb['kmemsize_error_empty'] = 'Kmemsize is empty.'; |
| | | $wb['numothersock_error_empty'] = 'Numothersock esta vacío.'; |
| | | $wb['vmguarpages_error_empty'] = 'Vmguarpages esta vacío.'; |
| | | $wb['kmemsize_error_empty'] = 'Kmemsize esta vacío.'; |
| | | $wb['tcpsndbuf_error_empty'] = 'Tcpsndbuf is empty.'; |
| | | $wb['tcprcvbuf_error_empty'] = 'Tcprcvbuf is empty.'; |
| | | $wb['othersockbuf_error_empty'] = 'Othersockbuf is empty.'; |
| | | $wb['dgramrcvbuf_error_empty'] = 'Dgramrcvbuf is empty.'; |
| | | $wb['oomguarpages_error_empty'] = 'Oomguarpages is empty.'; |
| | | $wb['privvmpages_error_empty'] = 'Privvmpages is empty.'; |
| | | $wb['lockedpages_error_empty'] = 'Lockedpages is empty.'; |
| | | $wb['shmpages_error_empty'] = 'Shmpages is empty.'; |
| | | $wb['physpages_error_empty'] = 'Physpages is empty.'; |
| | | $wb['numfile_error_empty'] = 'Numfile is empty.'; |
| | | $wb['avnumproc_error_empty'] = 'Avnumproc is empty.'; |
| | | $wb['numflock_error_empty'] = 'Numflock is empty.'; |
| | | $wb['numpty_error_empty'] = 'Numpty is empty.'; |
| | | $wb['numsiginfo_error_empty'] = 'Numsiginfo is empty.'; |
| | | $wb['dcachesize_error_empty'] = 'Dcachesize is empty.'; |
| | | $wb['numiptent_error_empty'] = 'Numiptent is empty.'; |
| | | $wb['swappages_error_empty'] = 'Swappages is empty.'; |
| | | $wb['Template'] = 'Template'; |
| | | $wb['Advanced'] = 'Advanced'; |
| | | $wb['tcprcvbuf_error_empty'] = 'Tcprcvbuf esta vacío.'; |
| | | $wb['othersockbuf_error_empty'] = 'Othersockbuf esta vacío.'; |
| | | $wb['dgramrcvbuf_error_empty'] = 'Dgramrcvbuf esta vacío.'; |
| | | $wb['oomguarpages_error_empty'] = 'Oomguarpages esta vacío.'; |
| | | $wb['privvmpages_error_empty'] = 'Privvmpages esta vacío.'; |
| | | $wb['lockedpages_error_empty'] = 'Lockedpages esta vacío.'; |
| | | $wb['shmpages_error_empty'] = 'Shmpages esta vacío.'; |
| | | $wb['physpages_error_empty'] = 'Physpages esta vacío.'; |
| | | $wb['numfile_error_empty'] = 'Numfile esta vacío.'; |
| | | $wb['avnumproc_error_empty'] = 'Avnumproc esta vacío.'; |
| | | $wb['numflock_error_empty'] = 'Numflock esta vacío.'; |
| | | $wb['numpty_error_empty'] = 'Numpty esta vacío.'; |
| | | $wb['numsiginfo_error_empty'] = 'Numsiginfo esta vacío.'; |
| | | $wb['dcachesize_error_empty'] = 'Dcachesize esta vacío.'; |
| | | $wb['numiptent_error_empty'] = 'Numiptent esta vacío.'; |
| | | $wb['swappages_error_empty'] = 'Swappages esta vacío.'; |
| | | $wb['Template'] = 'Plantilla'; |
| | | $wb['Advanced'] = 'Avanzado'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'OpenVZ Virtual Machine Template'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['template_name_txt'] = 'Nombre de la plantilla'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['diskspace_txt'] = 'Diskspace'; |
| | | $wb['ram_txt'] = 'RAM (guaranteed)'; |
| | | $wb['diskspace_txt'] = 'Espacio en disco'; |
| | | $wb['ram_txt'] = 'RAM (garantizado)'; |
| | | $wb['ram_burst_txt'] = 'RAM (burst)'; |
| | | $wb['cpu_units_txt'] = 'CPU units'; |
| | | $wb['cpu_num_txt'] = 'CPU number'; |
| | | $wb['cpu_limit_txt'] = 'CPU limit'; |
| | | $wb['io_priority_txt'] = 'I/O priority'; |
| | | $wb['nameserver_txt'] = 'Nameserver(s)'; |
| | | $wb['nameserver_desc_txt'] = '(separated by whitespace)'; |
| | | $wb['capability_txt'] = 'Capability'; |
| | | $wb['cpu_units_txt'] = 'CPU unidades'; |
| | | $wb['cpu_num_txt'] = 'CPU número'; |
| | | $wb['cpu_limit_txt'] = 'CPU limite %'; |
| | | $wb['io_priority_txt'] = 'I/O prioridad'; |
| | | $wb['nameserver_txt'] = 'Nombre de servidor(s)'; |
| | | $wb['nameserver_desc_txt'] = '(separados por espacios en blanco)'; |
| | | $wb['capability_txt'] = 'Capacidad'; |
| | | $wb['server_id_txt'] = 'Hostserver'; |
| | | $wb['ostemplate_id_txt'] = 'OSTemplate'; |
| | | $wb['template_id_txt'] = 'Template'; |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['vm_password_txt'] = 'VM Password'; |
| | | $wb['start_boot_txt'] = 'Start at boot'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['template_id_txt'] = 'Plantilla'; |
| | | $wb['ip_address_txt'] = 'Dirección IP'; |
| | | $wb['hostname_txt'] = 'Nombre del host'; |
| | | $wb['vm_password_txt'] = 'VM Contraseña'; |
| | | $wb['start_boot_txt'] = 'Iniciar en el arranque'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['description_txt'] = 'Descripción'; |
| | | $wb['client_group_id_txt'] = 'Cliente'; |
| | | $wb['veid_txt'] = 'VEID'; |
| | | $wb['create_dns_txt'] = 'Create DNS for hostname'; |
| | | $wb['active_until_date_txt'] = 'Active until date'; |
| | | $wb['ip_address_error_empty'] = 'IP address is empty.'; |
| | | $wb['hostname_error_empty'] = 'Hostname is empty.'; |
| | | $wb['vm_password_error_empty'] = 'VM Password is empty.'; |
| | | $wb['veid_error_empty'] = 'VEID is empty.'; |
| | | $wb['veid_error_unique'] = 'VEID does already exist.'; |
| | | $wb['diskspace_error_empty'] = 'Diskspace is empty.'; |
| | | $wb['ram_error_empty'] = 'RAM (guaranteed) is empty.'; |
| | | $wb['ram_burst_error_empty'] = 'RAM (burst) is empty.'; |
| | | $wb['cpu_units_error_empty'] = 'CPU units is empty.'; |
| | | $wb['cpu_num_error_empty'] = 'CPU number is empty.'; |
| | | $wb['cpu_limit_error_empty'] = 'CPU limit is empty.'; |
| | | $wb['io_priority_error_empty'] = 'I/O priority is empty.'; |
| | | $wb['template_nameserver_error_empty'] = 'Nameserver(s) is empty.'; |
| | | $wb['Virtual server'] = 'Virtual server'; |
| | | $wb['Advanced'] = 'Advanced'; |
| | | $wb['create_dns_txt'] = 'Crear DNS para el nombre de host'; |
| | | $wb['active_until_date_txt'] = 'Activo hasta la fecha'; |
| | | $wb['ip_address_error_empty'] = 'Dirección IP está vacía.'; |
| | | $wb['hostname_error_empty'] = 'Nombre de la host está vacío.'; |
| | | $wb['vm_password_error_empty'] = 'Contraseña VM está vacía.'; |
| | | $wb['veid_error_empty'] = 'VEID está vacío.'; |
| | | $wb['veid_error_unique'] = 'VEID ya existe.'; |
| | | $wb['diskspace_error_empty'] = 'Espacio en disco está vacío.'; |
| | | $wb['ram_error_empty'] = 'RAM (garantizado) está vacío.'; |
| | | $wb['ram_burst_error_empty'] = 'RAM (burst) está vacío.'; |
| | | $wb['cpu_units_error_empty'] = 'CPU units está vacío.'; |
| | | $wb['cpu_num_error_empty'] = 'CPU number está vacío.'; |
| | | $wb['cpu_limit_error_empty'] = 'CPU limitestá vacío.'; |
| | | $wb['io_priority_error_empty'] = 'I/O priority está vacío.'; |
| | | $wb['template_nameserver_error_empty'] = 'Nameserver(s) está vacío.'; |
| | | $wb['Virtual server'] = 'Servidor virtual'; |
| | | $wb['Advanced'] = 'Avanzado'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Virtual server'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Hostserver'; |
| | | $wb['list_head_txt'] = 'Servidor Virtual'; |
| | | $wb['active_txt'] = 'Activar'; |
| | | $wb['server_id_txt'] = 'Servidor del host'; |
| | | $wb['ostemplate_id_txt'] = 'OSTemplate'; |
| | | $wb['template_id_txt'] = 'Template'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['template_id_txt'] = 'Plantilla'; |
| | | $wb['hostname_txt'] = 'Nombre del host'; |
| | | $wb['ip_address_txt'] = 'Dirección IP'; |
| | | $wb['veid_txt'] = 'VEID'; |
| | | ?> |
| | |
| | | <p><a href="sites_database_get.html" target="content">sites_database_get</a></p> |
| | | <p><a href="sites_database_get_all_by_user.html" target="content">sites_database_get_all_by_user</a></p> |
| | | <p><a href="sites_database_update.html" target="content">sites_database_update</a></p> |
| | | <p><a href="sites_database_user_add.html" target="content">sites_database_user_add</a></p> |
| | | <p><a href="sites_database_user_delete.html" target="content">sites_database_user_delete</a></p> |
| | | <p><a href="sites_database_user_get.html" target="content">sites_database_user_get</a></p> |
| | | <p><a href="sites_database_user_update.html" target="content">sites_database_user_update</a></p> |
| | | <p><a href="sites_ftp_user_add.html" target="content">sites_ftp_user_add</a></p> |
| | | <p><a href="sites_ftp_user_delete.html" target="content">sites_ftp_user_delete</a></p> |
| | | <p><a href="sites_ftp_user_get.html" target="content">sites_ftp_user_get</a></p> |
| | |
| | | <p class="margin"> server_id (<span class="paratype">int(11)</span>)</p> |
| | | <p class="margin"> type (<span class="paratype">varchar(16)</span>)</p> |
| | | <p class="margin"> database_name (<span class="paratype">varchar(64)</span>)</p> |
| | | <p class="margin"> database_user (<span class="paratype">varchar(64)</span>)</p> |
| | | <p class="margin"> database_user_id (<span class="paratype">int(11)</span>)</p> |
| | | <p class="margin"> database_ro_user_id (<span class="paratype">int(11)</span>)</p> |
| | | <p class="margin"> database_password (<span class="paratype">varchar(64)</span>)</p> |
| | | <p class="margin"> database_charset (<span class="paratype">varchar(64)</span>)</p> |
| | | <p class="margin"> remote_access (<span class="paratype">enum('n','y')</span>)</p> |
| | | <p class="margin"> remote_ips (<span class="paratype">text</span>)</p> |
| | | <p class="margin"> backup_interval (<span class="paratype">varchar(255)</span>)</p> |
| | | <p class="margin"> backup_copies (<span class="paratype">int(11)</span>)</p> |
| | | <p class="margin"> active (<span class="paratype">enum('n','y')</span>)</p> |
| | | <p class="headgrp">Output: </p> |
| | | <p class="margin"> Returns the ID of the newly added database.</p> |
New file |
| | |
| | | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| | | <html><head><title>ISPCOnfig 3 remote API documentation</title> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| | | <link rel="stylesheet" type="text/css" href="definitionen.css"> |
| | | <style type="text/css"> |
| | | </style></head> |
| | | |
| | | <body> |
| | | <div style="padding:40px"> |
| | | <h1>sites_database_user_add(<span class="var">$session_id</span>, <span class="var">$client_id</span>, <span class="var">$params</span>);</h1> |
| | | <br> |
| | | <p class="headgrp">Description: </p> |
| | | <p class="margin"> Adds a new database user.</p><br> |
| | | <p class="headgrp">Input Variables: </p> |
| | | <p class="margin"> <span class="var">$session_id</span>, <span class="var">$client_id</span>, <span class="var">$params</span></p> |
| | | <p class="headgrp">Parameters (in <span class="var">$params</span>): </p> |
| | | <p class="margin"> server_id (<span class="paratype">int(11)</span>)</p> |
| | | <p class="margin"> database_user (<span class="paratype">varchar(64)</span>)</p> |
| | | <p class="margin"> database_password (<span class="paratype">varchar(64)</span>)</p> |
| | | <p class="headgrp">Output: </p> |
| | | <p class="margin"> Returns the ID of the newly added database.</p> |
| | | <!--<b>Output:</b> |
| | | <p style="margin-left:100px">Gives a record of </p> --> |
| | | </div> |
| | | |
| | | </body></html> |
New file |
| | |
| | | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| | | <html><head><title>ISPCOnfig 3 remote API documentation</title> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| | | <link rel="stylesheet" type="text/css" href="definitionen.css"> |
| | | <style type="text/css"> |
| | | </style></head> |
| | | |
| | | <body> |
| | | <div style="padding:40px"> |
| | | <h1>sites_database_user_delete(<span class="var">$session_id</span>, <span class="var">$primary_id</span>);</h1> |
| | | <br> |
| | | <p class="headgrp">Description: </p> |
| | | <p class="margin"> Deletes a database user.</p><br> |
| | | <p class="headgrp">Input Variables: </p> |
| | | <p class="margin"> <span class="var">$session_id</span>, <span class="var">$primary_id</span></p> |
| | | <p class="headgrp">Parameters (in <span class="var">$params</span>): </p> |
| | | <p class="margin">None</p> |
| | | <p class="headgrp">Output: </p> |
| | | <p class="margin"> Returns the number of deleted records.</p> |
| | | <!--<b>Output:</b> |
| | | <p style="margin-left:100px">Gives a record of </p> --> |
| | | </div> |
| | | |
| | | </body></html> |
New file |
| | |
| | | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| | | <html><head><title>ISPCOnfig 3 remote API documentation</title> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| | | <link rel="stylesheet" type="text/css" href="definitionen.css"> |
| | | <style type="text/css"> |
| | | </style></head> |
| | | |
| | | <body> |
| | | <div style="padding:40px"> |
| | | <h1>sites_database_user_get(<span class="var">$session_id</span>, <span class="var">$primary_id</span>);</h1> |
| | | <br> |
| | | <p class="headgrp">Description: </p> |
| | | <p class="margin"> Retrieves information about a database.</p><br> |
| | | <p class="headgrp">Input Variables: </p> |
| | | <p class="margin"> <span class="var">$session_id</span>, <span class="var">$primary_id</span></p> |
| | | <p class="headgrp">Parameters (in <span class="var">$params</span>): </p> |
| | | <p class="margin"> None</p> |
| | | <p class="headgrp">Output: </p> |
| | | <p class="margin"> Returns all fields and values of the chosen database.</p> |
| | | <!--<b>Output:</b> |
| | | <p style="margin-left:100px">Gives a record of </p> --> |
| | | </div> |
| | | |
| | | </body></html> |
New file |
| | |
| | | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| | | <html><head><title>ISPCOnfig 3 remote API documentation</title> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| | | <link rel="stylesheet" type="text/css" href="definitionen.css"> |
| | | <style type="text/css"> |
| | | </style></head> |
| | | |
| | | <body> |
| | | <div style="padding:40px"> |
| | | <h1>sites_database_user_update(<span class="var">$session_id</span>, <span class="var">$client_id</span>, <span class="var">$primary_id</span>, <span class="var">$params</span>);</h1> |
| | | <br> |
| | | <b>Description: </b> |
| | | <p class="margin"> Updates a database.</p><br> |
| | | <b>Input Variables: </b> |
| | | <p class="margin"> <span class="var">$session_id</span>, <span class="var">$client_id</span>, <span class="var">$primary_id</span>, <span class="var">$params</span></p> |
| | | <b>Parameters (in <span style= "color:#A17FFF">$params</span>): </b> |
| | | <p class="margin"> server_id (<span class="paratype">int(11)</span>)</p> |
| | | <p class="margin"> database_name (<span class="paratype">varchar(64)</span>)</p> |
| | | <p class="margin"> database_password (<span class="paratype">varchar(64)</span>)</p> |
| | | <b>Output: </b> |
| | | <p class="margin"> Returns the number of affected rows.</p> |
| | | <!--<b>Output:</b> |
| | | <p style="margin-left:100px">Gives a record of </p> --> |
| | | </div> |
| | | |
| | | </body></html> |
| | |
| | | 'server_id' => 1, |
| | | 'type' => 'mysql', |
| | | 'database_name' => 'db_name2', |
| | | 'database_user' => 'db_name2', |
| | | 'database_password' => 'db_name2', |
| | | 'database_user_id' => '1', |
| | | 'database_ro_user_id' => '0', |
| | | 'database_charset' => 'UTF8', |
| | | 'remote_access' => 'y', |
| | | 'remote_ips' => '', |
| | | 'backup_interval' => 'none', |
| | | 'backup_copies' => 1, |
| | | 'active' => 'y' |
| | | ); |
| | | |
New file |
| | |
| | | <?php |
| | | |
| | | require('soap_config.php'); |
| | | |
| | | |
| | | $client = new SoapClient(null, array('location' => $soap_location, |
| | | 'uri' => $soap_uri, |
| | | 'trace' => 1, |
| | | 'exceptions' => 1)); |
| | | |
| | | |
| | | try { |
| | | if($session_id = $client->login($username,$password)) { |
| | | echo 'Logged successfull. Session ID:'.$session_id.'<br />'; |
| | | } |
| | | |
| | | //* Set the function parameters. |
| | | $client_id = 1; |
| | | $params = array( |
| | | 'server_id' => 1, |
| | | 'database_user' => 'db_name2', |
| | | 'database_password' => 'db_name2' |
| | | ); |
| | | |
| | | $database_id = $client->sites_database_user_add($session_id, $client_id, $params); |
| | | |
| | | echo "Database ID: ".$database_user_id."<br>"; |
| | | |
| | | if($client->logout($session_id)) { |
| | | echo 'Logged out.<br />'; |
| | | } |
| | | |
| | | |
| | | } catch (SoapFault $e) { |
| | | echo $client->__getLastResponse(); |
| | | die('SOAP Error: '.$e->getMessage()); |
| | | } |
| | | |
| | | ?> |
New file |
| | |
| | | <?php |
| | | |
| | | require('soap_config.php'); |
| | | |
| | | |
| | | $client = new SoapClient(null, array('location' => $soap_location, |
| | | 'uri' => $soap_uri, |
| | | 'trace' => 1, |
| | | 'exceptions' => 1)); |
| | | |
| | | |
| | | try { |
| | | if($session_id = $client->login($username,$password)) { |
| | | echo 'Logged successfull. Session ID:'.$session_id.'<br />'; |
| | | } |
| | | |
| | | //* Parameters |
| | | $database_user_id = 1; |
| | | |
| | | |
| | | //* Get the database record |
| | | $affected_rows = $client->sites_database_user_delete($session_id, $database_user_id); |
| | | |
| | | echo "Number of records that have been deleted: ".$affected_rows."<br>"; |
| | | |
| | | if($client->logout($session_id)) { |
| | | echo 'Logged out.<br />'; |
| | | } |
| | | |
| | | |
| | | } catch (SoapFault $e) { |
| | | echo $client->__getLastResponse(); |
| | | die('SOAP Error: '.$e->getMessage()); |
| | | } |
| | | |
| | | ?> |
New file |
| | |
| | | <?php |
| | | |
| | | require('soap_config.php'); |
| | | |
| | | |
| | | $client = new SoapClient(null, array('location' => $soap_location, |
| | | 'uri' => $soap_uri, |
| | | 'trace' => 1, |
| | | 'exceptions' => 1)); |
| | | |
| | | |
| | | try { |
| | | if($session_id = $client->login($username,$password)) { |
| | | echo 'Logged successfull. Session ID:'.$session_id.'<br />'; |
| | | } |
| | | |
| | | //* Set the function parameters. |
| | | $database_user_id = 1; |
| | | |
| | | $database_record = $client->sites_database_user_get($session_id, $database_user_id); |
| | | |
| | | print_r($database_record); |
| | | |
| | | if($client->logout($session_id)) { |
| | | echo 'Logged out.<br />'; |
| | | } |
| | | |
| | | |
| | | } catch (SoapFault $e) { |
| | | echo $client->__getLastResponse(); |
| | | die('SOAP Error: '.$e->getMessage()); |
| | | } |
| | | |
| | | ?> |
New file |
| | |
| | | <?php |
| | | |
| | | require('soap_config.php'); |
| | | |
| | | |
| | | $client = new SoapClient(null, array('location' => $soap_location, |
| | | 'uri' => $soap_uri, |
| | | 'trace' => 1, |
| | | 'exceptions' => 1)); |
| | | |
| | | |
| | | try { |
| | | if($session_id = $client->login($username,$password)) { |
| | | echo 'Logged successfull. Session ID:'.$session_id.'<br />'; |
| | | } |
| | | |
| | | //* Parameters |
| | | $database_user_id = 1; |
| | | $client_id = 1; |
| | | |
| | | |
| | | //* Get the database record |
| | | $database_user_record = $client->sites_database_user_get($session_id, $database_user_id); |
| | | |
| | | //* Change password of the database user |
| | | $database_user_record['database_password'] = 'abcde'; |
| | | |
| | | $affected_rows = $client->sites_database_user_update($session_id, $client_id, $database_user_id, $database_user_record); |
| | | |
| | | echo "Number of records that have been changed in the database: ".$affected_rows."<br>"; |
| | | |
| | | if($client->logout($session_id)) { |
| | | echo 'Logged out.<br />'; |
| | | } |
| | | |
| | | |
| | | } catch (SoapFault $e) { |
| | | echo $client->__getLastResponse(); |
| | | die('SOAP Error: '.$e->getMessage()); |
| | | } |
| | | |
| | | ?> |
New file |
| | |
| | | <tmpl_loop name="vhosts"> |
| | | server { |
| | | |
| | | ###################################################################### |
| | | ## Server configuration |
| | | ###################################################################### |
| | | |
| | | # Tell nginx to listen on port <tmpl_var name='port'> (default http(s) port, IPv4) |
| | | listen <tmpl_var name='ip_address'>:<tmpl_var name='port'>; |
| | | |
| | | <tmpl_if name='ipv6_enabled'> |
| | | # Tell nginx to listen on port <tmpl_var name='port'> (default http(s) port, IPv6) |
| | | listen [<tmpl_var name='ipv6_address'>]:<tmpl_var name='port'> ipv6only=on; |
| | | </tmpl_if> |
| | | |
| | | server_name <tmpl_var name='domain'> <tmpl_if name='alias'><tmpl_var name='alias'></tmpl_if> <tmpl_if name='ip_address' op='!=' value='*'><tmpl_var name='ip_address'></tmpl_if>; |
| | | |
| | | ###################################################################### |
| | | ## Log configuration |
| | | ###################################################################### |
| | | |
| | | access_log /var/log/ispconfig/httpd/<tmpl_var name='domain'>/access.log combined; |
| | | error_log /var/log/ispconfig/httpd/<tmpl_var name='domain'>/error.log; |
| | | |
| | | <tmpl_if name='ssl_enabled'> |
| | | ###################################################################### |
| | | ## SSL configuration |
| | | ###################################################################### |
| | | |
| | | ssl on; |
| | | ssl_certificate <tmpl_var name='web_document_root_ssl'>/<tmpl_var name='ssl_domain'>.nginx.crt; |
| | | ssl_certificate_key <tmpl_var name='web_document_root_ssl'>/<tmpl_var name='ssl_domain'>.nginx.key; |
| | | </tmpl_if> |
| | | |
| | | ###################################################################### |
| | | ## Redirects configuration |
| | | ###################################################################### |
| | | |
| | | <tmpl_if name='seo_redirect_enabled'> |
| | | # SEO Redirect |
| | | if ($http_host = "<tmpl_var name='seo_redirect_origin_domain'>") { |
| | | rewrite ^ $scheme://<tmpl_var name='seo_redirect_target_domain'>$request_uri permanent; |
| | | } |
| | | </tmpl_if> |
| | | |
| | | <tmpl_if name='rewrite_enabled'> |
| | | <tmpl_loop name="redirects"> |
| | | # Redirects |
| | | #if ($http_host ~* "<tmpl_var name='rewrite_domain'>$") { |
| | | # rewrite ^/(.+)$ <tmpl_var name='rewrite_target'>$1 <tmpl_var name='rewrite_type'>; |
| | | #} |
| | | </tmpl_loop> |
| | | </tmpl_if> |
| | | |
| | | ###################################################################### |
| | | ## Error configuration |
| | | ###################################################################### |
| | | |
| | | error_page 400 /error/400.html; |
| | | error_page 401 /error/401.html; |
| | | error_page 403 /error/403.html; |
| | | error_page 404 /error/404.html; |
| | | error_page 405 /error/405.html; |
| | | error_page 500 /error/500.html; |
| | | error_page 502 /error/502.html; |
| | | error_page 503 /error/503.html; |
| | | |
| | | ###################################################################### |
| | | ## Locations configuration |
| | | ###################################################################### |
| | | |
| | | location / { |
| | | |
| | | # disable access log (we already have it for nginx) |
| | | access_log off; |
| | | |
| | | # set the document root |
| | | root <tmpl_var name='web_document_root_www'>; |
| | | |
| | | # cache apache2's answers in the cache |
| | | proxy_cache nginx_cache; |
| | | |
| | | # pass all requests to apache2 |
| | | <tmpl_if name='seo_redirect_enabled'> |
| | | proxy_pass http://<tmpl_if name='ip_address' op='!=' value='*'><tmpl_var name='ip_address'><tmpl_else><tmpl_var name='seo_redirect_target_domain'></tmpl_if>:<tmpl_var name='apache2_port'>; |
| | | <tmpl_else> |
| | | proxy_pass http://<tmpl_if name='ip_address' op='!=' value='*'><tmpl_var name='ip_address'><tmpl_else><tmpl_var name='domain'></tmpl_if>:<tmpl_var name='apache2_port'>; |
| | | </tmpl_if> |
| | | |
| | | } |
| | | |
| | | location ~ /\. { |
| | | |
| | | # Don't allow any access |
| | | deny all; |
| | | |
| | | # Don't log access |
| | | access_log off; |
| | | |
| | | } |
| | | |
| | | ###################################################################### |
| | | ## Directives configuration |
| | | ###################################################################### |
| | | |
| | | <tmpl_loop name="nginx_directives"> |
| | | <tmpl_var name='nginx_directive'> |
| | | </tmpl_loop> |
| | | |
| | | ###################################################################### |
| | | ## CP configuration |
| | | ###################################################################### |
| | | |
| | | # If domain.tld/ispconfig is requested, redirect to the secure ISPConfig URL |
| | | location = /ispconfig { rewrite ^ <tmpl_var name='cp_base_url'>/ permanent; } |
| | | |
| | | # If domain.tld/phpmyadmin is requested, redirect to the secure phpMyAdmin URL |
| | | location = /phpmyadmin { rewrite ^ <tmpl_var name='cp_base_url'>/phpmyadmin/ permanent; } |
| | | |
| | | # If domain.tld/webmail is requested, redirect to the secure RoundCube Webmail URL |
| | | location = /webmail { rewrite ^ <tmpl_var name='cp_base_url'>/webmail/ permanent; } |
| | | |
| | | } |
| | | |
| | | </tmpl_loop> |
| | |
| | | </tmpl_if> |
| | | <tmpl_if name='php' op='==' value='php-fpm'> |
| | | <IfModule mod_fastcgi.c> |
| | | <Directory /usr/lib/cgi-bin> |
| | | <Directory {tmpl_var name='document_root'}/cgi-bin> |
| | | Order allow,deny |
| | | Allow from all |
| | | </Directory> |
| | |
| | | } |
| | | |
| | | //* Send email to client |
| | | if($web_config['overtraffic_notify_admin'] == 'y') { |
| | | if($web_config['overtraffic_notify_client'] == 'y') { |
| | | $client_group_id = $rec["sys_groupid"]; |
| | | $client = $app->db->queryOneRecord("SELECT client.email FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id"); |
| | | if($client['email'] != '') { |
| | |
| | | |
| | | $web_id = $rec['parent_domain_id']; |
| | | $db_backup_dir = $backup_dir.'/web'.$web_id; |
| | | if(!is_dir($web_backup_dir)) mkdir($web_backup_dir, 0750); |
| | | chmod($web_backup_dir, 0750); |
| | | chown($web_backup_dir, 'root'); |
| | | chgrp($web_backup_dir, 'root'); |
| | | if(!is_dir($db_backup_dir)) mkdir($db_backup_dir, 0750); |
| | | chmod($db_backup_dir, 0750); |
| | | chown($db_backup_dir, 'root'); |
| | | chgrp($db_backup_dir, 'root'); |
| | | |
| | | //* Do the mysql database backup with mysqldump |
| | | $db_id = $rec['database_id']; |
| | |
| | | $db_id = parent::getXPathValue($sxe, '//db:id');
|
| | | if(empty($db_id)) return; // No database needed
|
| | |
|
| | | /*
|
| | | /* WARNING: if this will ever be uncommented please check the updated prefix handling for user and db names!!!
|
| | | * |
| | | // Set the database owner to the domain owner
|
| | | // ISPConfig identifies the owner by the sys_groupid (not sys_userid!)
|
| | | // so sys_userid can be set to any value
|
| | |
| | | |
| | | $rand_file = escapeshellcmd($rand_file); |
| | | $key_file = escapeshellcmd($key_file); |
| | | if(substr($domain, 0, 2) == '*.' && strpos($key_file, '/ssl/\*.') != false) $key_file = str_replace('/ssl/\*.', '/ssl/*.', $key_file); // wildcard certificate |
| | | $key_file2 = escapeshellcmd($key_file2); |
| | | if(substr($domain, 0, 2) == '*.' && strpos($key_file2, '/ssl/\*.') != false) $key_file2 = str_replace('/ssl/\*.', '/ssl/*.', $key_file2); // wildcard certificate |
| | | $ssl_days = 3650; |
| | | $csr_file = escapeshellcmd($csr_file); |
| | | if(substr($domain, 0, 2) == '*.' && strpos($csr_file, '/ssl/\*.') != false) $csr_file = str_replace('/ssl/\*.', '/ssl/*.', $csr_file); // wildcard certificate |
| | | $config_file = escapeshellcmd($ssl_cnf_file); |
| | | $crt_file = escapeshellcmd($crt_file); |
| | | if(substr($domain, 0, 2) == '*.' && strpos($crt_file, '/ssl/\*.') != false) $crt_file = str_replace('/ssl/\*.', '/ssl/*.', $crt_file); // wildcard certificate |
| | | |
| | | if(is_file($ssl_cnf_file) && !is_link($ssl_cnf_file)) { |
| | | |
| | |
| | | |
| | | //* Create new base directory, if it does not exist yet |
| | | if(!is_dir($new_dir)) $app->system->mkdirpath($new_dir); |
| | | //exec('mv '.$data['old']['document_root'].' '.$new_dir); |
| | | $app->system->rename($data['old']['document_root'],$new_dir); |
| | | exec('mv '.escapeshellarg($data['old']['document_root']).' '.escapeshellarg($new_dir)); |
| | | //$app->system->rename($data['old']['document_root'],$new_dir); |
| | | $app->log('Moving site to new document root: mv '.$data['old']['document_root'].' '.$new_dir,LOGLEVEL_DEBUG); |
| | | |
| | | // Handle the change in php_open_basedir |
| | |
| | | exec($command); |
| | | |
| | | if($apache_chrooted) $this->_exec('chroot '.escapeshellcmd($web_config['website_basedir']).' '.$command); |
| | | |
| | | |
| | | //* Change the log mount |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['new']['domain'].' '.$data['new']['document_root'].'/'.$log_folder.' none bind,nobootwait 0 0'; |
| | | $app->system->replaceLine('/etc/fstab',$fstab_line,$fstab_line,1,1); |
| | | |
| | | } |
| | | |
| | |
| | | if($this->action == 'update' && $data['old']['domain'] != '' && $data['new']['domain'] != $data['old']['domain']) { |
| | | if(is_dir('/var/log/ispconfig/httpd/'.$data['old']['domain'])) exec('rm -rf /var/log/ispconfig/httpd/'.$data['old']['domain']); |
| | | if(is_link($data['old']['document_root'].'/'.$log_folder)) $app->system->unlink($data['old']['document_root'].'/'.$log_folder); |
| | | |
| | | //* remove old log mount |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | |
| | | //* Unmount log directory |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | } |
| | | |
| | | //* Create the log dir if nescessary and mount it |
| | | if(!is_dir('/var/log/ispconfig/httpd/'.$data['new']['domain'])) exec('mkdir -p /var/log/ispconfig/httpd/'.$data['new']['domain']); |
| | | if(!is_dir($data['new']['document_root'].'/'.$log_folder) || is_link($data['new']['document_root'].'/'.$log_folder)) { |
| | | if(!is_dir($data['new']['document_root'].'/'.$log_folder) || !is_dir('/var/log/ispconfig/httpd/'.$data['new']['domain']) || is_link($data['new']['document_root'].'/'.$log_folder)) { |
| | | if(is_link($data['new']['document_root'].'/'.$log_folder)) unlink($data['new']['document_root'].'/'.$log_folder); |
| | | if(!is_dir('/var/log/ispconfig/httpd/'.$data['new']['domain'])) exec('mkdir -p /var/log/ispconfig/httpd/'.$data['new']['domain']); |
| | | $app->system->mkdirpath($data['new']['document_root'].'/'.$log_folder); |
| | | $app->system->chown($data['new']['document_root'].'/'.$log_folder,'root'); |
| | | $app->system->chgrp($data['new']['document_root'].'/'.$log_folder,'root'); |
| | | $app->system->chmod($data['new']['document_root'].'/'.$log_folder,0755); |
| | | exec('mount --bind '.escapeshellarg('/var/log/ispconfig/httpd/'.$data['new']['domain']).' '.escapeshellarg($data['new']['document_root'].'/'.$log_folder)); |
| | | //* add mountpoint to fstab |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['new']['domain'].' '.$data['new']['document_root'].'/'.$log_folder.' none bind 0 0'; |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['new']['domain'].' '.$data['new']['document_root'].'/'.$log_folder.' none bind,nobootwait 0 0'; |
| | | $app->system->replaceLine('/etc/fstab',$fstab_line,$fstab_line,1,1); |
| | | } |
| | | |
| | |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | |
| | | //* remove mountpoint from fstab |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind 0 0'; |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | |
| | | if($data['old']['type'] != 'vhost' && $data['old']['type'] != 'vhostsubdomain' && $data['old']['parent_domain_id'] > 0) { |
| | |
| | | {
|
| | | global $app, $conf;
|
| | |
|
| | | //* dont run the installer on a mirror server to prevent
|
| | | // that the pplication gets installed twice.
|
| | | if($conf['mirror_server_id'] > 0) return true;
|
| | | |
| | | $app->log("Starting APS install",LOGLEVEL_DEBUG);
|
| | | if(!isset($data['new']['id'])) return false;
|
| | | $instanceid = $data['new']['id'];
|
| | |
| | | $host_list = ''; |
| | | if($data['new']['remote_access'] == 'y') { |
| | | $host_list = $data['new']['remote_ips']; |
| | | if($host_list == '') $host_list = '%'; |
| | | } |
| | | if($host_list != '') $host_list .= ','; |
| | | $host_list .= 'localhost'; |
| | |
| | | $host_list = ''; |
| | | if($data['new']['remote_access'] == 'y') { |
| | | $host_list = $data['new']['remote_ips']; |
| | | if($host_list == '') $host_list = '%'; |
| | | } |
| | | if($host_list != '') $host_list .= ','; |
| | | $host_list .= 'localhost'; |
| | |
| | | |
| | | $rand_file = escapeshellcmd($rand_file); |
| | | $key_file = escapeshellcmd($key_file); |
| | | if(substr($domain, 0, 2) == '*.' && strpos($key_file, '/ssl/\*.') != false) $key_file = str_replace('/ssl/\*.', '/ssl/*.', $key_file); // wildcard certificate |
| | | $key_file2 = escapeshellcmd($key_file2); |
| | | if(substr($domain, 0, 2) == '*.' && strpos($key_file2, '/ssl/\*.') != false) $key_file2 = str_replace('/ssl/\*.', '/ssl/*.', $key_file2); // wildcard certificate |
| | | $ssl_days = 3650; |
| | | $csr_file = escapeshellcmd($csr_file); |
| | | if(substr($domain, 0, 2) == '*.' && strpos($csr_file, '/ssl/\*.') != false) $csr_file = str_replace('/ssl/\*.', '/ssl/*.', $csr_file); // wildcard certificate |
| | | $config_file = escapeshellcmd($ssl_cnf_file); |
| | | $crt_file = escapeshellcmd($crt_file); |
| | | if(substr($domain, 0, 2) == '*.' && strpos($crt_file, '/ssl/\*.') != false) $crt_file = str_replace('/ssl/\*.', '/ssl/*.', $crt_file); // wildcard certificate |
| | | |
| | | if(is_file($ssl_cnf_file) && !is_link($ssl_cnf_file)) { |
| | | |
| | |
| | | |
| | | //* Create new base directory, if it does not exist yet |
| | | if(!is_dir($new_dir)) $app->system->mkdirpath($new_dir); |
| | | //exec('mv '.$data['old']['document_root'].' '.$new_dir); |
| | | $app->system->rename($data['old']['document_root'],$new_dir); |
| | | exec('mv '.escapeshellarg($data['old']['document_root']).' '.escapeshellarg($new_dir)); |
| | | //$app->system->rename($data['old']['document_root'],$new_dir); |
| | | $app->log('Moving site to new document root: mv '.$data['old']['document_root'].' '.$new_dir,LOGLEVEL_DEBUG); |
| | | |
| | | // Handle the change in php_open_basedir |
| | |
| | | exec($command); |
| | | |
| | | if($nginx_chrooted) $this->_exec('chroot '.escapeshellcmd($web_config['website_basedir']).' '.$command); |
| | | |
| | | |
| | | //* Change the log mount |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['new']['domain'].' '.$data['new']['document_root'].'/'.$log_folder.' none bind,nobootwait 0 0'; |
| | | $app->system->replaceLine('/etc/fstab',$fstab_line,$fstab_line,1,1); |
| | | |
| | | } |
| | | |
| | |
| | | if($this->action == 'update' && $data['old']['domain'] != '' && $data['new']['domain'] != $data['old']['domain']) { |
| | | if(is_dir('/var/log/ispconfig/httpd/'.$data['old']['domain'])) exec('rm -rf /var/log/ispconfig/httpd/'.$data['old']['domain']); |
| | | if(is_link($data['old']['document_root'].'/'.$log_folder)) $app->system->unlink($data['old']['document_root'].'/'.$log_folder); |
| | | |
| | | //* remove old log mount |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | |
| | | //* Unmount log directory |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | } |
| | | |
| | | //* Create the log dir if nescessary and mount it |
| | | if(!is_dir('/var/log/ispconfig/httpd/'.$data['new']['domain'])) exec('mkdir -p /var/log/ispconfig/httpd/'.$data['new']['domain']); |
| | | if(!is_dir($data['new']['document_root'].'/'.$log_folder) || is_link($data['new']['document_root'].'/'.$log_folder)) { |
| | | if(!is_dir($data['new']['document_root'].'/'.$log_folder) || !is_dir('/var/log/ispconfig/httpd/'.$data['new']['domain']) || is_link($data['new']['document_root'].'/'.$log_folder)) { |
| | | if(is_link($data['new']['document_root'].'/'.$log_folder)) unlink($data['new']['document_root'].'/'.$log_folder); |
| | | if(!is_dir('/var/log/ispconfig/httpd/'.$data['new']['domain'])) exec('mkdir -p /var/log/ispconfig/httpd/'.$data['new']['domain']); |
| | | $app->system->mkdirpath($data['new']['document_root'].'/'.$log_folder); |
| | | $app->system->chown($data['new']['document_root'].'/'.$log_folder,'root'); |
| | | $app->system->chgrp($data['new']['document_root'].'/'.$log_folder,'root'); |
| | | $app->system->chmod($data['new']['document_root'].'/'.$log_folder,0755); |
| | | exec('mount --bind '.escapeshellarg('/var/log/ispconfig/httpd/'.$data['new']['domain']).' '.escapeshellarg($data['new']['document_root'].'/'.$log_folder)); |
| | | //* add mountpoint to fstab |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['new']['domain'].' '.$data['new']['document_root'].'/'.$log_folder.' none bind 0 0'; |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['new']['domain'].' '.$data['new']['document_root'].'/'.$log_folder.' none bind,nobootwait 0 0'; |
| | | $app->system->replaceLine('/etc/fstab',$fstab_line,$fstab_line,1,1); |
| | | } |
| | | |
| | |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | |
| | | //* remove mountpoint from fstab |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind 0 0'; |
| | | $fstab_line = '/var/log/ispconfig/httpd/'.$data['old']['domain'].' '.$data['old']['document_root'].'/'.$log_folder.' none bind'; |
| | | $app->system->removeLine('/etc/fstab',$fstab_line); |
| | | |
| | | if($data['old']['type'] != 'vhost' && $data['old']['type'] != 'vhostsubdomain' && $data['old']['parent_domain_id'] > 0) { |