Merged revisions 3845-3876 and 3879-3918 from stable branch.
| | |
| | | |
| | | //copy('tpl/apache_ispconfig.vhost.master', "$vhost_conf_dir/ispconfig.vhost"); |
| | | //* and create the symlink |
| | | if($this->is_update == false) { |
| | | //if($this->is_update == false) { |
| | | if(@is_link("$vhost_conf_enabled_dir/ispconfig.vhost")) unlink("$vhost_conf_enabled_dir/ispconfig.vhost"); |
| | | if(!@is_link("$vhost_conf_enabled_dir/000-ispconfig.vhost")) { |
| | | exec("ln -s $vhost_conf_dir/ispconfig.vhost $vhost_conf_enabled_dir/000-ispconfig.vhost"); |
| | |
| | | |
| | | replaceLine('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter','PHPRC=','PHPRC=/etc/',0,0); |
| | | */ |
| | | if(!is_file('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | //if(!is_file('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | $content = rf('tpl/apache_ispconfig_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | | exec('mkdir -p /var/www/php-fcgi-scripts/ispconfig'); |
| | | if(!is_dir('/var/www/php-fcgi-scripts/ispconfig')) exec('mkdir -p /var/www/php-fcgi-scripts/ispconfig'); |
| | | wf('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter', $content); |
| | | exec('chmod +x /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | exec('ln -s /usr/local/ispconfig/interface/web /var/www/ispconfig'); |
| | | if(!is_link('/var/www/ispconfig')) exec('ln -s /usr/local/ispconfig/interface/web /var/www/ispconfig'); |
| | | exec('chown -R ispconfig:ispconfig /var/www/php-fcgi-scripts/ispconfig'); |
| | | } |
| | | } |
| | | //} |
| | | //} |
| | | } |
| | | |
| | | if($conf['nginx']['installed'] == true && $this->install_ispconfig_interface == true){ |
| | |
| | | $existing_cron_jobs = file('crontab.txt'); |
| | | |
| | | $cron_jobs = array( |
| | | '*/5 * * * * /usr/local/bin/run-getmail.sh > /dev/null 2>> /var/log/ispconfig/cron.log' |
| | | '*/5 * * * * /usr/local/bin/run-getmail.sh > /dev/null 2>> /dev/null' |
| | | ); |
| | | |
| | | // remove existing ispconfig cronjobs, in case the syntax has changed |
| | |
| | | } |
| | | |
| | | exec('touch /var/log/ispconfig/cron.log'); |
| | | exec('chmod 666 /var/log/ispconfig/cron.log'); |
| | | exec('chmod 660 /var/log/ispconfig/cron.log'); |
| | | } |
| | | |
| | | } |
| | |
| | | |
| | | $this->write_config_file("$vhost_conf_dir/apps.vhost", $content); |
| | | |
| | | if ( !is_file($conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter') ) |
| | | { |
| | | //if ( !is_file($conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter') ) |
| | | //{ |
| | | $content = rf('tpl/apache_apps_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | |
| | | exec('chmod +x '.$conf['web']['website_basedir'].'/php-fcgi-scripts/apps/.php-fcgi-starter'); |
| | | exec('chown -R ispapps:ispapps '.$conf['web']['website_basedir'].'/php-fcgi-scripts/apps'); |
| | | |
| | | } |
| | | //} |
| | | } |
| | | if($conf['nginx']['installed'] == true){ |
| | | $apps_vhost_user = escapeshellcmd($conf['web']['apps_vhost_user']); |
| | |
| | | $content = rf('tpl/apache_ispconfig_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | | mkdir('/var/www/php-fcgi-scripts/ispconfig', 0755, true); |
| | | @mkdir('/var/www/php-fcgi-scripts/ispconfig', 0755, true); |
| | | wf('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter', $content); |
| | | exec('chmod +x /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | chmod('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter', 0755); |
| | | symlink($install_dir.'/interface/web','/var/www/ispconfig'); |
| | | @symlink($install_dir.'/interface/web','/var/www/ispconfig'); |
| | | exec('chown -R ispconfig:ispconfig /var/www/php-fcgi-scripts/ispconfig'); |
| | | } |
| | | } |
| | |
| | | |
| | | wf("$vhost_conf_dir/ispconfig.vhost", $content); |
| | | |
| | | if(!is_file('/srv/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | //if(!is_file('/srv/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | $content = rf('tpl/apache_ispconfig_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | |
| | | exec('ln -s /usr/local/ispconfig/interface/web /srv/www/ispconfig'); |
| | | exec('chown -R ispconfig:ispconfig /srv/www/php-fcgi-scripts/ispconfig'); |
| | | |
| | | } |
| | | //} |
| | | |
| | | //copy('tpl/apache_ispconfig.vhost.master', "$vhost_conf_dir/ispconfig.vhost"); |
| | | //* and create the symlink |
| | |
| | | $existing_cron_jobs = file('crontab.txt'); |
| | | |
| | | $cron_jobs = array( |
| | | '*/5 * * * * /usr/local/bin/run-getmail.sh > /dev/null 2>> /var/log/ispconfig/cron.log' |
| | | '*/5 * * * * /usr/local/bin/run-getmail.sh > /dev/null 2>> /dev/null' |
| | | ); |
| | | |
| | | // remove existing ispconfig cronjobs, in case the syntax has changed |
| | |
| | | } |
| | | |
| | | exec('touch /var/log/ispconfig/cron.log'); |
| | | exec('chmod 666 /var/log/ispconfig/cron.log'); |
| | | exec('chmod 660 /var/log/ispconfig/cron.log'); |
| | | } |
| | | |
| | | } |
| | |
| | | } |
| | | } |
| | | |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'virtual_to_transport.sh'; |
| | | |
| | | //* Backup exiting virtual_to_transport.sh script |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'virtual_to_transport.sh~'); |
| | | } |
| | | |
| | | copy('tpl/mailman-virtual_to_transport.sh',$full_file_name); |
| | | chgrp($full_file_name,'list'); |
| | | chmod($full_file_name,0750); |
| | | |
| | | if(!is_file('/var/lib/mailman/data/transport-mailman')) touch('/var/lib/mailman/data/transport-mailman'); |
| | | exec('/usr/sbin/postmap /var/lib/mailman/data/transport-mailman'); |
| | | |
| | | exec('/usr/lib/mailman/bin/genaliases 2>/dev/null'); |
| | | |
| | | $virtual_domains = ''; |
| | | if($status == 'update') |
| | | { |
| | |
| | | $content = str_replace('{virtual_domains}', $virtual_domains, $content); |
| | | |
| | | wf($full_file_name, $content); |
| | | |
| | | //* Write virtual_to_transport.sh script |
| | | $config_dir = $conf['mailman']['config_dir'].'/'; |
| | | $full_file_name = $config_dir.'virtual_to_transport.sh'; |
| | | |
| | | //* Backup exiting virtual_to_transport.sh script |
| | | if(is_file($full_file_name)) { |
| | | copy($full_file_name, $config_dir.'virtual_to_transport.sh~'); |
| | | } |
| | | |
| | | if(is_dir('/etc/mailman')) { |
| | | copy('tpl/mailman-virtual_to_transport.sh',$full_file_name); |
| | | chgrp($full_file_name,'list'); |
| | | chmod($full_file_name,0750); |
| | | } |
| | | |
| | | //* Create aliasaes |
| | | exec('/usr/lib/mailman/bin/genaliases 2>/dev/null'); |
| | | |
| | | } |
| | | |
| | | public function configure_postfix($options = '') { |
| | |
| | | touch($config_dir.'/body_checks'); |
| | | |
| | | //* Create the mailman files |
| | | exec('mkdir -p /var/lib/mailman/data'); |
| | | if(!is_dir('/var/lib/mailman/data')) exec('mkdir -p /var/lib/mailman/data'); |
| | | if(!is_file('/var/lib/mailman/data/aliases')) touch('/var/lib/mailman/data/aliases'); |
| | | exec('postalias /var/lib/mailman/data/aliases'); |
| | | if(!is_file('/var/lib/mailman/data/virtual-mailman')) touch('/var/lib/mailman/data/virtual-mailman'); |
| | | exec('postmap /var/lib/mailman/data/virtual-mailman'); |
| | | if(!is_file('/var/lib/mailman/data/transport-mailman')) touch('/var/lib/mailman/data/transport-mailman'); |
| | | exec('/usr/sbin/postmap /var/lib/mailman/data/transport-mailman'); |
| | | |
| | | //* Make a backup copy of the main.cf file |
| | | copy($config_dir.'/main.cf', $config_dir.'/main.cf~'); |
| | |
| | | symlink($vhost_conf_dir.'/ispconfig.vhost',$vhost_conf_enabled_dir.'/000-ispconfig.vhost'); |
| | | } |
| | | } |
| | | if(!is_file('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | //if(!is_file('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter')) { |
| | | $content = rf('tpl/apache_ispconfig_fcgi_starter.master'); |
| | | $content = str_replace('{fastcgi_bin}', $conf['fastcgi']['fastcgi_bin'], $content); |
| | | $content = str_replace('{fastcgi_phpini_path}', $conf['fastcgi']['fastcgi_phpini_path'], $content); |
| | | mkdir('/var/www/php-fcgi-scripts/ispconfig', 0755, true); |
| | | @mkdir('/var/www/php-fcgi-scripts/ispconfig', 0755, true); |
| | | wf('/var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter', $content); |
| | | exec('chmod +x /var/www/php-fcgi-scripts/ispconfig/.php-fcgi-starter'); |
| | | symlink($install_dir.'/interface/web','/var/www/ispconfig'); |
| | | @symlink($install_dir.'/interface/web','/var/www/ispconfig'); |
| | | exec('chown -R ispconfig:ispconfig /var/www/php-fcgi-scripts/ispconfig'); |
| | | } |
| | | //} |
| | | } |
| | | |
| | | if($conf['nginx']['installed'] == true && $this->install_ispconfig_interface == true){ |
| | |
| | | $existing_cron_jobs = file('crontab.txt'); |
| | | |
| | | $cron_jobs = array( |
| | | '*/5 * * * * /usr/local/bin/run-getmail.sh > /dev/null 2>> '.$conf['ispconfig_log_dir'].'/cron.log' |
| | | '*/5 * * * * /usr/local/bin/run-getmail.sh > /dev/null 2>> /dev/null' |
| | | ); |
| | | |
| | | // remove existing ispconfig cronjobs, in case the syntax has changed |
| | |
| | | } |
| | | |
| | | touch($conf['ispconfig_log_dir'].'/cron.log'); |
| | | chmod($conf['ispconfig_log_dir'].'/cron.log', 0666); |
| | | chmod($conf['ispconfig_log_dir'].'/cron.log', 0660); |
| | | |
| | | } |
| | | |
| | |
| | | -- -------------------------------------------------------- |
| | | |
| | | ALTER TABLE `web_domain` ADD `ssl_key` MEDIUMTEXT NOT NULL AFTER `ssl_bundle`; |
| | | ALTER TABLE `mail_user` ADD `disabledoveadm` enum('n','y') NOT NULL default 'n' AFTER `disablelda` |
| | | ALTER TABLE `mail_user` ADD `disabledoveadm` enum('n','y') NOT NULL default 'n' AFTER `disablelda`; |
| | | |
| | | |
| | |
| | | `limit_shell_user` int(11) NOT NULL default '0', |
| | | `ssh_chroot` varchar(255) NOT NULL DEFAULT 'no', |
| | | `limit_webdav_user` int(11) NOT NULL default '0', |
| | | `limit_aps` int(11) NOT NULL DEFAULT '0', |
| | | `limit_aps` int(11) NOT NULL DEFAULT '-1', |
| | | `limit_dns_zone` int(11) NOT NULL default '-1', |
| | | `limit_dns_slave_zone` int(11) NOT NULL default '-1', |
| | | `limit_dns_record` int(11) NOT NULL default '-1', |
| | |
| | | -- Dumping data for table `sys_config` |
| | | -- |
| | | |
| | | INSERT INTO sys_config VALUES ('1','db','db_version','3.0.5'); |
| | | INSERT INTO sys_config VALUES ('1','db','db_version','3.0.5.1'); |
| | | |
| | | SET FOREIGN_KEY_CHECKS = 1; |
| | |
| | | |
| | | Alias /awstats-icon "/usr/share/awstats/icon" |
| | | |
| | | NameVirtualHost *:80 |
| | | NameVirtualHost *:443 |
| | |
| | | IPCCommTimeout 7200 |
| | | </IfModule> |
| | | |
| | | # <IfModule mod_php5.c> |
| | | # DocumentRoot /usr/local/ispconfig/interface/web/ |
| | | # AddType application/x-httpd-php .php |
| | | # <Directory /usr/local/ispconfig/interface/web> |
| | | # # php_admin_value open_basedir "/usr/local/ispconfig/interface:/usr/share:/tmp" |
| | | # Options FollowSymLinks |
| | | # AllowOverride None |
| | | # Order allow,deny |
| | | # Allow from all |
| | | # php_value magic_quotes_gpc 0 |
| | | # </Directory> |
| | | # </IfModule> |
| | | <IfModule mpm_itk_module> |
| | | DocumentRoot /usr/local/ispconfig/interface/web/ |
| | | AssignUserId ispconfig ispconfig |
| | | AddType application/x-httpd-php .php |
| | | <Directory /usr/local/ispconfig/interface/web> |
| | | # php_admin_value open_basedir "/usr/local/ispconfig/interface:/usr/share:/tmp" |
| | | Options FollowSymLinks |
| | | AllowOverride None |
| | | Order allow,deny |
| | | Allow from all |
| | | php_value magic_quotes_gpc 0 |
| | | </Directory> |
| | | </IfModule> |
| | | |
| | | # ErrorLog /var/log/apache2/error.log |
| | | # CustomLog /var/log/apache2/access.log combined |
| | |
| | | <?php |
| | | /* |
| | | Copyright (c) 2007 - 2012, Till Brehm, projektfarm Gmbh |
| | | Copyright (c) 2007 - 2013, Till Brehm, projektfarm Gmbh |
| | | All rights reserved. |
| | | |
| | | Redistribution and use in source and binary forms, with or without modification, |
| | |
| | | |
| | | //** Application |
| | | define('ISPC_APP_TITLE', 'ISPConfig'); |
| | | define('ISPC_APP_VERSION', '3.0.5'); |
| | | define('ISPC_APP_VERSION', '3.0.5.1'); |
| | | define('DEVSYSTEM', 0); |
| | | |
| | | |
| | |
| | | fastcgi_pass unix:{fpm_socket}; |
| | | fastcgi_index index.php; |
| | | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
| | | fastcgi_param PATH_INFO $fastcgi_script_name; |
| | | #fastcgi_param PATH_INFO $fastcgi_script_name; |
| | | fastcgi_buffer_size 128k; |
| | | fastcgi_buffers 256 4k; |
| | | fastcgi_busy_buffers_size 256k; |
| | |
| | | fastcgi_pass unix:{fpm_socket}; |
| | | fastcgi_index index.php; |
| | | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
| | | fastcgi_param PATH_INFO $fastcgi_script_name; |
| | | #fastcgi_param PATH_INFO $fastcgi_script_name; |
| | | fastcgi_buffer_size 128k; |
| | | fastcgi_buffers 256 4k; |
| | | fastcgi_busy_buffers_size 256k; |
| | |
| | | if($do_backup == 'yes') { |
| | | |
| | | //* Create the backup directory |
| | | $backup_path = '/var/backup/ispconfig_'.date('Y-m-d_H-i'); |
| | | $backup_path = '/var/backup/ispconfig_'.@date('Y-m-d_H-i'); |
| | | $conf['backup_path'] = $backup_path; |
| | | exec("mkdir -p $backup_path"); |
| | | exec("chown root:root $backup_path"); |
| | |
| | | // Using parse_url() to filter malformed URLs |
| | | $path = dirname(parse_url($_SERVER['PHP_SELF'], PHP_URL_PATH)).'/'. |
| | | basename($this->interface_pkg_dir).'/'.$pkg['path'].'/'.basename((string)$icon); |
| | | // nginx: if $_SERVER['PHP_SELF'] is doubled, remove /sites/aps_packagedetails_show.php from beginning of path |
| | | $path = preg_replace('@^/sites/aps_packagedetails_show.php(.*)@', '$1', $path); |
| | | |
| | | $pkg['Icon'] = $path; |
| | | } |
| | | else $pkg['Icon'] = ''; |
| | |
| | | // Using parse_url() to filter malformed URLs |
| | | $path = dirname(parse_url($_SERVER['PHP_SELF'], PHP_URL_PATH)).'/'. |
| | | basename($this->interface_pkg_dir).'/'.$pkg['path'].'/'.basename((string)$screen['path']); |
| | | // nginx: if $_SERVER['PHP_SELF'] is doubled, remove /sites/aps_packagedetails_show.php from beginning of path |
| | | $path = preg_replace('@^/sites/aps_packagedetails_show.php(.*)@', '$1', $path); |
| | | |
| | | $pkg['Screenshots'][] = array('ScreenPath' => $path, |
| | | 'ScreenDescription' => htmlspecialchars(trim((string)$screen->description))); |
| | |
| | | private $errorNumber = 0; // last error number |
| | | public $errorMessage = ''; // last error message |
| | | private $errorLocation = '';// last error location |
| | | public $show_error_messages = true; // false in server, true in interface |
| | | public $show_error_messages = false; // false in server, true in interface |
| | | private $isConnected = false; // needed to know if we have a valid mysqli object from the constructor |
| | | |
| | | // constructor |
| | |
| | | $this->dbClientFlags = $conf[$prefix.'db_client_flags']; |
| | | parent::__construct($conf[$prefix.'db_host'], $conf[$prefix.'db_user'],$conf[$prefix.'db_password'],$conf[$prefix.'db_database']); |
| | | $try = 0; |
| | | while(!is_null($this->connect_error) && $try < 5) { |
| | | //while(!is_null($this->connect_error) && $try < 5) { |
| | | while(mysqli_connect_error() && $try < 5) { |
| | | if($try > 0) sleep(1); |
| | | |
| | | $try++; |
| | |
| | | parent::__construct($conf[$prefix.'db_host'], $conf[$prefix.'db_user'],$conf[$prefix.'db_password'],$conf[$prefix.'db_database']); |
| | | } |
| | | |
| | | if(is_null($this->connect_error)) $this->isConnected = true; |
| | | //if(is_null($this->connect_error)) $this->isConnected = true; |
| | | //else return false; |
| | | if(!mysqli_connect_error()) $this->isConnected = true; |
| | | else return false; |
| | | |
| | | $this->setCharacterEncoding(); |
| | |
| | | |
| | | // error handler |
| | | public function updateError($location) { |
| | | global $app; |
| | | global $app, $conf; |
| | | |
| | | /* |
| | | if(!is_null($this->connect_error)) { |
| | | $this->errorNumber = $this->connect_errno; |
| | | $this->errorMessage = $this->connect_error; |
| | |
| | | $this->errorNumber = $this->errno; |
| | | $this->errorMessage = $this->error; |
| | | } |
| | | */ |
| | | if(mysqli_connect_error()) { |
| | | $this->errorNumber = mysqli_connect_errno(); |
| | | $this->errorMessage = mysqli_connect_error(); |
| | | } else { |
| | | $this->errorNumber = mysqli_errno($this); |
| | | $this->errorMessage = mysqli_error($this); |
| | | } |
| | | |
| | | |
| | | $this->errorLocation = $location; |
| | | if($this->errorNumber) { |
| | | $error_msg = $this->errorLocation .' '. $this->errorMessage; |
| | | // This right here will allow us to use the samefile for server & interface |
| | | if($this->show_error_messages) { |
| | | if($this->show_error_messages && $conf['demo_mode'] === false) { |
| | | echo $error_msg; |
| | | } else if(is_object($app) && method_exists($app, 'log')) { |
| | | $app->log($error_msg, LOGLEVEL_WARN); |
| | |
| | | } |
| | | |
| | | public function query($queryString) { |
| | | global $conf; |
| | | if($this->isConnected == false) return false; |
| | | $try = 0; |
| | | do { |
| | |
| | | } while($ok == false); |
| | | $this->queryId = parent::query($queryString); |
| | | $this->updateError('DB::query('.$queryString.') -> mysqli_query'); |
| | | if($this->errorNumber) debug_print_backtrace(); |
| | | if($this->errorNumber && $conf['demo_mode'] === false) debug_print_backtrace(); |
| | | if(!$this->queryId) { |
| | | return false; |
| | | } |
| | |
| | | |
| | | // returns number of rows returned by the last select query |
| | | public function numRows() { |
| | | return $this->queryId->num_rows; |
| | | return intval($this->queryId->num_rows); |
| | | } |
| | | |
| | | public function affectedRows() { |
| | | return $this->queryId->affected_rows; |
| | | return intval($this->queryId->affected_rows); |
| | | } |
| | | |
| | | // returns mySQL insert id |
| | |
| | | $order_by_sql = str_replace('client_id','c.contact_name',$order_by_sql); |
| | | } elseif($order == 'parent_domain_id'){ |
| | | $join .= ' LEFT JOIN web_domain as wd ON '.$app->listform->listDef['table'].'.parent_domain_id = wd.domain_id '; |
| | | $order_by_sql = str_replace('parent_domain_id','wd.domain',$order_by_sql); |
| | | $sql_where = str_replace('type',$app->listform->listDef['table'].'.type',$sql_where); |
| | | //$order_by_sql = str_replace(' domain', ' '.$app->listform->listDef['table'].'.domain',$order_by_sql); |
| | | //$order_by_sql = str_replace('parent_domain_id','wd.domain',$order_by_sql); |
| | | $order_by_sql = preg_replace('@( |,|^)(domain)( |,|$)@', '$1'.$app->listform->listDef['table'].'.$2$3', $order_by_sql); |
| | | $order_by_sql = preg_replace('@( |,|^)(parent_domain_id)( |,|$)@', '$1wd.domain$3', $order_by_sql); |
| | | |
| | | //$sql_where = str_replace('type',$app->listform->listDef['table'].'.type',$sql_where); |
| | | //$sql_where = str_replace(' domain',' '.$app->listform->listDef['table'].'.domain',$sql_where); |
| | | $sql_where = preg_replace('@( |,|^)(type)( |,|$)@', '$1'.$app->listform->listDef['table'].'.$2$3', $sql_where); |
| | | $sql_where = preg_replace('@( |,|^)(domain)( |,|$)@', '$1'.$app->listform->listDef['table'].'.$2$3', $sql_where); |
| | | } elseif($order == 'sys_groupid'){ |
| | | $join .= ' LEFT JOIN sys_group as sg ON '.$app->listform->listDef['table'].'.sys_groupid = sg.groupid '; |
| | | $order_by_sql = str_replace('sys_groupid','sg.name',$order_by_sql); |
| | |
| | | } |
| | | break; |
| | | case 'UNIQUE': |
| | | if($validator['allowempty'] != 'y') $validator['allowempty'] = 'n'; |
| | | if($validator['allowempty'] == 'n' || ($validator['allowempty'] == 'y' && $field_value != '')){ |
| | | if($this->action == 'NEW') { |
| | | $num_rec = $app->db->queryOneRecord("SELECT count(*) as number FROM ".$escape.$this->formDef['db_table'].$escape. " WHERE $field_name = '".$app->db->quote($field_value)."'"); |
| | | if($num_rec["number"] > 0) { |
| | |
| | | $this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n"; |
| | | } else { |
| | | $this->errorMessage .= $errmsg."<br />\r\n"; |
| | | } |
| | | } |
| | | } |
| | | } |
| | |
| | | } |
| | | break; |
| | | case 'ISIP': |
| | | if($validator['allowempty'] != 'y') $validator['allowempty'] = 'n'; |
| | | if($validator['allowempty'] == 'y' && $field_value == '') { |
| | | //* Do nothing |
| | | } else { |
| | | //* Check if its a IPv4 or IPv6 address |
| | | if(isset($validator['separator']) && $validator['separator'] != '') { |
| | | //* When the field may contain several IP addresses, split them by the char defined as separator |
| | | $field_value_array = explode($validator['separator'],$field_value); |
| | | } else { |
| | | $field_value_array[] = $field_value; |
| | | } |
| | | foreach($field_value_array as $field_value) { |
| | | if(function_exists('filter_var')) { |
| | | if(!filter_var($field_value,FILTER_VALIDATE_IP)) { |
| | | $errmsg = $validator['errmsg']; |
| | |
| | | $this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n"; |
| | | } else { |
| | | $this->errorMessage .= $errmsg."<br />\r\n"; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | |
| | | $sql = "SELECT * FROM ".$escape.$this->formDef['db_table'].$escape." WHERE ".$this->formDef['db_table_idx']." = ".$primary_id; |
| | | return $app->db->queryOneRecord($sql); |
| | | } elseif (@is_array($primary_id)) { |
| | | $sql_offset = 0; |
| | | $sql_limit = 0; |
| | | $sql_where = ''; |
| | | foreach($primary_id as $key => $val) { |
| | | $key = $app->db->quote($key); |
| | | $val = $app->db->quote($val); |
| | | if(stristr($val,'%')) { |
| | | if($key == '#OFFSET#') $sql_offset = $app->functions->intval($val); |
| | | elseif($key == '#LIMIT#') $sql_limit = $app->functions->intval($val); |
| | | elseif(stristr($val,'%')) { |
| | | $sql_where .= "$key like '$val' AND "; |
| | | } else { |
| | | $sql_where .= "$key = '$val' AND "; |
| | | } |
| | | } |
| | | $sql_where = substr($sql_where,0,-5); |
| | | if($sql_where == '') $sql_where = '1'; |
| | | $sql = "SELECT * FROM ".$escape.$this->formDef['db_table'].$escape." WHERE ".$sql_where; |
| | | if($sql_offset >= 0 && $sql_limit > 0) $sql .= ' LIMIT ' . $sql_offset . ',' . $sql_limit; |
| | | return $app->db->queryAllRecords($sql); |
| | | } else { |
| | | $this->errorMessage = 'The ID must be either an integer or an array.'; |
| | |
| | | $html .= '<p>Problem, there are no rules listed for the server</p>'; |
| | | } |
| | | else { |
| | | $html = nl2br($data['output']); |
| | | $html .= nl2br($data['output']); |
| | | } |
| | | $html .= '</div></div>'; |
| | | } else { |
| | |
| | | //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) : "")); |
| | | $checks = $app->db->queryAllRecords("SELECT * FROM `web_domain` WHERE (`domain` = '" . $app->db->quote($domain_name) . "'".$additional_sql1.") AND `server_id` = ".intval($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){ |
| | |
| | | //$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) : "")); |
| | | $checks = $app->db->queryAllRecords("SELECT * FROM `web_domain` WHERE (CONCAT(`subdomain`, '.', `domain`) = '" . $app->db->quote($domain_name) . "'".$additional_sql2.") AND `server_id` = ".intval($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; |
| | |
| | | $wb['error_301'] = 'Modul není povolen pro současného uživatele.'; |
| | | $wb['error_302'] = 'Neplatný modul.'; |
| | | $wb['error_1001'] = 'Uživatelské jméno a heslo nemohou být prázdné !'; |
| | | $wb['error_1002'] = 'Uživatelské jméno a/nebo heslo nejsou správné !'; |
| | | $wb['error_1002'] = 'Uživatelské jméno nebo heslo nejsou správné !'; |
| | | $wb['error_1003'] = 'Uživatelské jméno je neaktivní!'; |
| | | $wb['delete_confirmation'] = 'Skutečně chcete smazat tento záznam?'; |
| | | $wb['error_no_view_permission'] = 'Záznam neexistuje nebo nemáte oprávnění jej zobrazit!'; |
| | |
| | | $wb['monthnamesshort_mar'] = 'Bře'; |
| | | $wb['monthnamesshort_apr'] = 'Dub'; |
| | | $wb['monthnamesshort_may'] = 'Kvě'; |
| | | $wb['monthnamesshort_jun'] = 'Jun'; |
| | | $wb['monthnamesshort_jul'] = 'Jul'; |
| | | $wb['monthnamesshort_jun'] = 'Čer'; |
| | | $wb['monthnamesshort_jul'] = 'Čvc'; |
| | | $wb['monthnamesshort_aug'] = 'Srp'; |
| | | $wb['monthnamesshort_sep'] = 'Zář'; |
| | | $wb['monthnamesshort_oct'] = 'Říj'; |
| | |
| | | $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_spamfilter_users'] = 'Vytvoření nastavení spamového filtru'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Aktualizace nastavení spamového filtru'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Odstranění nastavení spamového filtru'; |
| | | $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_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['login_as_txt'] = 'Log in as'; |
| | | $wb['login_as_txt'] = 'Přihlaste se jako'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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'] = 'Moduł nie jest dostępny dla aktualnego uzytkownika.'; |
| | |
| | | $wb['monthnamesshort_dec'] = 'Gru'; |
| | | $wb['datepicker_nextText'] = 'Nast'; |
| | | $wb['datepicker_prevText'] = 'Poprz'; |
| | | $wb['logout_txt'] = 'Logout'; |
| | | $wb['logout_txt'] = 'WYLOGUJ'; |
| | | $wb['conf_format_dateshort_human_readable'] = 'yyyy-mm-dd'; |
| | | $wb['submit_confirmation'] = 'Do you really want to perform this action?'; |
| | | $wb['top_menu_mailuser'] = 'Mailuser'; |
| | | $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['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_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_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['login_as_txt'] = 'Log in as'; |
| | | $wb['submit_confirmation'] = 'Czy na pewno chcesz wykonać tę akcję?'; |
| | | $wb['number_format_decimals_client'] = '2'; |
| | | $wb['top_menu_mailuser'] = 'Użytkownik email'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'z'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'wyników'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'Brak wyników'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 wyników'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Szukaj'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Sugestie'; |
| | | $wb['global_tabchange_warning_txt'] = 'Zmienione dane w tej zakładce będą zapisane jeżeli wciśniesz OK.'; |
| | | $wb['global_tabchange_discard_txt'] = 'Posiadasz niezapisane zmiany w tej zakładce. Zmiany zostaną porzucone jeżeli przejdziesz dalej.'; |
| | | $wb['datalog_changes_txt'] = 'Poniższe zmiany nie zostały jeszcze wprowadzone na wszystkich serwerach:'; |
| | | $wb['datalog_changes_end_txt'] = 'Zapisanie zmian może zająć do minuty. Proszę o cierpliwość.'; |
| | | $wb['datalog_status_i_web_database'] = 'Utwórz nową bazę danych'; |
| | | $wb['datalog_status_u_web_database'] = 'Edytuj bazę'; |
| | | $wb['datalog_status_d_web_database'] = 'Usuń bazę'; |
| | | $wb['datalog_status_i_web_database_user'] = 'Utwórz użytkownika bazy'; |
| | | $wb['datalog_status_u_web_database_user'] = 'Edytuj użytkownika bazy'; |
| | | $wb['datalog_status_d_web_database_user'] = 'Usuń użytkownika bazy'; |
| | | $wb['datalog_status_i_web_domain'] = 'Utwórz nową stronę'; |
| | | $wb['datalog_status_u_web_domain'] = 'Edytuj ustawienia strony'; |
| | | $wb['datalog_status_d_web_domain'] = 'Usuń stronę'; |
| | | $wb['datalog_status_i_ftp_user'] = 'Utwórz użytkownika FTP'; |
| | | $wb['datalog_status_u_ftp_user'] = 'Edytuj użytkownika FTP'; |
| | | $wb['datalog_status_d_ftp_user'] = 'Usuń użytkownika FTP'; |
| | | $wb['datalog_status_i_mail_domain'] = 'Utwórz domenę e-mail'; |
| | | $wb['datalog_status_u_mail_domain'] = 'Edytuj domenę e-mail'; |
| | | $wb['datalog_status_d_mail_domain'] = 'Usuń domenę e-mail'; |
| | | $wb['datalog_status_i_mail_user'] = 'Utwórz konto e-mail'; |
| | | $wb['datalog_status_u_mail_user'] = 'Edytuj konto e-mail'; |
| | | $wb['datalog_status_d_mail_user'] = 'Usuń konto e-mail'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Utwórz ustawienia filtra antyspamowego'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Edytu ustawienia filtra antyspamowego'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Usuń ustawienia filtra antyspamowego'; |
| | | $wb['datalog_status_i_mail_forwarding'] = 'Utwórz adres e-mail'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'Edytu adres e-mail'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'Usuń adres e-mail'; |
| | | $wb['datalog_status_i_dns_rr'] = 'Utwórz wpis DNS'; |
| | | $wb['datalog_status_u_dns_rr'] = 'Edytuj wpis DNS'; |
| | | $wb['datalog_status_d_dns_rr'] = 'Usuń wpis DNS'; |
| | | $wb['datalog_status_i_dns_soa'] = 'Utwórz strefę DNS'; |
| | | $wb['datalog_status_u_dns_soa'] = 'Edytuj strefę DNS'; |
| | | $wb['datalog_status_d_dns_soa'] = 'Usuń strefę DNS'; |
| | | $wb['datalog_status_i_cron'] = 'Utwórz zadanie Cron'; |
| | | $wb['datalog_status_u_cron'] = 'Edytuj zadanie Cron'; |
| | | $wb['datalog_status_d_cron'] = 'Usuń zadanie Cron'; |
| | | $wb['datalog_status_i_mail_get'] = 'Utwórz konto mail fetcher'; |
| | | $wb['datalog_status_u_mail_get'] = 'Edytuj konto mail fetcher'; |
| | | $wb['datalog_status_d_mail_get'] = 'Usuń konto mail fetcher'; |
| | | $wb['datalog_status_i_mail_mailinglist'] = 'Utwórz listę mailingową'; |
| | | $wb['datalog_status_u_mail_mailinglist'] = 'Edytuj listę mailingową'; |
| | | $wb['datalog_status_d_mail_mailinglist'] = 'Usuń listę mailingową'; |
| | | $wb['datalog_status_i_shell_user'] = 'Utwórz konto shell'; |
| | | $wb['datalog_status_u_shell_user'] = 'Edytuj konto shell'; |
| | | $wb['datalog_status_d_shell_user'] = 'Usuń konto shell'; |
| | | $wb['datalog_status_i_web_folder'] = 'Utwórz zabezpieczenie folderu'; |
| | | $wb['datalog_status_u_web_folder'] = 'Edytuj zabezpieczenie folderu'; |
| | | $wb['datalog_status_d_web_folder'] = 'Usuń zabezpieczenie folderu'; |
| | | $wb['datalog_status_i_web_folder_user'] = 'Utwórz konto dla zabezpieczonego folderu'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Edytuj konto zabezpieczonego folderu'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Usuń konto zabezpieczonego folderu'; |
| | | $wb['login_as_txt'] = 'Zaloguj jako'; |
| | | ?> |
| | | |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])(,\s*(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9]))*$/', |
| | | 'errmsg'=> 'rbl_error_regex'), |
| | | ), |
| | | 'value' => '', |
| | | 'width' => '40', |
| | | 'maxlength' => '255' |
| | |
| | | 'default' => 'n', |
| | | 'value' => array(0 => 'n',1 => 'y') |
| | | ), |
| | | |
| | | |
| | | */ |
| | | 'vhost_conf_dir' => array( |
| | | 'datatype' => 'VARCHAR', |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Update'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Пакети'; |
| | | $wb['repoupdate_txt'] = 'Обновяване на пакетите '; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['version_txt'] = 'Версия'; |
| | | $wb['action_txt'] = 'Действие'; |
| | | $wb['server_select_txt'] = 'Избери сървър'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Atualizar'; |
| | | $wb['version_txt'] = 'Versão'; |
| | | $wb['action_txt'] = 'Ação'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | $wb['Do ISPConfig-Update'] = 'Aktualizovat ISPConfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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['type_txt'] = 'Verze'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['tcp_ports_error_regex'] = 'Znak není povole v definici TCP portu. Povolené symboly jsou čísla, : a ,.'; |
| | | $wb['udp_ports_error_regex'] = 'Znak není povole v definici UDP portu. Povolené symboly jsou čísla, : a ,.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['udp_port_txt'] = 'Otevřené UDP porty'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['name_txt'] = 'Skupina'; |
| | | $wb['name_err'] = 'Skupina musí mít min. 1, max. 30 znaků.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat skupinu'; |
| | | $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['active_txt'] = 'Aktivní'; |
| | | $wb['iptables_error_unique'] = 'Stejný záznam pro firewall je již na tomto serveru použit.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['iptables_error_unique'] = 'Stejný záznam pro firewall je již na tomto serveru použit.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Vytvořit novou jazykovou sadu souborů'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Sloučit / doplnit jazykový soubor'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Uložit'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Uložit vybranou jazykovou sadu do souboru'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | $wb['ignore_version_txt'] = 'Přeskočit kontrolu verze ISPConfigu.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['lang_file_txt'] = 'Jazykový soubor'; |
| | | $wb['lang_file_date_txt'] = 'Poslední úprava'; |
| | | ?> |
| | | |
| | | |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['login_1_txt'] = 'Chcete se přihlásit jako klient'; |
| | | $wb['login_2_txt'] = 'Pokud se přihlásíte jako klient, zpět do sekce Administrátora se vratíte kliknutím na odhlášení klienta.'; |
| | | $wb['btn_yes_txt'] = 'Ano, přihlásit se jako klient'; |
| | | $wb['btn_back_txt'] = 'Ne, zpět na seznam klientů'; |
| | | $wb['udp_port_help_txt'] = 'Odděleny čárkou'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | | |
| | | |
| | |
| | | <?php |
| | | $wb['repo_name_txt'] = 'Repository'; |
| | | $wb['repo_name_txt'] = 'Repozitář'; |
| | | $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['select_server_txt'] = 'Zvolit server'; |
| | | $wb['btn_do_txt'] = 'Provést akci'; |
| | | $wb['do_osupdate_caption'] = 'Aktualizace operačního systému na vzdáleném serveru.'; |
| | | $wb['do_osupdate_desc'] = 'Tato akce provede \\"aptitude -y\\" aktualizaci na vybraném serveru.<br><br><strong>POUŽITÍ TÉTO AKCE NA VLASTNÍ NEBEZPEČÍ !</strong>'; |
| | | $wb['do_osupdate_desc'] = 'Tato akce provede "aptitude -y" aktualizaci na vybraném serveru.<br><br><strong>POUŽITÍ TÉTO AKCE NA VLASTNÍ NEBEZPEČÍ !</strong>'; |
| | | $wb['do_ispcupdate_caption'] = 'Provedení ISPConfig 3 - aktualizace na vzdáleném serveru'; |
| | | $wb['do_ispcupdate_desc'] = 'Tato akce provede \\"ISPConfig 3\\" aktualizaci na vašem vybraném serveru.<br><br><strong>POUŽITÍ TÉTO AKCE NA VLASTNÍ NEBEZPEČÍ !</strong>'; |
| | | $wb['do_ispcupdate_desc'] = 'Tato akce provede "ISPConfig 3" aktualizaci na vašem vybraném serveru.<br><br><strong>POUŽITÍ TÉTO AKCE NA VLASTNÍ NEBEZPEČÍ !</strong>'; |
| | | $wb['action_scheduled'] = 'Akce je naplánována na provedení'; |
| | | $wb['select_all_server'] = 'Všechny servery'; |
| | | $wb['ispconfig_update_title'] = 'ISPConfig pokyny k aktualizaci'; |
| | | $wb['ispconfig_update_text'] = 'Přihlaste se jako uživatel root na terminal (shell) serveru a proveďte příkaz<br /><br /> <strong>ispconfig_update.sh</strong><br /><br />spustí se ISPConfig aktualizace.<br /><br /><a href=http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-update-ispconfig-3/ target=_blank>Klikněte zde pro podrobnější informace o provedení aktualizace</a>'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['username_error_empty'] = 'Uživatelské jméno nemůže být prázdné'; |
| | | $wb['password_error_empty'] = 'Heslo nemůže být prázdné'; |
| | | $wb['password_strength_txt'] = 'Bezpečnost hesla:'; |
| | | $wb['Mail domain functions'] = 'Funkce mailové domény'; |
| | | $wb['Mail user functions'] = 'Funkce mailového uživatele'; |
| | | $wb['Mail alias functions'] = 'Funkce mailového aliasu'; |
| | | $wb['Mail forward functions'] = 'Funkce mailového předávání'; |
| | | $wb['Mail catchall functions'] = 'Funkce mailového koše'; |
| | | $wb['Mail transport functions'] = 'Funkce mailového transportu'; |
| | | $wb['Mail whitelist functions'] = 'Funkce mailové bílé listiny'; |
| | | $wb['Mail blacklist functions'] = 'Funkce mailové černé listiny'; |
| | | $wb['Mail spamfilter user functions'] = 'Funkce mailového spamfiltr uživatele'; |
| | | $wb['Mail spamfilter policy functions'] = 'Funkce mailové spamfiltr politiky'; |
| | | $wb['Mail fetchmail functions'] = 'Funkce mailové externí získávání emailů'; |
| | | $wb['Mail user filter functions'] = 'Funkce mailového filtru uživatelů'; |
| | | $wb['Mail filter functions'] = 'Funkce mailového filtru'; |
| | | $wb['Mail domain functions'] = 'Funkce e-mailové domény'; |
| | | $wb['Mail user functions'] = 'Funkce e-mailového uživatele'; |
| | | $wb['Mail alias functions'] = 'Funkce e-mailového aliasu'; |
| | | $wb['Mail forward functions'] = 'Funkce e-mailového předávání'; |
| | | $wb['Mail catchall functions'] = 'Funkce e-mailového koše'; |
| | | $wb['Mail transport functions'] = 'Funkce e-mailového transportu'; |
| | | $wb['Mail whitelist functions'] = 'Funkce e-mailové bílé listiny'; |
| | | $wb['Mail blacklist functions'] = 'Funkce e-mailové černé listiny'; |
| | | $wb['Mail spamfilter user functions'] = 'Funkce e-mailového spamfiltr uživatele'; |
| | | $wb['Mail spamfilter policy functions'] = 'Funkce e-mailové spamfiltr politiky'; |
| | | $wb['Mail fetchmail functions'] = 'Funkce e-mailové externí získávání e-mailů'; |
| | | $wb['Mail user filter functions'] = 'Funkce e-mailového filtru uživatelů'; |
| | | $wb['Mail filter functions'] = 'Funkce e-mailového filtru'; |
| | | $wb['Client functions'] = 'Klientské funkce'; |
| | | $wb['Sites cron functions'] = 'Funkce cronů'; |
| | | $wb['Sites database functions'] = 'Funkce databází'; |
| | |
| | | $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'; |
| | | $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['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = 'Uživatel'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['proxy_server_txt'] = 'Proxy-Server'; |
| | | $wb['firewall_server_txt'] = 'Firewall-Server'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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_init_script_txt'] = 'PHP-FPM název init skriptu'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM název init skriptu je prázdny'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM cesta k php.ini'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM cesta k php.ini je prázdná'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM adresář pro pool'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM adresář pro pool je prázdny.'; |
| | | $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['php_fpm_socket_dir_txt'] = 'PHP-FPM adresář pro socket'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM adresář pro socket je prázdny.'; |
| | | $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 monitorování'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Zakázat E-mail monitorování'; |
| | |
| | | $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['list_head_txt'] = 'Konfigurace serveru'; |
| | | $wb['server_name_txt'] = 'Server'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP adresa'; |
| | | $wb['virtualhost_txt'] = 'HTTP NameVirtualHost'; |
| | | $wb['ip_error_wrong'] = 'IP adresa je neplatná'; |
| | | $wb['ip_error_wrong'] = 'IP adresa je neplatná nebo prázdná'; |
| | | $wb['ip_error_unique'] = 'IP adresa musí být unikátní'; |
| | | $wb['client_id_txt'] = 'Klient'; |
| | | $wb['ip_type_txt'] = 'Verze'; |
| | | $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['virtualhost_port_txt'] = 'HTTP Porty'; |
| | | $wb['error_port_syntax'] = 'Neplatné znaky ve volbě HTTP Portů. Prosím, zadejte pouze číselné hodnoty oddělené čárkami. Příklad: 80,443'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['virtualhost_port_txt'] = 'HTTP Ports'; |
| | | $wb['ip_type_txt'] = 'Verze'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['proxy_server_txt'] = 'Proxy'; |
| | | $wb['firewall_server_txt'] = 'Firewall'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['php_fpm_ini_dir_txt'] = 'Cesta k php.ini adresáři'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Cesta k PHP-FPM pool adresáři'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['client_id_txt'] = 'Klient'; |
| | | $wb['name_txt'] = 'Verze PHP'; |
| | | ?> |
| | | |
| | | |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Install software package'; |
| | | $wb['head_txt'] = 'Instalace software'; |
| | | $wb['install_key_txt'] = 'Enter install key'; |
| | | $wb['btn_save_txt'] = 'Start Installation'; |
| | | $wb['btn_save_txt'] = 'Spustit instalaci'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['toolsarea_head_txt'] = 'Balíčky'; |
| | | $wb['repoupdate_txt'] = 'Aktualizace seznamu balíků'; |
| | | $wb['package_id_txt'] = 'místní App-ID'; |
| | | $wb['no_packages_txt'] = 'Žádné balíčky nejsou k dispozici'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['repo_password_txt'] = 'Heslo (volitelné)'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['repo_name_txt'] = 'Repozitář'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['update_title_txt'] = 'Aktualizovat'; |
| | | $wb['version_txt'] = 'Verze'; |
| | | $wb['action_txt'] = 'Akce'; |
| | | $wb['no_updates_txt'] = 'Žádné aktualizace nejsou k dispozici'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['mailboxlist_webmail_link_txt'] = 'Odkaz na aplikaci Webmail v Mailbox seznamu'; |
| | | $wb['webmail_url_txt'] = 'Webmail URL'; |
| | | $wb['phpmyadmin_url_txt'] = 'PHPMyAdmin URL'; |
| | | $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['dashboard_atom_url_admin_txt'] = 'Řídící panel novinky načítat z URL pro: (admina)'; |
| | | $wb['dashboard_atom_url_reseller_txt'] = 'Řídící panel novinky načítat z URL pro: (prodejce)'; |
| | | $wb['dashboard_atom_url_client_txt'] = 'Řídící panel novinky načítat z URL pro: (klienty)'; |
| | | $wb['webdavuser_prefix_txt'] = 'Prefix webdav uživatele'; |
| | | $wb['webdavuser_prefix_error_regex'] = 'Char not allowed in webdav user prefix.'; |
| | | $wb['use_domain_module_txt'] = 'Použijte modul-domény pro přidání nových domén'; |
| | |
| | | $wb['mailmailinglist_url_txt'] = 'Mailing seznam URL'; |
| | | $wb['monitor_key_txt'] = 'Monitor keyword'; |
| | | $wb['maintenance_mode_txt'] = 'Režim údržby'; |
| | | $wb['smtp_enabled_txt'] = 'Použít (zvolit) SMTP server pro zasílání systemových mailů'; |
| | | $wb['smtp_enabled_txt'] = 'Použít (zvolit) SMTP server pro zasílání systémových mailů'; |
| | | $wb['smtp_host_txt'] = 'SMTP host'; |
| | | $wb['smtp_port_txt'] = 'SMTP port'; |
| | | $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['smtp_missing_admin_mail_txt'] = 'Zadejte prosím jméno Administrátora a e-mailovou adresu Administrátora, pokud chcete používat zvolený SMTP server pro zasílání systémových mailů.'; |
| | | $wb['tab_change_discard_txt'] = 'Discard changes on tab change'; |
| | | $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['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'] = '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['phpmyadmin_url_error_regex'] = 'phpmyadmin neplatné URL'; |
| | | $wb['use_combobox_txt'] = 'Použití jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Použití indikátoru zatížení'; |
| | | $wb['f5_to_reload_js_txt'] = 'Pokud vypnete tuto volbu, zřejmě budete muset používat klávesu F5, aby internetový prohlížeč znovu načetl JavaScript knihovny nebo budete muset ručně vyprázdňovat mezipaměť (cache) vašeho internetového prohlížeče.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Disable client username check for the word \'web\'.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Show Autoresponder tab in Mailbox detail'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show Mail Filter tab in Mailbox detail'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show Custom Rules tab in Mailbox detail'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['php_fpm_ini_dir_txt'] = 'Cesta k php.ini adresáři'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Cesta k PHP-FPM pool adresáři'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | $wb['username_error_collision'] = 'Uživatelské jméno nesmí být web nebo web a číslo.\\"'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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['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["rbl_error_regex"] = 'Bitte geben Sie gültige RBL-Hostnamen an.'; |
| | | $wb["sendmail_path_txt"] = 'Pfad zu Sendmail'; |
| | | $wb["sendmail_path_error_empty"] = 'Sendmail Pfad ist leer.'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Pakete'; |
| | | $wb['repoupdate_txt'] = 'Softwarepakete Liste updaten'; |
| | | $wb['package_id_txt'] = 'Lokale App ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Update'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['action_txt'] = 'Aktion'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Πακέτα'; |
| | | $wb['repoupdate_txt'] = 'Ενημέρωση λίστας πακκέτων'; |
| | | $wb['package_id_txt'] = 'τοπικό App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Ενημέρωση'; |
| | | $wb['version_txt'] = 'Έκδοση'; |
| | | $wb['action_txt'] = 'Ενέργεια'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | $wb["php_ini_check_minutes_txt"] = 'Check system php.ini files for changes each'; |
| | | $wb["php_ini_check_minutes_info_txt"] = 'minutes (0 disables checking)'; |
| | | $wb['php_ini_check_minutes_error_empty'] = 'Invalid value for php.ini checking.'; |
| | | $wb["rbl_error_regex"] = 'Please specify valid RBL hostnames.'; |
| | | $wb["sendmail_path_txt"] = 'Sendmail Path'; |
| | | $wb["sendmail_path_error_empty"] = 'Sendmail Path is empty.'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Update'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['version_txt'] = 'Versión'; |
| | | $wb['action_txt'] = 'Acción'; |
| | | $wb['server_select_txt'] = 'Seleccionar servidor'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['version_txt'] = 'Versio'; |
| | | $wb['action_txt'] = 'Toiminto'; |
| | | $wb['server_select_txt'] = 'Valitse palvelin'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Mettre à jour la liste des paquets'; |
| | | $wb['package_id_txt'] = 'App-ID locale'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['server_select_txt'] = 'Sélectionnez le serveur'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Paketi'; |
| | | $wb['repoupdate_txt'] = 'Obnovi listu paketa'; |
| | | $wb['package_id_txt'] = 'lokalni App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Nadogradi'; |
| | | $wb['version_txt'] = 'Verzija'; |
| | | $wb['action_txt'] = 'Akcija'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Csomagok'; |
| | | $wb['repoupdate_txt'] = 'Csomaglista frissítése'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['version_txt'] = 'Verzió'; |
| | | $wb['action_txt'] = 'Művelet'; |
| | | $wb['server_select_txt'] = 'Válasszon szervert'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Paket'; |
| | | $wb['repoupdate_txt'] = 'Mutakhirkan daftar paket'; |
| | | $wb['package_id_txt'] = 'App-ID lokal'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Mutakhirkan'; |
| | | $wb['version_txt'] = 'Versi'; |
| | | $wb['action_txt'] = 'Tindakan'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['version_txt'] = 'Versione'; |
| | | $wb['action_txt'] = 'Azione'; |
| | | $wb['server_select_txt'] = 'Selezionare server'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = '更新'; |
| | | $wb['version_txt'] = 'バージョン'; |
| | | $wb['action_txt'] = '操作'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Pakketten'; |
| | | $wb['repoupdate_txt'] = 'Update pakketlijst'; |
| | | $wb['package_id_txt'] = 'locaal App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Update'; |
| | | $wb['version_txt'] = 'Versie'; |
| | | $wb['action_txt'] = 'Actie'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['1001'] = 'Nazwa użytkownika lub hasło jest puste.'; |
| | | $wb['1002'] = 'Nazwa użytkownika lub hasło jest błędne.'; |
| | | $wb['Firewall'] = 'Firewall'; |
| | | $wb['Groups'] = 'Grupy'; |
| | | $wb['groups_description'] = 'Formularz do edycji grup użytkowników w systemie.'; |
| | | $wb['Servers'] = 'Serwery'; |
| | | $wb['Config'] = 'Konfiguracja'; |
| | | $wb['Add user'] = 'Dodaj użytkownika'; |
| | | $wb['Edit user'] = 'Edytuj użytkownika'; |
| | | $wb['Add group'] = 'Dodaj grupę'; |
| | | $wb['Edit group'] = 'Edytuj grupę'; |
| | | $wb['Edit server'] = 'Edytuj serwer'; |
| | | $wb['Sync. Now'] = 'Synchronizuj teraz.'; |
| | | $wb['DB Sync.'] = 'Synchronizacja bazy danych.'; |
| | | $wb['User Management'] = 'User Management'; |
| | | $wb['CP Users'] = 'Użytkownicy'; |
| | | $wb['Remote Users'] = 'Użytkownicy zdalni'; |
| | | $wb['System'] = 'System'; |
| | | $wb['Server Services'] = 'Usługi serwera'; |
| | | $wb['Services'] = 'Usługi'; |
| | | $wb['Server Config'] = 'Konfiguracja serwera'; |
| | | $wb['Server'] = 'Serwer'; |
| | | $wb['Services'] = 'Usługi'; |
| | | $wb['Config'] = 'Konfiguracja'; |
| | | $wb['Server Config'] = 'Konfiguracja serwera'; |
| | | $wb['Mail'] = 'Mail'; |
| | | $wb['Getmail'] = 'Getmail'; |
| | | $wb['Web'] = 'Web'; |
| | | $wb['FastCGI'] = 'FastCGI'; |
| | | $wb['Jailkit'] = 'Jailkit'; |
| | | $wb['Rescue'] = 'Rescue'; |
| | | $wb['Server IP addresses'] = 'Server IP addresses'; |
| | | $wb['Additional PHP Versions'] = 'Additional PHP Versions'; |
| | | $wb['Firewall'] = 'Firewall'; |
| | | $wb['Interface'] = 'Interface'; |
| | | $wb['Interface Config'] = 'Main Config'; |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['Misc'] = 'Misc'; |
| | | $wb['Software'] = 'Oprogramowanie'; |
| | | $wb['Repositories'] = 'Repozytoria'; |
| | | $wb['Packages'] = 'Pakiety'; |
| | | $wb['Updates'] = 'Aktualizacje'; |
| | | $wb['Language Editor'] = 'Edytor języków'; |
| | | $wb['System'] = 'System'; |
| | | $wb['Add user'] = 'Dodaj użytkownika'; |
| | | $wb['Edit user'] = 'Edytuj użytkownika'; |
| | | $wb['CP Users'] = 'Użytkownicy'; |
| | | $wb['Add group'] = 'Dodaj grupę'; |
| | | $wb['Edit group'] = 'Edytuj grupę'; |
| | | $wb['Edit server'] = 'Edytuj serwer'; |
| | | $wb['Servers'] = 'Serwery'; |
| | | $wb['Sync. Now'] = 'Synchronizuj teraz.'; |
| | | $wb['DB Sync.'] = 'Synchronizacja bazy danych.'; |
| | | $wb['Languages'] = 'Języki'; |
| | | $wb['New Language'] = 'Nowy język'; |
| | | $wb['Merge'] = 'Połącz'; |
| | | $wb['Export'] = 'Eksport'; |
| | | $wb['Import'] = 'Import'; |
| | | $wb['Language Editor'] = 'Edytor języków'; |
| | | $wb['Software'] = 'Oprogramowanie'; |
| | | $wb['Repositories'] = 'Repozytoria'; |
| | | $wb['Server Services'] = 'Usługi serwera'; |
| | | $wb['Interface Config'] = 'Konfiguracja interfejsu'; |
| | | $wb['Packages'] = 'Pakiety'; |
| | | $wb['Updates'] = 'Aktualizacje'; |
| | | $wb['Merge'] = 'Połącz'; |
| | | $wb['Remote Users'] = 'Użytkownicy zdalni'; |
| | | $wb['Remote Actions'] = 'Akcje zdalne'; |
| | | $wb['Do OS-Update'] = 'Wykonaj aktualizację systemu'; |
| | | $wb['Do ISPConfig-Update'] = 'Wykonaj aktualizację ISPConfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['1001'] = 'Nazwa użytkownika lub hasło jest puste.'; |
| | | $wb['1002'] = 'Nazwa użytkownika lub hasło jest błędne.'; |
| | | $wb['User Management'] = 'Zarządzanie użytkownikami'; |
| | | $wb['Rescue'] = 'Rescue'; |
| | | $wb['Server IP addresses'] = 'Adresy IP serwera'; |
| | | $wb['Additional PHP Versions'] = 'Dodatkowe wersje PHP'; |
| | | $wb['Directive Snippets'] = 'Zestawy dyrektyw'; |
| | | $wb['Interface'] = 'Interfejs'; |
| | | $wb['Domains'] = 'Domeny'; |
| | | $wb['Misc'] = 'Różne'; |
| | | ?> |
| | | |
| | |
| | | <?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'] = 'Zestawy dyrektyw'; |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['type_txt'] = 'Rodzaj'; |
| | | $wb['snippet_txt'] = 'Zestaw'; |
| | | $wb['active_txt'] = 'Aktywne'; |
| | | $wb['directive_snippets_name_empty'] = 'Wybierz nazwę dla zestawu dyrektyw'; |
| | | $wb['directive_snippets_name_error_unique'] = 'Istnieje już zestaw dyrektyw o podanej nazwie'; |
| | | ?> |
| | | |
| | |
| | | <?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'] = 'Zestawy dyrektyw'; |
| | | $wb['active_txt'] = 'Aktywne'; |
| | | $wb['name_txt'] = 'Nazwa zestawu'; |
| | | $wb['type_txt'] = 'Rodzaj'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy zestaw dyrektyw'; |
| | | ?> |
| | | |
| | |
| | | $wb['tcp_ports_error_regex'] = 'Znak nie jest dozwolony w formacie portu TCP. Dozwolone znaki to liczby, : oraz ,.'; |
| | | $wb['udp_ports_error_regex'] = 'Znak nie jest dozwolony w formacie portu UDP. Dozwolone znaki to liczby, : oraz ,.'; |
| | | ?> |
| | | |
| | |
| | | $wb['udp_port_txt'] = 'Otwarte porty UDP'; |
| | | $wb['add_new_record_txt'] = 'Dodaj wpis Firewalla'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Grupa'; |
| | | $wb['name_err'] = 'Nazwa grupy musi mieć od 1 do 30 znaków.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Dodaj nową grupę'; |
| | | $wb['warning_txt'] = '<b>OSTRZEŻENIE:</b> Nie modyfikuj żadnych ustawień użytkownika w tym miejscu. Użyj ustawień Klienta lub Resellera w module Klient. Modyfikacja ustawień użytkownika lub grupy tutaj grozi utratą danych!'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['iptables_error_unique'] = 'Istnieje już wpis firewalla dla tego serwera.'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['iptables_error_unique'] = 'Istnieje już wpis firewalla dla tego serwera.'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Utwórz nowy zbiór plików z językami'; |
| | | $wb['btn_cancel_txt'] = 'Wróć'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Połącz pliki teraz'; |
| | | $wb['btn_cancel_txt'] = 'Wróć'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Zapisz'; |
| | | $wb['btn_cancel_txt'] = 'Wróć'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Eksportuj pliki wybranego języka'; |
| | | $wb['btn_cancel_txt'] = 'Wróć'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_cancel_txt'] = 'Wróć'; |
| | | $wb['ignore_version_txt'] = 'Pomiń sprawdzanie wersji ISPConfig'; |
| | | ?> |
| | | |
| | |
| | | $wb['lang_file_txt'] = 'Plik języka'; |
| | | $wb['lang_file_date_txt'] = 'Ostatnia modyfikacja'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['login_1_txt'] = 'Czy chcesz zalogować się jako użytkownik'; |
| | | $wb['login_2_txt'] = 'Po zalogowaniu będziesz mógł wrócić tutaj wylogowując się.'; |
| | | $wb['btn_yes_txt'] = 'Tak, zaloguj jako Klienta'; |
| | | $wb['btn_back_txt'] = 'Nie, wracam do listy'; |
| | | $wb['udp_port_help_txt'] = 'Rozdzielone przecinkami'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['firewall_error_unique'] = 'Istnieje już wpis firewalla dla tego serwera.'; |
| | | $wb['tcp_ports_error_regex'] = 'Niedozwolony znam w definicji portu TCP. Dozwolone są liczby, dwukropek i przecinek (: i ,)'; |
| | | $wb['udp_ports_error_regex'] = 'Niedozwolony znam w definicji portu UDP. Dozwolone są liczby, dwukropek i przecinek (: i ,)'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_password_txt'] = 'Hasło (opcjonalnie)'; |
| | | $wb['active_txt'] = 'Aktywne'; |
| | | ?> |
| | | |
| | |
| | | $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 instructions</a>'; |
| | | ?> |
| | | |
| | |
| | | $wb['DNS srv functions'] = 'Funkcje rekordu SRV DNS'; |
| | | $wb['DNS txt functions'] = 'Funkcje rekordu TXT DNS'; |
| | | $wb['Mail mailing list functions'] = 'Funkcje listy mailingowej'; |
| | | $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['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | ?> |
| | | |
| | |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | ?> |
| | | |
| | |
| | | $wb['proxy_server_txt'] = 'Proxy-Server'; |
| | | $wb['firewall_server_txt'] = 'Firewall-Server'; |
| | | ?> |
| | | |
| | |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Aplikacje cron roota Jailkit'; |
| | | $wb['website_path_txt'] = 'Adres strony WWW'; |
| | | $wb['website_symlinks_txt'] = 'Symulowany link strony WWW'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Twórz linki relatywne'; |
| | | $wb['website_basedir_txt'] = 'Ścieżka bazowa strony WWW'; |
| | | $wb['vhost_conf_dir_txt'] = 'Ścieżka do konfiguracyji wirtualnego serwera'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Ścieżka do aktywnej konfiguracyji Vhost'; |
| | |
| | | $wb['nameservers_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['config_dir_txt'] = 'Katalog konfiguracji'; |
| | | $wb['init_script_txt'] = 'Nazwa skryptu inicjującego Crona'; |
| | | $wb['crontab_dir_txt'] = 'Ścieżka do indywidualnych crontabs'; |
| | | $wb['crontab_dir_txt'] = 'Ścieżka do indywidualnych zadań Cron'; |
| | | $wb['wget_txt'] = 'Ścieżka do wget'; |
| | | $wb['web_user_txt'] = 'Użytkownik Apache'; |
| | | $wb['web_group_txt'] = 'Grupa Apache'; |
| | |
| | | $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['backup_mode_txt'] = 'Tryb tworzenia kopii'; |
| | | $wb['backup_mode_userzip'] = 'Pliki kopii z prawami użytkownika jako zip'; |
| | | $wb['backup_mode_rootgz'] = 'Twórz kopie wszystkich plików w katalogu web jako root'; |
| | | $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['realtime_blackhole_list_note_txt'] = '(oddziel RBL-e przecinkami)'; |
| | | $wb['ssl_settings_txt'] = 'Ustawienia SSL'; |
| | | $wb['permissions_txt'] = 'Uprawnienia'; |
| | | $wb['php_settings_txt'] = 'Ustawienia PHP'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['awstats_settings_txt'] = 'Ustawienia AWStats'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Statystyki użycia skrzynek email'; |
| | | $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['overtraffic_notify_admin_txt'] = 'Prześlij informacje o przekroczeniu transferu do admina'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Prześlij informacje o przekroczeniu transferu do klienta'; |
| | | ?> |
| | | |
| | |
| | | $wb['list_head_txt'] = 'Konfiguracja serwera'; |
| | | $wb['server_name_txt'] = 'Serwer'; |
| | | ?> |
| | | |
| | |
| | | $wb['virtualhost_port_txt'] = 'Porty HTTP'; |
| | | $wb['error_port_syntax'] = 'Nieprawidłowe wartości w polu portów, proszę wpisać tylko liczby oddzielone przecinkiem. Przykładowo: 80,443'; |
| | | ?> |
| | | |
| | |
| | | $wb['virtualhost_port_txt'] = 'Porty HTTP'; |
| | | $wb['ip_type_txt'] = 'Typ'; |
| | | ?> |
| | | |
| | |
| | | $wb['proxy_server_txt'] = 'Proxy'; |
| | | $wb['firewall_server_txt'] = 'Firewall'; |
| | | ?> |
| | | |
| | |
| | | <?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['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_id_txt'] = 'Serwer'; |
| | | $wb['client_id_txt'] = 'Klient'; |
| | | $wb['name_txt'] = 'Nazwa PHP'; |
| | | $wb['Name'] = 'Nazwa'; |
| | | $wb['FastCGI Settings'] = 'Ustawienia FastCGI'; |
| | | $wb['PHP-FPM Settings'] = 'Ustawienia PHP-FPM'; |
| | | $wb['Additional PHP Versions'] = 'Dodatkowe wersje PHP'; |
| | | $wb['Form to edit additional PHP versions'] = 'Formularz do edycji dodatkowych wersji PHP'; |
| | | $wb['server_php_name_error_empty'] = 'Pole Nazwa nie może być puste'; |
| | | $wb['php_fastcgi_binary_txt'] = 'Ścieżka do binarki PHP FastCGI'; |
| | | $wb['php_fastcgi_ini_dir_txt'] = 'Ścieżka do katalogu php.ini'; |
| | | $wb['php_fpm_init_script_txt'] = 'Ścieżka do skryptu inicjującego PHP-FPM'; |
| | | $wb['php_fpm_ini_dir_txt'] = 'Ścieżka do katalogu php.ini'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Ścieżka do katalogu pool PHP-FPM'; |
| | | ?> |
| | | |
| | |
| | | $wb['client_id_txt'] = 'Client'; |
| | | $wb['name_txt'] = 'PHP Name'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Start instalacji'; |
| | | $wb['btn_cancel_txt'] = 'Przerwij'; |
| | | ?> |
| | | |
| | |
| | | $wb['toolsarea_head_txt'] = 'Pakiety'; |
| | | $wb['repoupdate_txt'] = 'Aktualizuj listę pakietów'; |
| | | $wb['package_id_txt'] = 'lokalny App-ID'; |
| | | $wb['no_packages_txt'] = 'Brak dostępnych pakietów'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_password_txt'] = 'Hasło (Opcjonalnie)'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_name_txt'] = 'Repozytoria'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | ?> |
| | | |
| | |
| | | $wb['update_title_txt'] = 'Aktualizacja'; |
| | | $wb['version_txt'] = 'Wersja'; |
| | | $wb['action_txt'] = 'Akcja'; |
| | | $wb['no_updates_txt'] = 'Nie ma dostępnych aktualizacji'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['system_config_desc_txt'] = ''; |
| | | $wb['warning'] = 'Edytuj te wartości ostrożnie! Nie usuwaj prefiksów w systemie w więcej niż jednym kliencie.'; |
| | | $wb['dbname_prefix_txt'] = 'Prefiks nazwy bazy danych'; |
| | | $wb['dbuser_prefix_txt'] = 'Prefiks użytkownika bazy danych'; |
| | |
| | | $wb['enable_custom_login_txt'] = 'Zezwalaj na dowolną nazwę loginu'; |
| | | $wb['mailmailinglist_link_txt'] = 'Link do listy mailingowej na liście list mailingowych'; |
| | | $wb['mailmailinglist_url_txt'] = 'URL listy mailingowej'; |
| | | $wb['admin_mail_txt'] = 'E-Mail administratorów'; |
| | | $wb['admin_mail_txt'] = 'E-Mail administratora'; |
| | | $wb['monitor_key_txt'] = 'Klucz monitora'; |
| | | $wb['admin_name_txt'] = 'Nazwy administratorów'; |
| | | $wb['maintenance_mode_txt'] = 'Maintenance Mode'; |
| | | $wb['smtp_enabled_txt'] = 'Use SMTP to send system mails'; |
| | | $wb['smtp_host_txt'] = 'SMTP host'; |
| | | $wb['smtp_port_txt'] = 'SMTP port'; |
| | | $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['mailbox_show_autoresponder_tab_txt'] = 'Show autoresponder tab in mail account details'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Show mail filter tab in mail account details'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Show custom mailfilter tab in mail account details'; |
| | | $wb['admin_name_txt'] = 'Nazwa administratora'; |
| | | $wb['system_config_desc_txt'] = ''; |
| | | $wb['smtp_missing_admin_mail_txt'] = 'Podaj nazwę administratora oraz adres email jeżeli chcesz użyć wysyłanie maili przez SMTP.'; |
| | | $wb['tab_change_discard_txt'] = 'Porzuć zmiany przy zmianie zakładki'; |
| | | $wb['tab_change_warning_txt'] = 'Ostrzegaj przy zmianie zakładki'; |
| | | $wb['tab_change_warning_note_txt'] = 'Pokaż ostrzeżenie przy zmianie zakładki jeżeli zostały zmienione dane przez użytkownika.'; |
| | | $wb['vhost_subdomains_txt'] = 'Twórz subdomeny jako strony web'; |
| | | $wb['vhost_subdomains_note_txt'] = 'Nie możesz wyłączyć tego tak długo jak istnieją w systemie vhosty subdomen.'; |
| | | $wb['maintenance_mode_txt'] = 'Tryb serwisowy'; |
| | | $wb['smtp_enabled_txt'] = 'Używaj SMTP do wysyłania powiadomień systemowych'; |
| | | $wb['smtp_host_txt'] = 'Host SMTP'; |
| | | $wb['smtp_port_txt'] = 'Port SMTP'; |
| | | $wb['smtp_user_txt'] = 'Użytkownik SMTP'; |
| | | $wb['smtp_pass_txt'] = 'Hasło SMTP'; |
| | | $wb['smtp_crypt_txt'] = 'Użyj połączenia szyfrowanego SSL/TLS dla SMTP'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Nieprawidłowy link do phpmyadmin'; |
| | | $wb['use_combobox_txt'] = 'Użyj jQuery UI Combobox'; |
| | | $wb['use_loadindicator_txt'] = 'Użyj wskaźnika ładowania'; |
| | | $wb['f5_to_reload_js_txt'] = 'Jeżeli zmienisz to, możesz potrzebować wcisnąć F5 lub wyczyścić cache aby przeglądarka przeładowała biblioteki JavaScript.'; |
| | | $wb['client_username_web_check_disabled_txt'] = 'Wyłącz sprawdzanie nazwy klienta w poszukiwaniu słowa -web-.'; |
| | | $wb['mailbox_show_autoresponder_tab_txt'] = 'Pokaż zakładkę autorespondera w szczegółach konta email.'; |
| | | $wb['mailbox_show_mail_filter_tab_txt'] = 'Pokaż zakładkę filtra email w szczegółach konta email.'; |
| | | $wb['mailbox_show_custom_rules_tab_txt'] = 'Pokaż zakładkę własnych filtrów email w szczegółach konta email.'; |
| | | ?> |
| | | |
| | |
| | | $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['groups_txt'] = 'Grupy'; |
| | | $wb['default_group_txt'] = 'Domyślna grupa'; |
| | | $wb['startmodule_err'] = 'Modułu startowego nie ma wśród modułów.'; |
| | | $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['username_error_collision'] = 'The username may not be web or web plus a number.\\"'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | $wb['username_error_collision'] = 'Nazwa użytkownika nie może być web lub web z numerem.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Użytkownicy'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['client_id_txt'] = 'Client ID'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego użytkownika'; |
| | | $wb['warning_txt'] = '<b>OSTRZEŻENIE:</b> Nie edytuj żadnych ustawień tutaj. Użyj do tego celu ustawień Klienta i Resellera w module Klienta. Zmiana użytkowników i grup w tym miejscu może spowodować utratę danych!'; |
| | | $wb['groups_txt'] = 'Groups'; |
| | | $wb['client_id_txt'] = 'User ID'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['groups_txt'] = 'Grupy'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Actualizar'; |
| | | $wb['version_txt'] = 'Versão'; |
| | | $wb['action_txt'] = 'Acção'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Update'; |
| | | $wb['version_txt'] = 'Versiune'; |
| | | $wb['action_txt'] = 'Actiune'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['version_txt'] = 'Версия'; |
| | | $wb['action_txt'] = 'Действие'; |
| | | $wb['server_select_txt'] = 'Выберите сервер'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['server_select_txt'] = 'Select server'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Aktualizácia '; |
| | | $wb['version_txt'] = 'Verzia'; |
| | | $wb['action_txt'] = 'Akcia'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['login_1_txt'] = 'Do you want to login as user'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \"go back\" by clicking at logout.'; |
| | | $wb['login_2_txt'] = 'If you do so, you can \\"go back\\" by clicking at logout.'; |
| | | $wb['btn_yes_txt'] = 'Yes, login as Client'; |
| | | $wb['btn_back_txt'] = 'No, back to list'; |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \":\" and \",\".'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, \\":\\" and \\",\\".'; |
| | | ?> |
| | |
| | | $wb['toolsarea_head_txt'] = 'Packages'; |
| | | $wb['repoupdate_txt'] = 'Update package list'; |
| | | $wb['package_id_txt'] = 'local App-ID'; |
| | | $wb['no_packages_txt'] = 'No packages available'; |
| | | ?> |
| | |
| | | $wb['update_title_txt'] = 'Güncelleme'; |
| | | $wb['version_txt'] = 'Versiyon'; |
| | | $wb['action_txt'] = 'Eylem'; |
| | | $wb['no_updates_txt'] = 'No updates available'; |
| | | ?> |
| | |
| | | |
| | | $servers = $app->db->queryAllRecords('SELECT server_id, server_name FROM server ORDER BY server_name'); |
| | | $packages = $app->db->queryAllRecords('SELECT * FROM software_package'); |
| | | if(is_array($packages)) { |
| | | if(is_array($packages) && count($packages) > 0) { |
| | | foreach($packages as $key => $p) { |
| | | $installed_txt = ''; |
| | | foreach($servers as $s) { |
| | |
| | | } |
| | | } |
| | | } |
| | | $packages[$key]['software_update_inst_id'] = $inst['software_update_inst_id']; |
| | | $packages[$key]['software_update_inst_id'] = intval($inst['software_update_inst_id']); |
| | | $packages[$key]['installed'] = $installed_txt; |
| | | } |
| | | $app->tpl->setVar('has_packages',1); |
| | | } else { |
| | | $app->tpl->setVar('has_packages',0); |
| | | } |
| | | |
| | | |
| | |
| | | <thead> |
| | | <tr class="caption"> |
| | | <th class="tbl_col_server_id" scope="col"><tmpl_var name="server_id_txt"></th> |
| | | <th class="tbl_col_clientname" scope="col"><tmpl_var name="client_id_txt"></th> |
| | | <th class="tbl_col_phpname" scope="col"><tmpl_var name="name_txt"></th> |
| | | <th class="tbl_col_client_id" scope="col"><tmpl_var name="client_id_txt"></th> |
| | | <th class="tbl_col_name" scope="col"><tmpl_var name="name_txt"></th> |
| | | <th class="tbl_col_buttons" scope="col">{tmpl_var name='search_limit'}</th> |
| | | </tr> |
| | | <tr class="filter"> |
| | | <td class="tbl_col_server_id"><select name="search_server_id">{tmpl_var name='search_server_id'}</select></td> |
| | | <td class="tbl_col_clientname"><select name="search_client_id">{tmpl_var name='search_client_id'}</select></td> |
| | | <td class="tbl_col_phpname"><input type="text" name="search_name" value="{tmpl_var name='search_name'}" /></td> |
| | | <td class="tbl_col_client_id"><select name="search_client_id">{tmpl_var name='search_client_id'}</select></td> |
| | | <td class="tbl_col_name"><input type="text" name="search_name" value="{tmpl_var name='search_name'}" /></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','admin/server_php_list.php');"><span>{tmpl_var name="filter_txt"}</span></button> |
| | | </td> |
| | |
| | | <tmpl_loop name="records"> |
| | | <tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> |
| | | <td class="tbl_col_server_id"><a href="#" onclick="loadContent('admin/server_php_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="server_id"}</a></td> |
| | | <td class="tbl_col_clientname"><a href="#" onclick="loadContent('admin/server_php_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="client_id"}</a></td> |
| | | <td class="tbl_col_phpname"><a href="#" onclick="loadContent('admin/server_php_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="name"}</a></td> |
| | | <td class="tbl_col_client_id"><a href="#" onclick="loadContent('admin/server_php_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="client_id"}</a></td> |
| | | <td class="tbl_col_name"><a href="#" onclick="loadContent('admin/server_php_edit.php?id={tmpl_var name='id'}');">{tmpl_var name="name"}</a></td> |
| | | <td class="tbl_col_buttons"> |
| | | <a class="button icons16 icoDelete" href="javascript: del_record('admin/server_php_del.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span>{tmpl_var name='delete_txt'}</span></a> |
| | | </td> |
| | |
| | | </thead> |
| | | <tbody> |
| | | <tmpl_loop name="records"> |
| | | <tmpl_if name="has_packages"> |
| | | <tr class="tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> |
| | | <td class="tbl_col_installed">{tmpl_var name="installed"}</td> |
| | | <td class="tbl_col_package_title">{tmpl_var name="package_title"}</td> |
| | | <td class="tbl_col_package_description">{tmpl_var name="package_description"}</td> |
| | | <td class="tbl_col_package_description">ispapp{tmpl_var name="package_id"}</td> |
| | | <td class="tbl_col_buttons"> |
| | | <a class="button icons16 icoDelete" href="javascript: del_record('admin/software_package_del.php?software_update_inst_id={tmpl_var name="software_update_inst_id"}','{tmpl_var name='delete_confirmation'}');"><span>{tmpl_var name='delete_txt'}</span></a> |
| | | <a class="button icons16 icoDelete" href="javascript: del_record('admin/software_package_del.php?software_update_inst_id={tmpl_var name='software_update_inst_id'}','{tmpl_var name='delete_confirmation'}');"><span>{tmpl_var name='delete_txt'}</span></a> |
| | | </td> |
| | | </tr> |
| | | </tmpl_if> |
| | | </tmpl_loop> |
| | | <tmpl_unless name="records"> |
| | | <tr class="tbl_row_noresults tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> |
| | | <td colspan="5">{tmpl_var name='globalsearch_noresults_text_txt'}</td> |
| | | <td colspan="5">{tmpl_var name='no_packages_txt'}</td> |
| | | </tr> |
| | | </tmpl_unless> |
| | | </tbody> |
| | |
| | | </tmpl_loop> |
| | | <tmpl_unless name="records"> |
| | | <tr class="tbl_row_noresults tbl_row_<tmpl_if name='__EVEN__'}even<tmpl_else>uneven</tmpl_if>"> |
| | | <td colspan="3">{tmpl_var name='globalsearch_noresults_text_txt'}</td> |
| | | <td colspan="3">{tmpl_var name='no_updates_txt'}</td> |
| | | </tr> |
| | | </tmpl_unless> |
| | | </tbody> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['limit_hterror_txt'] = 'Custom error docs available'; |
| | | $wb['limit_wildcard_txt'] = 'Wildcard subdomain available'; |
| | | $wb['limit_ssl_txt'] = 'SSL available'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['error_client_can_not_add_domain'] = 'Nemůžete přidat novou doménu'; |
| | | $wb['error_client_group_id_empty'] = 'Musíte vybrat zákazníka<br>'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['paypal_email_error_isemail'] = 'Zadejte prosím platnou PayPal e-mail addresu.'; |
| | | $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.'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['description_txt'] = 'Popis'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['delete_txt'] = 'Smazat'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Smazat klienta'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit bez smazání klienta'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['all_clients_txt'] = 'Všichni klienti'; |
| | | $wb['variables_txt'] = 'Výběr (možnosti):'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron pracovní limity'; |
| | | $wb['dns_limits_txt'] = 'DNS limity'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualizace limity'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['template_type_txt'] = 'Typ'; |
| | | $wb['template_name_txt'] = 'Název šablony'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['customer_no_txt'] = 'Zákaznické číslo'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['domain_error_regex'] = 'This domain-name is not allowed'; |
| | | $wb['Domain'] = 'Doména'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['user_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['bank_name_txt'] = 'Název banky'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['customer_no_txt'] = 'Zákaznické číslo'; |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['email_error_isemail'] = 'Bitte geben Sie eine gültige E-Mail 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 \'Custon\' ausgewählt ist!'; |
| | | $wb['err_msg_master_tpl_set'] = 'Die hier eingestellten Werte werden ignoriert, wenn als Mastervorlage nicht -Custom- ausgewählt ist!'; |
| | | $wb['aps_limits_txt'] = 'APS Installationsassistent Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. Anzahl an APS-Instanzen'; |
| | | $wb['limit_aps_error_notint'] = 'Das APS Instanzen Limit muss eine Zahl sein.'; |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['Edit Reseller'] = 'Edytuj Resellera'; |
| | | $wb['Resellers'] = 'Resellerzy'; |
| | | $wb['error_has_clients'] = 'Reseller posiada klientów. Usuń ich zanim usuniesz resellera.'; |
| | | $wb['add_additional_template_txt'] = 'Add additional template'; |
| | | $wb['delete_additional_template_txt'] = 'Delete additional template'; |
| | | $wb['Messaging'] = 'Messaging'; |
| | | $wb['Send email'] = 'Send Email'; |
| | | $wb['Edit Client Circle'] = 'Edit Client Circle'; |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $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['add_additional_template_txt'] = 'Dodaj dodatkowy szablon'; |
| | | $wb['delete_additional_template_txt'] = 'Usuń dodatkowy szablon'; |
| | | $wb['Messaging'] = 'Wiadomości dla klientów'; |
| | | $wb['Send email'] = 'Wyślij email'; |
| | | $wb['Edit Client Circle'] = 'Edytuj grupy klientów'; |
| | | $wb['Domains'] = 'Domeny'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['error_domain_in mailuse'] = 'Ta domena nie może zostać usunięta ponieważ jest używana jako domena dla poczty email.'; |
| | | $wb['error_domain_in webuse'] = 'Ta domena nie może zostać usunięta ponieważ jest używana jako domena dla strony www.'; |
| | | $wb['error_client_can_not_add_domain'] = 'Nie możesz dodać nowej domeny'; |
| | | $wb['error_client_group_id_empty'] = 'Musisz wybrać klienta<br>'; |
| | | ?> |
| | | |
| | |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['internet_txt'] = 'Strona www'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['icq_txt'] = 'GG'; |
| | | $wb['notes_txt'] = 'Notatki'; |
| | | $wb['company_txt'] = 'Firma'; |
| | | $wb['title_txt'] = 'Tytuł'; |
| | | $wb['firstname_txt'] = 'Imię'; |
| | | $wb['surname_txt'] = 'Nazwisko'; |
| | | $wb['limit_domain_txt'] = 'limit_domen'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomen'; |
| | | $wb['limit_webquota_txt'] = 'limit_pojemnosci_www'; |
| | | $wb['limit_domain_txt'] = 'Limit domen'; |
| | | $wb['limit_subdomain_txt'] = 'Limit subdomen'; |
| | | $wb['limit_webquota_txt'] = 'Limit pojemności www'; |
| | | $wb['limit_database_txt'] = 'Maksymalna ilość bazy danych'; |
| | | $wb['limit_cron_txt'] = 'Maksymalna ilość zadań cron'; |
| | | $wb['limit_cron_type_txt'] = 'Maksymalny typ zadań cron (chroot i full implikuje url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Minimalny odstęp czasowy między uruchomieniem'; |
| | | $wb['ip_address_txt'] = 'adres_ip'; |
| | | $wb['limit_cron_type_txt'] = 'Dostępne typy zadań cron (chroot i full implikuje url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Odstęp czasowy między uruchomieniem'; |
| | | $wb['ip_address_txt'] = 'Adres IP'; |
| | | $wb['limit_client_error_notint'] = 'Limit subklientów musi być liczbą.'; |
| | | $wb['firstname_error_empty'] = 'Imię jest puste.'; |
| | | $wb['contact_error_empty'] = 'Nazwa kontaktu jest pusta.'; |
| | |
| | | $wb['customer_no_txt'] = 'Klient nr'; |
| | | $wb['vat_id_txt'] = 'NIP'; |
| | | $wb['required_fields_txt'] = '* Wymagane pola'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. number of mailing lists'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'The mailing list record limit must be a number.'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $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['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['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'] = 'Bank account no.'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Maks. liczba list mailingowych'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'Limit list mailingowych musi być liczbą'; |
| | | $wb['company_id_txt'] = 'Regon'; |
| | | $wb['limit_openvz_vm_txt'] = 'Maks. liczba serwerów wirtualnych'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Wymuś szablon wirtualnych serwerów'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'Limit wirtualnych serwerów musi być liczbą'; |
| | | $wb['web_php_options_notempty'] = 'Nie wybrano żadnej opcji PHP. Wybierz przynajmniej jedną.'; |
| | | $wb['ssh_chroot_notempty'] = 'Nie wybrano żadnej opcji SSH. Wybierz przynajmniej jedną.'; |
| | | $wb['username_error_collision'] = 'Nawza użytkownika nie może się zaczynać od słowa -web- lub -web- poprzedzonego numerem.'; |
| | | $wb['active_template_additional_txt'] = 'Aktywne dodatki'; |
| | | $wb['add_additional_template_txt'] = 'Dodaj dodatkowy szablon'; |
| | | $wb['delete_additional_template_txt'] = 'Usuń dodatkowy szablon'; |
| | | $wb['limit_cgi_txt'] = 'CGI dostępne'; |
| | | $wb['limit_ssi_txt'] = 'SSI dostępne'; |
| | | $wb['limit_perl_txt'] = 'Perl dostępny'; |
| | | $wb['limit_ruby_txt'] = 'Ruby dostępne'; |
| | | $wb['limit_python_txt'] = 'Python dostępny'; |
| | | $wb['force_suexec_txt'] = 'Wymuszone SuEXEC'; |
| | | $wb['limit_hterror_txt'] = 'Strony błędów użytkownika dostępne'; |
| | | $wb['limit_wildcard_txt'] = 'Dostępne domeny wildcard'; |
| | | $wb['limit_ssl_txt'] = 'SSL dostępne'; |
| | | $wb['bank_account_number_txt'] = 'Numer konta'; |
| | | $wb['bank_account_owner_txt'] = 'Właściciel konta'; |
| | | $wb['bank_code_txt'] = 'Kod Banku'; |
| | | $wb['bank_name_txt'] = 'Nazwa Banku'; |
| | | $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['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['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.'; |
| | | $wb['web_limits_txt'] = 'Limity WWW'; |
| | | $wb['email_limits_txt'] = 'Limity E-mail'; |
| | | $wb['database_limits_txt'] = 'Limity Baz Danych'; |
| | | $wb['cron_job_limits_txt'] = 'Limity Zadań Cron'; |
| | | $wb['dns_limits_txt'] = 'Limity DNS'; |
| | | $wb['virtualization_limits_txt'] = 'Limity Wirtualizacji'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | $wb['email_error_isemail'] = 'Proszę wpisać prawidłowy adres e-mail'; |
| | | $wb['customer_no_error_unique'] = 'Numer klienta musi być unikalny (lub pusty)'; |
| | | $wb['paypal_email_error_isemail'] = 'Proszę wpisać prawidłowe konto e-mail PayPal'; |
| | | $wb['paypal_email_txt'] = 'Konto PayPal'; |
| | | $wb['err_msg_master_tpl_set'] = 'All custom limit settings are ignored if any master template other than '; |
| | | $wb['aps_limits_txt'] = 'Limity Instalatora APS'; |
| | | $wb['limit_aps_txt'] = 'Maks. liczba instalacji APS'; |
| | | $wb['limit_aps_error_notint'] = 'Limit instalacji APS musi być liczbą'; |
| | | ?> |
| | | |
| | |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | | |
| | |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Usuń klienta'; |
| | | $wb['btn_cancel_txt'] = 'Anuluj bez usuwania klienta'; |
| | | ?> |
| | | |
| | |
| | | <?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'] = 'Wyślij wiadomość'; |
| | | $wb['btn_cancel_txt'] = 'Anuluj'; |
| | | $wb['sender_txt'] = 'Adres nadawcy'; |
| | | $wb['subject_txt'] = 'Temat'; |
| | | $wb['message_txt'] = 'Wiadomość'; |
| | | $wb['form_legend_client_txt'] = 'Wyślij wiadomość do wszystkich klientów'; |
| | | $wb['form_legend_admin_txt'] = 'Wyślij wiadomość do wszystkich klientów i sprzedawców'; |
| | | $wb['sender_invalid_error'] = 'Adres nadawcy jest nieprawidłowy.'; |
| | | $wb['subject_invalid_error'] = 'Temat jest pusty!'; |
| | | $wb['message_invalid_error'] = 'Wiadomość jest pusta.'; |
| | | $wb['email_sent_to_txt'] = 'Email wysłany do:'; |
| | | $wb['page_head_txt'] = 'Wyślij informację dla klienta'; |
| | | $wb['recipient_txt'] = 'Odbiorca'; |
| | | $wb['all_clients_resellers_txt'] = 'Wszyscy klienci i resellerzy'; |
| | | $wb['all_clients_txt'] = 'Wszyscy klienci'; |
| | | $wb['variables_txt'] = 'Zmienne:'; |
| | | ?> |
| | | |
| | |
| | | $wb['error_template_name_empty'] = 'Proszę wpisać nazwę szablonu'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Maksymalna ilość aliasów domeny e-mail'; |
| | | $wb['limit_mailaliasdomain_error_notint'] = 'Limit aliasów domeny e-mail musi być liczbą.'; |
| | | $wb['limit_web_quota_txt'] = 'Limit przestrzeni'; |
| | | $wb['limit_web_quota_txt'] = 'Limit przestrzeni web'; |
| | | $wb['limit_traffic_quota_txt'] = 'Limit transferu'; |
| | | $wb['limit_trafficquota_error_notint'] = 'Limit przestrzeni musi być liczbą.'; |
| | | $wb['template_del_aborted_txt'] = 'Usuwanie przerwane. Istnieje klient używający ciągle tego szablonu.'; |
| | | $wb['limit_webdav_user_txt'] = 'Maksymalna ilość użytkowników webdav'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Limit użytkowników webdav musi być liczbą.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. number of mailing lists'; |
| | | $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['limit_webdav_user_txt'] = 'Maksymalna ilość kont webdav'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Limit kont webdav musi być liczbą.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Maks. liczba list mailingowych'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'Limit list mailingowych musi być liczbą'; |
| | | $wb['limit_openvz_vm_txt'] = 'Maks. liczba wirtualnych serwerów'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Wymuś szablon dla wirtualnych serwerów'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'Limit wirtualnych serwerów musi być liczbą'; |
| | | $wb['ssh_chroot_txt'] = 'Opcje SSH-Chroot'; |
| | | $wb['web_php_options_txt'] = 'Opcje PHP'; |
| | | $wb['template_type_txt'] = 'Rodzaj szablonu'; |
| | | $wb['template_name_txt'] = 'Nazwa szablonu'; |
| | | $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['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_cgi_txt'] = 'CGI dostępne'; |
| | | $wb['limit_ssi_txt'] = 'SSI dostępne'; |
| | | $wb['limit_perl_txt'] = 'Perl dostępny'; |
| | | $wb['limit_ruby_txt'] = 'Ruby dostępne'; |
| | | $wb['limit_python_txt'] = 'Python dostępny'; |
| | | $wb['force_suexec_txt'] = 'Wymuszone SuEXEC'; |
| | | $wb['limit_hterror_txt'] = 'Dostępne własne strony błędów'; |
| | | $wb['limit_wildcard_txt'] = 'Dostępne subdomeny wildcard'; |
| | | $wb['limit_ssl_txt'] = 'SSL dostępne'; |
| | | $wb['web_limits_txt'] = 'Limity WWW'; |
| | | $wb['email_limits_txt'] = 'Limity E-mail'; |
| | | $wb['database_limits_txt'] = 'Limity Baz danych'; |
| | | $wb['cron_job_limits_txt'] = 'Limit zadań Cron'; |
| | | $wb['dns_limits_txt'] = 'Limit DNS'; |
| | | $wb['virtualization_limits_txt'] = 'Limit Wirtualizacji'; |
| | | $wb['aps_limits_txt'] = 'Limit Instalatora APS'; |
| | | $wb['limit_aps_txt'] = 'Maks. liczba instancji APS'; |
| | | $wb['limit_aps_error_notint'] = 'Limit instancji APS musi być liczbą'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_type_txt'] = 'Typ'; |
| | | $wb['template_name_txt'] = 'Nazwa szablonu'; |
| | | ?> |
| | | |
| | |
| | | $wb['country_txt'] = 'Kraj'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego klienta'; |
| | | $wb['username_txt'] = 'Login'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['customer_no_txt'] = 'Nr klienta'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_regex'] = 'Nazwa domeny jest niedopuszczalna'; |
| | | $wb['Domain'] = 'Domena'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['user_txt'] = 'Client'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_cron_txt'] = 'Maksymalna ilość zadań crone'; |
| | | $wb['limit_cron_type_txt'] = 'Maksymalna ilość typów zadań corne (zadania admina oraz sugerowane url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Minimalne odstępy między zadaniami'; |
| | | $wb['ip_address_txt'] = 'adres_ip'; |
| | | $wb['ip_address_txt'] = 'Adres IP'; |
| | | $wb['limit_client_error_notint'] = 'Ilość klientów musi być liczbą.'; |
| | | $wb['firstname_error_empty'] = 'Imię jest puste.'; |
| | | $wb['contact_error_empty'] = 'Nazwa kontaktu jest pusta.'; |
| | |
| | | $wb['limit_mailaliasdomain_txt'] = 'Maks. ilość aliasów domen e-mail'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'The mailing list record limit must be a number.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Maks. ilość wirtualnych serwerów'; |
| | | $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['limit_openvz_vm_template_id_txt'] = 'Wymuś użycie szablonu wirtualnego serwera'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'Limit wirtualnych serwerów musi być liczbą'; |
| | | $wb['web_php_options_notempty'] = 'Nie wybrano żadnej opcji PHP. Wybierz przynajmniej jedną.'; |
| | | $wb['ssh_chroot_notempty'] = 'Nie wybrano żadnej opcji SSH. Wybierz przynajmniej jedną.'; |
| | | $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['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['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['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['add_additional_template_txt'] = 'Dodaj dodatkowy szablon'; |
| | | $wb['delete_additional_template_txt'] = 'Usuń dodatkowy szablon'; |
| | | $wb['limit_cgi_txt'] = 'CGI dostępne'; |
| | | $wb['limit_ssi_txt'] = 'SSI dostępne'; |
| | | $wb['limit_perl_txt'] = 'Perl dostępne'; |
| | | $wb['limit_ruby_txt'] = 'Ruby dostępne'; |
| | | $wb['limit_python_txt'] = 'Python dostępne'; |
| | | $wb['force_suexec_txt'] = 'Wymuś SuEXEC'; |
| | | $wb['limit_hterror_txt'] = 'Własne strony błędów włączone'; |
| | | $wb['limit_wildcard_txt'] = 'Dostępne subdomeny wildcard'; |
| | | $wb['limit_ssl_txt'] = 'SSL dostępne'; |
| | | $wb['web_limits_txt'] = 'Limity WWW'; |
| | | $wb['email_limits_txt'] = 'Limity E-mail'; |
| | | $wb['database_limits_txt'] = 'Limity bazy danych'; |
| | | $wb['cron_job_limits_txt'] = 'Limity zadań Cron'; |
| | | $wb['dns_limits_txt'] = 'Limity DNS'; |
| | | $wb['virtualization_limits_txt'] = 'Limity Wirtualizacji'; |
| | | $wb['generate_password_txt'] = 'Wygeneruj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują'; |
| | | $wb['password_match_txt'] = 'Hasła pasują do siebie'; |
| | | $wb['email_error_isemail'] = 'Podaj poprawny adres email'; |
| | | $wb['customer_no_error_unique'] = 'Numer klienta musi być unikalny (lub pusty)'; |
| | | $wb['paypal_email_error_isemail'] = 'Podaj poprawny email PayPal'; |
| | | $wb['paypal_email_txt'] = 'Konto PayPal'; |
| | | $wb['company_id_txt'] = 'Regon'; |
| | | $wb['bank_account_number_txt'] = 'Numer konta'; |
| | | $wb['bank_account_owner_txt'] = 'Właściciel konta'; |
| | | $wb['bank_code_txt'] = 'Kod Banku'; |
| | | $wb['bank_name_txt'] = 'Nazwa Banku'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'Limit instalacji APS'; |
| | | $wb['limit_aps_txt'] = 'Maks. liczba instancji APS'; |
| | | $wb['limit_aps_error_notint'] = 'Limit instancji APS musi być liczbą'; |
| | | ?> |
| | | |
| | |
| | | $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['customer_no_txt'] = 'Nr klienta'; |
| | | $wb['username_txt'] = 'Login'; |
| | | ?> |
| | | |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $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['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['cron_job_limits_txt'] = 'Cron Job Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualization Limits'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['aps_limits_txt'] = 'APS Installer Limits'; |
| | | $wb['limit_aps_txt'] = 'Max. number of APS instances'; |
| | | $wb['limit_aps_error_notint'] = 'The APS instances limit must be a number.'; |
| | | ?> |
| | |
| | | </div> |
| | | |
| | | </div> |
| | | <tmpl_if name="is_admin"> |
| | | <script type="text/javascript"> |
| | | <!-- |
| | | function custom_template_selected() { |
| | |
| | | |
| | | //--> |
| | | </script> |
| | | </tmpl_if> |
| | |
| | | $wb['welcome_user_txt'] = 'Vítejte %s'; |
| | | $wb['available_modules_txt'] = 'Dostupné moduly'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['limit_database_txt'] = 'Počet databází'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Počet e-mailových konferencí'; |
| | | ?> |
| | | |
| | | |
| | |
| | | <?php |
| | | $wb['available_modules_txt'] = 'Dostupné moduly'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['welcome_user_txt'] = 'Witaj %s'; |
| | | $wb['available_modules_txt'] = 'Dostępne moduły'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_database_txt'] = 'Liczba baz danych'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Liczba list mailingowych'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['available_modules_txt'] = 'Dostępne moduły'; |
| | | ?> |
| | | |
| | |
| | | $wb['auth_preset_perm_group_txt'] = 'Opr. Skupina'; |
| | | $wb['auth_preset_perm_other_txt'] = 'Opr. Ostatní'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['title_txt'] = 'Titulek'; |
| | | $wb['description_txt'] = 'Popis'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Delete menu with all menuitems?'; |
| | | $wb['item_del_txt'] = 'Delete menuitem?'; |
| | | ?> |
| | | |
| | | |
| | |
| | | <b>Rada:</b> Všechny cesty jsou relativně k adresáři web web. |
| | | '; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['title_txt'] = 'Titulek'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['save_txt'] = 'Uložit'; |
| | | $wb['cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['save_txt'] = 'Uložit'; |
| | | $wb['cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Wollen Sie das Menü mit allen Untereinträgen löschen?'; |
| | | $wb['item_del_txt'] = 'Wollen Sie den Menüeintrag löschen?'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['auth_preset_perm_group_txt'] = 'Stała grupa'; |
| | | $wb['auth_preset_perm_other_txt'] = 'Stała inna'; |
| | | ?> |
| | | |
| | |
| | | $wb['title_txt'] = 'Tytuł'; |
| | | $wb['description_txt'] = 'Opis'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Usunąć menu i wszystkie jego elementy?'; |
| | | $wb['item_del_txt'] = 'Usunąc element menu?'; |
| | | ?> |
| | | |
| | |
| | | <b>Podpowiedź:</b> Wszystkie ścieżki są względne według strony www.. |
| | | '; |
| | | ?> |
| | | |
| | |
| | | $wb['module_txt'] = 'Moduł'; |
| | | $wb['title_txt'] = 'Tytuł'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Zapisz'; |
| | | $wb['cancel_txt'] = 'Usuń'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Zapisz'; |
| | | $wb['cancel_txt'] = 'Usuń'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Czy na pewno chcesz usunąć menu z wszystkimi wpisami?'; |
| | | $wb['item_del_txt'] = 'Czy na pewno chcesz usunąć wpis w menu?'; |
| | | ?> |
| | | |
| | |
| | | parent::onSubmit(); |
| | | } |
| | | |
| | | function onInsert() { |
| | | global $app, $conf; |
| | | |
| | | // Check if record is existing already |
| | | $duplicate_mx = $app->db->queryOneRecord("SELECT * FROM dns_rr WHERE zone = ".$app->functions->intval($this->dataRecord["zone"])." AND name = '".$this->dataRecord["name"]."' AND type = '".$this->dataRecord["type"]."' AND data = '".$this->dataRecord["data"]."' AND ".$app->tform->getAuthSQL('r')); |
| | | |
| | | if(is_array($duplicate_mx) && !empty($duplicate_mx)) $app->error($app->tform->wordbook["duplicate_mx_record_txt"]); |
| | | |
| | | parent::onInsert(); |
| | | } |
| | | |
| | | function onAfterInsert() { |
| | | global $app, $conf; |
| | | |
| | |
| | | 'type' => 'TOLOWER') |
| | | ), |
| | | 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^[\w\.\-\*]{0,64}$/', |
| | | 'regex' => '/^[\a-zA-Z0-9\.\-\*]{0,64}$/', |
| | | 'errmsg'=> 'name_error_regex'), |
| | | ), |
| | | 'default' => '', |
| | |
| | | $wb['Secondary Zones'] = 'Sekundární DNS zóny'; |
| | | $wb['Import Zone File'] = 'Importovat vybraný DNS zonový soubor'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['data_error_regex'] = 'IP adresa má chybný formát'; |
| | | $wb['data_error_duplicate'] = 'Duplikace A záznamu'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Skutečně chcete smazat tento záznam?'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['data_error_empty'] = 'IP adresa je prázdná'; |
| | | $wb['data_error_regex'] = 'IP adresa má chybný formát'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Cílový Hostname je prázdný'; |
| | | $wb['data_error_regex'] = 'Cílový Hostname má chybný formát'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['name_error_regex'] = 'Hostname má chybný formát.'; |
| | | $wb['data_error_empty'] = 'Cílový hostname je prázdný'; |
| | | $wb['data_error_regex'] = 'Cílový hostname má chybný formát'; |
| | | $wb['data_error_duplicate'] = 'Duplicate A-Record or CNAME-Record'; |
| | | $wb['data_error_duplicate'] = 'Duplikace A záznamu nebo CNAME-záznamu'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Informace o hostovi je prázdná'; |
| | | $wb['data_error_regex'] = 'Informace o hostovi má chybný formát'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Importovat vybraný DNS zonový soubor'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['zone_file_successfully_imported_txt'] = 'The zone file has successfully been imported!'; |
| | | $wb['zone_file_successfully_imported_txt'] = 'Zónový soubor byl úspěšně importován !'; |
| | | $wb['error_no_valid_zone_file_txt'] = 'This appears to be no valid zone file!'; |
| | | $wb['zonefile_to_import_txt'] = 'Vybrat soubor s DNS zónou '; |
| | | $wb['domain_field_desc_txt'] = 'Může být ponechána nevyplněná, pokud je název domény názvem souboru nebo je v obsahu souboru s DNS zónou.'; |
| | |
| | | $wb['no_file_uploaded_error'] = 'Nelze odeslat DNS zonový soubor'; |
| | | $wb['zone_file_import_txt'] = 'Importovat vybraný DNS zonový soubor'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['zone_txt'] = 'Zóna'; |
| | | $wb['name_txt'] = 'Hostname'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['data_txt'] = 'Hostname mailserveru'; |
| | | $wb['data_txt'] = 'Hostname e-mailového serveru'; |
| | | $wb['aux_txt'] = 'Priorita'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | |
| | | $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['data_error_empty'] = 'Hostname e-mailového serveru je prázdný'; |
| | | $wb['data_error_regex'] = 'Hostname e-mailového serveru má chybný formát'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Jmenný server je prázdný'; |
| | | $wb['data_error_regex'] = 'Jmenný server má chybný formát'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Kanonický hostname je prázdný'; |
| | | $wb['data_error_regex'] = 'Kanonického hostname má chybný formát'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Odpovědná osoba je prázdná'; |
| | | $wb['data_error_regex'] = 'Odpovědná osoba má chybný formát'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['ipv4_form_txt'] = 'IPV4 formát, např. 1.2.3.4'; |
| | | $wb['secondary_zone_txt'] = 'Sekundární DNS zóna'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat sekundární DNS zónu'; |
| | | $wb['eg_domain_tld'] = 'např. domena.cz'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['eg_ns1_domain_tld'] = 'např. ns1.domena.cz'; |
| | | $wb['eg_webmaster_domain_tld'] = 'např. webmaster@domena.cz'; |
| | | $wb['The Domain can not be changed. Please ask your Administrator if you want to change the domain name.'] = 'Doménu není možné měnit. Prosím, kontaktujte svého správce, pokud chcete změnit název domény.'; |
| | | $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['minimum_range_error'] = 'Min. Minimum time is 60 seconds.'; |
| | | $wb['ttl_range_error'] = 'Min. TTL time is 60 seconds.'; |
| | | $wb['xfer_error_regex'] = 'Also notify: Please use an IP address.'; |
| | | $wb['refresh_range_error'] = 'Min. čas obnovení je 60 sekund.'; |
| | | $wb['retry_range_error'] = 'Min. čas nového opakování je 60 sekund.'; |
| | | $wb['expire_range_error'] = 'Min. expirační doba je 60 sekund.'; |
| | | $wb['minimum_range_error'] = 'Minimální doba je 60 sekund.'; |
| | | $wb['ttl_range_error'] = 'Min. TTL čas je 60 sekund.'; |
| | | $wb['xfer_error_regex'] = 'Také oznámí: Prosím, použijte IP adresu.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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)'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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['template_txt'] = 'Šablona'; |
| | | $wb['visible_txt'] = 'Viditelný'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['name_txt'] = 'Název'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Text je prázdný'; |
| | | $wb['data_error_regex'] = 'Text má chybný formát'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['ns1_txt'] = 'NS 1'; |
| | | $wb['ns2_txt'] = 'NS 2'; |
| | | $wb['ip_txt'] = 'IP adresa'; |
| | | $wb['error_origin_empty'] = 'Origin je prázdný.'; |
| | | $wb['error_origin_empty'] = 'Zdroj je prázdný.'; |
| | | $wb['error_ns_empty'] = 'NS je prázdný.'; |
| | | $wb['error_mbox_empty'] = 'Mbox je prázdný.'; |
| | | $wb['error_refresh_empty'] = 'Refresh je prázdný.'; |
| | |
| | | $wb['list_head_txt'] = 'Průvodce vytvořením DNS zóny'; |
| | | $wb['list_desc_txt'] = 'Vytvoření DNS zóny pomocí průvodce'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['name_error_regex'] = 'Der Hostname hat das falsche Format.'; |
| | | $wb['data_error_empty'] = 'Mailserver Hostname ist leer'; |
| | | $wb['data_error_regex'] = 'Mailserver Hostname Format ist ungültig'; |
| | | $wb["duplicate_mx_record_txt"] = 'Doppelter MX-Eintrag.'; |
| | | ?> |
| | |
| | | $wb["name_error_regex"] = 'The hostname has the wrong format.'; |
| | | $wb["data_error_empty"] = 'Mailserver hostname empty'; |
| | | $wb["data_error_regex"] = 'Mailserver hostname format invalid'; |
| | | $wb["duplicate_mx_record_txt"] = 'Duplicate MX record.'; |
| | | ?> |
| | |
| | | $wb["mbox_error_regex"] = 'Email format invalid.'; |
| | | $wb["also_notify_txt"] = 'Also Notify'; |
| | | $wb['also_notify_error_regex'] = 'Also notify: Please use an IP address.'; |
| | | $wb['xfer_error_regex'] = 'Also notify: Please use an IP address.'; |
| | | $wb['xfer_error_regex'] = 'Xfer: Please use an IP address.'; |
| | | $wb["update_acl_txt"] = 'Update ACL'; |
| | | $wb['seconds_txt'] = 'Seconds'; |
| | | $wb['eg_domain_tld'] = 'e.g. domain.tld'; |
| | |
| | | $wb['DNS Wizard'] = 'Kreator DNS'; |
| | | $wb['Add DNS Zone'] = 'Dodaj strefę DNS'; |
| | | $wb['Templates'] = 'Szablony'; |
| | | $wb['Secondary Zones'] = 'Secondary Zones'; |
| | | $wb['Import Zone File'] = 'Import Zone File'; |
| | | $wb['Secondary Zones'] = 'Strefy Zapasowe'; |
| | | $wb['Import Zone File'] = 'Import pliku Strefy'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_regex'] = 'Adres IP ma niepoprawny format.'; |
| | | $wb['data_error_duplicate'] = 'Duplikat wpisu A.'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['data_txt'] = 'Data'; |
| | | $wb['aux_txt'] = 'Priorytet'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy rekord A DNS'; |
| | | $wb['page_txt'] = 'Strona'; |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Czy jesteś pewny, że chcesz usunąć ten wpis?'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Adres IP jest pusty.'; |
| | | $wb['data_error_regex'] = 'Adres IP ma niepoprawny format.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Docelowa nazwa serwera jest pusta.'; |
| | | $wb['data_error_regex'] = 'Docelowa nazwa serwera ma niepoprawny format.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_regex'] = 'Docelowa nazwa serwera ma niepoprawny format.'; |
| | | $wb['data_error_duplicate'] = 'Zdublowany rekord A lub CNAME.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Informacje o serwerze są puste.'; |
| | | $wb['data_error_regex'] = 'Informacje o serwerze mają niepoprawny format.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $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['zone_file_import_txt'] = 'Zone File Import'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['btn_save_txt'] = 'Import pliku strefy'; |
| | | $wb['btn_cancel_txt'] = 'Anuluj'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['zone_file_successfully_imported_txt'] = 'Strefa została poprawnie zaimportowana'; |
| | | $wb['error_no_valid_zone_file_txt'] = 'Struktura pliku strefy jest nieprawidłowa'; |
| | | $wb['zonefile_to_import_txt'] = 'Plik strefy'; |
| | | $wb['domain_field_desc_txt'] = 'Może być puste jeżeli nazwa domeny jest w nazwie pliku lub w treści pliku'; |
| | | $wb['title'] = 'Importuj pliki strefy'; |
| | | $wb['no_file_uploaded_error'] = 'Nie załadowany żaden plik'; |
| | | $wb['zone_file_import_txt'] = 'Import pliku strefy'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Nazwa serwera poczty e-mail jest pusta.'; |
| | | $wb['data_error_regex'] = 'Nazwa serwera poczty e-mail ma niepoprawny format.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['data_error_regex'] = 'Nazwa serwera ma zły format.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Standardowa nazwa serwera jest pusta'; |
| | | $wb['data_error_regex'] = 'Standardowa nazwa serwera ma zły format'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Musisz podać osobę odpowiedzialna.'; |
| | | $wb['data_error_regex'] = 'Nazwa osoby odpowiedzialnej ma niepoprawny format.'; |
| | | ?> |
| | | |
| | |
| | | $wb['origin_error_unique'] = 'Jest już rekord w tej strefie.'; |
| | | $wb['origin_error_regex'] = 'Strefa ma niepoprawny format.'; |
| | | $wb['ns_error_regex'] = 'NS ma niepoprawny format.'; |
| | | $wb['eg_domain_tld'] = 'e.g. domain.tld.'; |
| | | $wb['ipv4_form_txt'] = 'IPv4 form - e.g. 1.2.3.4'; |
| | | $wb['secondary_zone_txt'] = 'Secondary DNS Zone'; |
| | | $wb['eg_domain_tld'] = 'np. domena.pl.'; |
| | | $wb['ipv4_form_txt'] = 'notacja IPv4 - np. 127.0.0.1'; |
| | | $wb['secondary_zone_txt'] = 'Zapasowa Strefa DNS'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Dodaj nową zapasową strefę DNS'; |
| | | $wb['eg_domain_tld'] = 'np. domena.pl.'; |
| | | ?> |
| | | |
| | |
| | | $wb['seconds_txt'] = 'Sekund'; |
| | | $wb['eg_domain_tld'] = 'np. domena.pl'; |
| | | $wb['eg_ns1_domain_tld'] = 'np. ns1.domena.pl'; |
| | | $wb['eg_webmaster_domain_tld'] = 'np. webmaster@domena.pl'; |
| | | $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['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['minimum_range_error'] = 'Min. Minimum time is 60 seconds.'; |
| | | $wb['ttl_range_error'] = 'Min. TTL time is 60 seconds.'; |
| | | $wb['xfer_error_regex'] = 'Also notify: Please use an IP address.'; |
| | | $wb['eg_webmaster_domain_tld'] = 'np. webmaster.domena.pl'; |
| | | $wb['The Domain can not be changed. Please ask your Administrator if you want to change the domain name.'] = 'Domena nie może być zmieniona. Prześlij prośbę o zmianę do Administratora.'; |
| | | $wb['xfer_error_regex'] = 'Także powiadom: Proszę użyć adresu IP'; |
| | | $wb['refresh_range_error'] = 'Min. czas odświeżania wynosi 60 sekund'; |
| | | $wb['retry_range_error'] = 'Min. czas powtórzenia wynosi 60 sekund'; |
| | | $wb['expire_range_error'] = 'Min. czas przedawnienia wynosi 60 sekund'; |
| | | $wb['minimum_range_error'] = 'Min. czas minimalny wynosi 60 sekund'; |
| | | $wb['ttl_range_error'] = 'Min. czas TTL wynosi 60 sekund'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Dodaj nową strefę DNS (SOA)'; |
| | | $wb['add_new_record_wizard_txt'] = 'Dodaj nową strefę DNS za pomocą Kreatora'; |
| | | ?> |
| | | |
| | |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['target_txt'] = 'Target'; |
| | | $wb['weight_txt'] = 'Weight'; |
| | | $wb['port_txt'] = 'Port'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | |
| | | $wb['data_error_regex'] = 'Wpis serwera ma niepoprawny format'; |
| | | $wb['srv_error_regex'] = 'Niepoprawny format rekordu serwera. Rekord serwera musi zawierać 3 łańcuchy znakowe oddzielone spacjami.'; |
| | | $wb['aux_txt'] = 'Priorytet'; |
| | | $wb['target_txt'] = 'Cel'; |
| | | $wb['weight_txt'] = 'Waga'; |
| | | $wb['port_txt'] = 'Port'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_txt'] = 'Szablon'; |
| | | $wb['visible_txt'] = 'Widoczność'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy wpis'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Tekst jest pusty.'; |
| | | $wb['data_error_regex'] = 'Tekst ma zły format.'; |
| | | ?> |
| | | |
| | |
| | | $wb['error_ns1_regex'] = 'NS1 zawiera niepoprawne znaki.'; |
| | | $wb['error_ns2_regex'] = 'NS2 zawiera niepoprawne znaki.'; |
| | | $wb['error_email_regex'] = 'Pole E-mail nie zawiera poprawnego adresu e-mail.'; |
| | | $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['list_head_txt'] = 'Kreator Stref DNS'; |
| | | $wb['list_desc_txt'] = 'Utwórz strefę DNS za pomocą Kreatora'; |
| | | $wb['dns_zone_txt'] = 'Strefa DNS'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'z'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'wyników'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'Brak wyników'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 wyników'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Szukaj'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Sugestie'; |
| | | ?> |
| | | |
| | |
| | | $app->listform_actions->SQLExtWhere = "hf_section = $hf_section"; |
| | | |
| | | |
| | | $res = $app->db->queryOneRecord("SELECT hfs_name FROM help_faq_sections WHERE hfs_id=$hf_section"); |
| | | if($hf_section) $res = $app->db->queryOneRecord("SELECT hfs_name FROM help_faq_sections WHERE hfs_id=$hf_section"); |
| | | // Start the form rendering and action ahndling |
| | | echo "<h2>FAQ: ".$res['hfs_name']."</h2>"; |
| | | $app->listform_actions->onLoad(); |
| | | if($hf_section) $app->listform_actions->onLoad(); |
| | | |
| | | ?> |
| | |
| | | $wb['Manage Questions'] = 'Spravovat dotazy'; |
| | | $wb['Add a Question & Answer Pair'] = 'Přidat otázku a odpověď'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['faq_answer_txt'] = 'Odpověď'; |
| | | $wb['faq_section_txt'] = 'Sekce'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['faq_faq_questions_txt'] = 'Často kladené dotazy'; |
| | | $wb['faq_new_question_txt'] = 'Přidat nový dotaz'; |
| | | ?> |
| | | |
| | | |
| | |
| | | <?php |
| | | $wb['edit_txt'] = 'Edit'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['faq_faq_sections_txt'] = 'Sekce FAQ'; |
| | | $wb['faq_new_section_txt'] = 'Přidat novou sekci'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['tstamp_txt'] = 'Časové razítko'; |
| | | $wb['reply_txt'] = 'Odpovědět'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['subject_txt'] = 'Předmět'; |
| | | $wb['add_new_record_txt'] = 'Vytvořit zprávu pro podporu'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['Send message'] = 'Wyślij wiadomość'; |
| | | $wb['View messages'] = 'Pokaż wiadomość'; |
| | | $wb['Support'] = 'Pomoc'; |
| | | $wb['About ISPConfig'] = 'O ISPConfig'; |
| | | $wb['About ISPConfig'] = 'Informacje o ISPConfig'; |
| | | $wb['Version'] = 'Wersja'; |
| | | $wb['Frequently Asked Questions'] = 'Pomoc Techniczna'; |
| | | $wb['FAQ Sections'] = 'Sekcje FAQ'; |
| | |
| | | $wb['Add a Question & Answer Pair'] = 'Dodaj nowe pytanie i odpowiedź'; |
| | | $wb['Manage Questions'] = 'Zarządzaj pytaniami'; |
| | | ?> |
| | | |
| | |
| | | $wb['faq_answer_txt'] = 'Odpowiedź'; |
| | | $wb['faq_section_txt'] = 'Sekcja'; |
| | | ?> |
| | | |
| | |
| | | $wb['faq_faq_questions_txt'] = 'Pomoc Techniczna'; |
| | | $wb['faq_new_question_txt'] = 'Dodaj nowe pytanie i odpowiedź'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['faq_section_name_txt'] = 'Nazwa sekcji'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['edit_txt'] = 'Edycja'; |
| | | ?> |
| | | |
| | |
| | | $wb['faq_faq_sections_txt'] = 'Sekcje FAQ'; |
| | | $wb['faq_new_section_txt'] = 'Dodaj nową sekcję'; |
| | | ?> |
| | | |
| | |
| | | $wb['subject_txt'] = 'Temat'; |
| | | $wb['message_txt'] = 'Wiadomość'; |
| | | $wb['tstamp_txt'] = 'Kalendarz'; |
| | | $wb['reply_txt'] = 'Reply'; |
| | | $wb['reply_txt'] = 'Odpowiedź'; |
| | | ?> |
| | | |
| | |
| | | $wb['subject_txt'] = 'Temat'; |
| | | $wb['add_new_record_txt'] = 'Wyślij wiadomość'; |
| | | ?> |
| | | |
| | |
| | | // check if the user theme is valid |
| | | if($_SESSION['s']['user']['theme'] != 'default') { |
| | | $tmp_path = ISPC_THEMES_PATH."/".$_SESSION['s']['user']['theme']; |
| | | if(!@is_dir($tmp_path) || !@file_exists($tmp_path."/ISPC_VERSION") || trim(file_get_contents($tmp_path."/ISPC_VERSION")) != ISPC_APP_VERSION) { |
| | | if(!@is_dir($tmp_path) || !@file_exists($tmp_path."/ispconfig_version") || trim(file_get_contents($tmp_path."/ispconfig_version")) != ISPC_APP_VERSION) { |
| | | // fall back to default theme if this one is not compatible with current ispc version |
| | | $_SESSION['s']['user']['theme'] = 'default'; |
| | | $_SESSION['s']['theme'] = 'default'; |
| | |
| | | <?php |
| | | $wb['error_user_password_empty'] = 'Uživatelské jméno nebo heslo je prázdné.'; |
| | | $wb['error_user_password_incorrect'] = 'Uživatelské jméno nebo heslo je špatně.'; |
| | | $wb['error_user_blocked'] = 'Uživatel blokován.'; |
| | | $wb['error_user_too_many_logins'] = 'Příliš mnoho nesprávných přihlášení, zkuste to za 15 minut znova'; |
| | | $wb['error_user_blocked'] = 'Uživatel je blokován.'; |
| | | $wb['error_user_too_many_logins'] = 'Příliš mnoho nesprávných přihlášení, zkuste to za 15 minut znovu'; |
| | | $wb['pass_reset_txt'] = 'Bude Vám vygenerováno a zasláno nové heslo na e-mail, pokud Vaše adresa zadaná níže odpovídá adrese ve Vašem klientském nastavení.'; |
| | | $wb['pw_reset'] = 'Heslo bylo resetováno a zasláno na Váš e-mail.'; |
| | | $wb['pw_error'] = 'Uživatelské jméno nebo e-mail neodpovídá.'; |
| | | $wb['pw_error'] = 'Uživatelské jméno nebo e-mail nesouhlasí.'; |
| | | $wb['pw_error_noinput'] = 'Prosím zadejte uživatelské jméno a e-mail.'; |
| | | $wb['pw_reset_mail_msg'] = 'Vaše heslo do ISPConfigu bylo resetováno. Nové heslo je: '; |
| | | $wb['pw_reset_mail_title'] = 'Heslo do ISPConfigu bylo resetováno.'; |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['theme_not_compatible'] = 'Zvolené téma není kompatibilní s aktuální verzí ISPConfig. Zkontrolujte prosím, zda není nová verze tématu.<br />Výchozí motiv byl aktivován automaticky.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | <?php |
| | | $wb['error_user_password_empty'] = 'Pusta nazwa użytkownika lub hasło.'; |
| | | $wb['error_user_password_incorrect'] = 'Niepoprawna nazwa użytownika lub hasło.'; |
| | | $wb['error_user_blocked'] = 'Konto użytkownika zostało zablokowane.'; |
| | | $wb['error_user_too_many_logins'] = 'Zbyt dużo niepoprawnych logowań. Prosimy spróbować ponownie za 15 minut.'; |
| | | $wb['pass_reset_txt'] = 'Nowe hasło zostanie wygenerowane i wysłane na Twój adres e-mail, jeśli podany adres e-mail będzie pasował do tego w ustawieniach Twojego profilu.'; |
| | | $wb['pw_reset'] = 'Nowe hasło zostało wygenerowane i wysłane na Twój adres e-mail.'; |
| | | $wb['pw_error'] = 'Nazwa użytkownika lub e-mail nie pasują do siebie.'; |
| | | $wb['pw_error_noinput'] = 'Podaj nazwę użytkownika i adres e-mail.'; |
| | | $wb['pw_reset_mail_msg'] = 'Hasło do Twojego panelu w ISPConfig 3 zostało z resetowane. Twoje nowe hasło to: '; |
| | | $wb['pw_reset_mail_title'] = 'Hasło do paneli w ISPConfig 3 zostało z resetowane.'; |
| | | $wb['pw_reset_mail_title'] = 'Hasło do panelu w ISPConfig 3 zostało zresetowane.'; |
| | | $wb['user_regex_error'] = 'Nazwa użytkownika zawiera niedozwolone znaki lub jest dłuższa niż 64 znaki.'; |
| | | $wb['pw_error_length'] = 'Długość hasła jest > 64 znaki.'; |
| | | $wb['error_user_password_empty'] = 'Pusta nazwa użytkownika lub hasło.'; |
| | | $wb['error_user_password_incorrect'] = 'Niepoprawna nazwa użytownika lub hasło.'; |
| | | $wb['error_user_blocked'] = 'Konto użytkownika zostało zablokowane.'; |
| | | $wb['error_user_too_many_logins'] = 'Zbyt dużo niepoprawnych logowań. Prosimy spróbować ponownie za 15 minut.'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['password_txt'] = 'Hasło'; |
| | | $wb['login_button_txt'] = 'Zaloguj'; |
| | | $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_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.'; |
| | | $wb['pw_lost_txt'] = 'Zapomniałem hasła'; |
| | | $wb['pw_reset_txt'] = 'Reset hasła'; |
| | | $wb['pw_button_txt'] = 'Prześlij hasło ponownie'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['error_maintenance_mode'] = 'Ta instalacja ISPConfig jest aktualnie w trakcje modernizacji. Wracamy niebawem - proszę o cierpliwość.'; |
| | | $wb['theme_not_compatible'] = 'Wybrany temat nie jest kompatybilny z aktualną wersją ISPConfig. Proszę wybrać nową wersję tematu.<br />Został aktywowany automatycznie domyślny temat.'; |
| | | ?> |
| | | |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^[a-zA-Z0-9\.\-\_\ ]{0,100}$/', |
| | | 'regex' => '/^[\p{Latin}0-9\.\-\_\ ]{0,100}$/u', |
| | | 'errmsg'=> 'target_error_regex'), |
| | | ), |
| | | 'default' => '', |
| | |
| | | $wb['Statistics'] = 'Statistiky'; |
| | | $wb['Mailbox quota'] = 'Mailbox kvóta'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['duplicate_email_alias_txt'] = 'Tento e-mail alias již existuje.'; |
| | | $wb['source_txt'] = 'Alias'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat nový e-mailový alias'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['source_error_unique'] = 'Duplikování zdrojové domény.'; |
| | | $wb['source_error_regex'] = 'Chybná zdrojová doména.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['destination_txt'] = 'Cíl'; |
| | | $wb['add_new_record_txt'] = 'Přidat doménový alias'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet email filtrů pro Váš účet.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na černou listinu'; |
| | | $wb['access_txt'] = 'Přístup'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['pattern_error_empty'] = 'Vzor je prázdný.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['action_txt'] = 'Akce'; |
| | | $wb['add_new_record_txt'] = 'Přidat obsahový filtr'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['policy_txt'] = 'Spamový filtr'; |
| | | $wb['no_policy'] = '- nepovoleno -'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['sys_groupid_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['source_txt'] = 'Zdroj'; |
| | | $wb['destination_error_isemail'] = 'Cílová e-mailová adresa není platná.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['domain_txt'] = 'E-malová doména'; |
| | | $wb['add_new_record_txt'] = 'Přidat e-mailový koš'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat doménu'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['source_txt'] = 'Zdrojový e-mail'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat nové přesměrování'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['source_read_all_txt'] = 'Načíst všechny e-maily (včetně již přečtené pošty)'; |
| | | $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['destination_txt'] = 'Cíl'; |
| | | $wb['add_new_record_txt'] = 'Přidat účet'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['email_error_isemail'] = 'E-mailová adresa je neplatná.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['listname_txt'] = 'Název seznamu'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet email filtrů pro Váš účet.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat relay adresáta'; |
| | | $wb['access_txt'] = 'Přístup'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['spam_redirect_maildir_purge_txt'] = 'Vyčistit poté mailový adresář'; |
| | | $wb['days_txt'] = 'Dny.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat nový záznam spamfiltru'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['limit_mailrouting_txt'] = 'Dosažen maximální počet email směrování pro Váš účet.'; |
| | | $wb['transport_txt'] = 'Transport'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['sort_order_txt'] = 'Třídit podle'; |
| | | $wb['add_new_record_txt'] = 'Přidat transport'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['move_to_txt'] = 'Přesunout do'; |
| | | $wb['delete_txt'] = 'Smazat'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Opravdu smazat mailový filtr?'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['name_txt'] = 'Skutečný název'; |
| | | $wb['login_txt'] = 'Přihlášení'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['this_year_txt'] = 'Tento rok'; |
| | | $wb['last_year_txt'] = 'Minulý rok'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Dosažen maximální počet email filtrů pro Váš účet.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na bílou listinu'; |
| | | $wb['access_txt'] = 'Přístup'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['email_txt'] = 'Emaily na černé listině'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na černou listinu'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['mailbox_size_limit_txt'] = 'Limit velikosti e-mailové schránky'; |
| | | $wb['message_size_limit_txt'] = 'Limit velikosti zprávy'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['server_name_txt'] = 'Server'; |
| | | $wb['server_id_txt'] = 'server_id'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['message_size_limit_txt'] = 'Limit velikosti zprávy'; |
| | | $wb['banned_rulenames_txt'] = 'Název pravidel zabanované'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['bad_header_lover_txt'] = 'Špatné hlavičky'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam politiky'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['fullname_txt'] = 'Název'; |
| | | $wb['local_txt'] = 'Lokální'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Přidat spamfiltr uživatele'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['email_txt'] = 'Emaily na bílé listině'; |
| | | $wb['add_new_record_txt'] = 'Přidat záznam na bílou listinu'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mailová adresa'; |
| | | $wb['used_txt'] = 'Využité místo'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['Global Filters'] = 'Globalne filtry'; |
| | | $wb['Domain Alias'] = 'Alias domeny'; |
| | | $wb['Relay Recipients'] = 'Odbiorcy przekierowania'; |
| | | $wb['Mailbox quota'] = 'Mailbox quota'; |
| | | $wb['Mailbox quota'] = 'Użycie skrzynek email'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_mailalias_txt'] = 'Maksymalna ilość aliasów e-mail dla Twojego konta została przekroczona.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Istnieje już skrzynka pocztowa z e-mailem o takiej nazwie.'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['duplicate_email_alias_txt'] = 'This email alias does already exist.'; |
| | | $wb['duplicate_email_alias_txt'] = 'Istnieje już taki alias email.'; |
| | | $wb['source_txt'] = 'Alias'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy alias e-mail'; |
| | | ?> |
| | | |
| | |
| | | $wb['source_error_unique'] = 'Duplikat źródłowej domeny.'; |
| | | $wb['source_error_regex'] = 'Nieprawidłowa nazwa domeny źródłowej.'; |
| | | ?> |
| | | |
| | |
| | | $wb['destination_txt'] = 'Cel'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy alias domeny'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Maksymalna ilość filtrów dla Twojego konta została przekroczona.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy wpis czarnej listy'; |
| | | $wb['access_txt'] = 'dostęp'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['pattern_error_empty'] = 'Wzór jest pusty.'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Akcja'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy zbiór filtrów'; |
| | | ?> |
| | | |
| | |
| | | $wb['policy_txt'] = 'Filtr spamu'; |
| | | $wb['no_policy'] = '-nie używane-'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktywne'; |
| | | $wb['sys_groupid_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | |
| | | $wb['no_domain_perm'] = 'Nie masz dostępu do tej domeny.'; |
| | | $wb['domain_error_regex'] = 'Nieprawidłowa nazwa domeny. Domena zawiera niedozolone znaki.'; |
| | | $wb['limit_mailcatchall_txt'] = 'Maksymalna ilość kont e-mail catchall dla Twojej domeny została przekroczona.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['destination_error_isemail'] = 'Destination is no valid email address.'; |
| | | $wb['source_txt'] = 'Źródło'; |
| | | $wb['destination_error_isemail'] = 'Cel nie jest poprawnym adresem email.'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy Catchall'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Dodaj nową domenę'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['destination_txt'] = 'Element docelowy E-mail'; |
| | | $wb['destination_txt'] = 'E-mail docelowy'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_mailforward_txt'] = 'Maksymalna ilość przekierowań e-mail dla Twojego konta została przekroczona.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Istnieje już skrzynka pocztowa o podanym adresie e-mail'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['source_txt'] = 'Source Email'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['source_txt'] = 'E-mail źródłowy'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowe przekierowanie E-mail'; |
| | | ?> |
| | | |
| | |
| | | $wb['destination_error_isemail'] = 'Nie wybrano elementu docelowego.'; |
| | | $wb['source_server_error_regex'] = 'Serwer Pop3/Imap nie jest poprawną nazwą domenową.'; |
| | | $wb['source_read_all_txt'] = 'Pobierz wszystkie maile (razem z przeczytanymi)'; |
| | | $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'] = 'Nieprawidłowa kombinacja opcji. Nie możesz użyć jednocześnie opcji Delete emails after retrieval = no razem z Retrieve all emails = yes'; |
| | | ?> |
| | | |
| | |
| | | $wb['destination_txt'] = 'Element docelowy'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowe konto'; |
| | | ?> |
| | | |
| | |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['password_txt'] = 'Hasło'; |
| | | $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.'; |
| | | $wb['mailinglist_txt'] = 'Mailing list'; |
| | | $wb['mailinglist_txt'] = 'Lista Mailingowa'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | $wb['listname_error_unique'] = 'Isnieje już lista mailingowa o tej nazwie, wybierz inną nazwę listy.'; |
| | | $wb['email_error_isemail'] = 'Adres e-mail jest nieprawidłowy'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['listname_txt'] = 'Nazwa listy'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Maksymalna ilość filtrów e-mail dla Twojego konta została przekroczona.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego odbiorcę przekierowania'; |
| | | $wb['access_txt'] = 'dostęp'; |
| | | ?> |
| | | |
| | |
| | | $wb['spam_redirect_maildir_purge_txt'] = 'Wyczyść później Maildir'; |
| | | $wb['days_txt'] = 'Dni.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy wpis z filtrem spamu'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_mailrouting_txt'] = 'Maksymalna ilość ścieżek dla Twojego konta została przekroczona.'; |
| | | $wb['transport_txt'] = 'Transport'; |
| | | ?> |
| | | |
| | |
| | | $wb['sort_order_txt'] = 'Sortuj według'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowe przeniesienie'; |
| | | ?> |
| | | |
| | |
| | | $wb['postfix_txt'] = 'Zezwól na odbiór poczty'; |
| | | $wb['access_txt'] = 'Możliwy dostęp'; |
| | | $wb['policy_txt'] = 'Filtr spamu'; |
| | | $wb['no_policy'] = '- nie dostępny -'; |
| | | $wb['no_policy'] = '- brak polityki -'; |
| | | $wb['limit_mailbox_txt'] = 'Maksymalna ilość skrzynek pocztowych dla Twojego konta została przekroczona.'; |
| | | $wb['limit_mailquota_txt'] = 'Maksymalna pojemność skrzynki pocztowej została przekroczona. Maksymalne dostępne miejsce w MB to: '; |
| | | $wb['disableimap_txt'] = 'Wyłącz IMAP'; |
| | |
| | | $wb['login_error_regex'] = 'Poprawne znaki to A-Z, a-z, 0-9, ., _ oraz -.'; |
| | | $wb['login_txt'] = 'Login (opcjonalnie)'; |
| | | $wb['error_login_email_txt'] = 'Ten login nie jest poprawny. Proszę wpisać inny lub użyć adresu e-mail jako loginu.'; |
| | | $wb['autoresponder_subject_txt'] = 'Email Subject'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $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['autoresponder_subject_txt'] = 'Temat wiadomości'; |
| | | $wb['autoresponder_subject'] = 'Odpowiedź - poza biurem - '; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | ?> |
| | | |
| | |
| | | $wb['move_to_txt'] = 'Przenieś do'; |
| | | $wb['delete_txt'] = 'Usuń'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Czy na pewno chcesz skasować filtr?'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Nazwa rzeczywista'; |
| | | $wb['login_txt'] = 'Login'; |
| | | ?> |
| | | |
| | |
| | | $wb['this_year_txt'] = 'Ten rok'; |
| | | $wb['last_year_txt'] = 'Ostatni rok'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Maksymalna ilość filtrów e-mail dla Twojego konta zosała przekroczona.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy wpis białej listy'; |
| | | $wb['access_txt'] = 'dostęp'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Maksymalna ilość wpisów do białej i czarnej listy dla Twojego konta została przekroczona.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail dodany do czarnej listy'; |
| | | $wb['add_new_record_txt'] = 'Dodaj wpis czarnej listy'; |
| | | ?> |
| | | |
| | |
| | | $wb['mailbox_size_limit_txt'] = 'Limit wielkości skrzynki pocztowej'; |
| | | $wb['message_size_limit_txt'] = 'Limit wielkości wiadomości'; |
| | | ?> |
| | | |
| | |
| | | $wb['server_name_txt'] = 'Serwer'; |
| | | $wb['server_id_txt'] = 'id_serwera'; |
| | | ?> |
| | | |
| | |
| | | $wb['message_size_limit_txt'] = 'Limit wielkości wiadomości'; |
| | | $wb['banned_rulenames_txt'] = 'Zabronione nazwy zasad'; |
| | | ?> |
| | | |
| | |
| | | $wb['bad_header_lover_txt'] = 'Przyjmuj złe nagłowki'; |
| | | $wb['add_new_record_txt'] = 'Dodaj wpis plityki'; |
| | | ?> |
| | | |
| | |
| | | $wb['fullname_txt'] = 'Nazwa'; |
| | | $wb['local_txt'] = 'Lokalne'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Dodaj filtr spamu użytkownika'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Maksymalna liczba wpisów białej lub czarnej listy została przekroczona.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Adres e-mail dodany do białej listy'; |
| | | $wb['add_new_record_txt'] = 'Dodaj wpis do białej listy'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Użycie skrzynki pocztowej'; |
| | | $wb['quota_txt'] = 'Quota'; |
| | | $wb['quota_txt'] = 'Limit'; |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['email_txt'] = 'Adres e-mail'; |
| | | $wb['used_txt'] = 'Użycie dysku'; |
| | | ?> |
| | | |
| | |
| | | <div class="ctrlHolder"> |
| | | <label for="source" class="wf_preField">{tmpl_var name='source_txt'}</label> |
| | | <select id="source" name="source" class="textInput formLengthHalf">{tmpl_var name='source'}</select> |
| | | <select id="op" name="op" class="textInput formLengthHalf">{tmpl_var name='op'}</select> |
| | | <input type="text" id="searchterm" name="searchterm" value="{tmpl_var name='searchterm'}" size="30" maxlength="255" class="textInput"> |
| | | <select id="op" name="op" class="textInput formLengthHalf">{tmpl_var name='op'}</select><br><br> |
| | | <div><label></label><input type="text" id="searchterm" name="searchterm" value="{tmpl_var name='searchterm'}" size="30" maxlength="255" class="textInput"></div> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="action" class="wf_preField">{tmpl_var name='action_txt'}</label> |
| | | <select id="action" name="action" class="textInput formLengthHalf">{tmpl_var name='action'}</select> |
| | | <input type="text" id="target" name="target" value="{tmpl_var name='target'}" size="30" maxlength="255" class="textInput formLengthHalf"> |
| | | <select id="action" name="action" class="textInput formLengthHalf">{tmpl_var name='action'}</select><br><br> |
| | | <div><label></label><input type="text" id="target" name="target" value="{tmpl_var name='target'}" size="30" maxlength="255" class="textInput formLengthHalf"></div> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="active" class="wf_preField">{tmpl_var name='active_txt'}</label> |
| | |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <fieldset style="margin-top:20px;margin-bottom:20px;"><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_user_filter_edit.php?mailuser_id={tmpl_var name='parent_id'}');"> |
| | | <span>{tmpl_var name="add_new_record_txt"}</span> |
| | |
| | | $tmp_array = unserialize($app->db->unquote($tmp_mon['data'])); |
| | | if(is_array($tmp_array)) { |
| | | foreach($tmp_array as $username => $data) { |
| | | $monitor_data[$username]['used'] += $data['used']; |
| | | if(!$monitor_data[$username]['used']) $monitor_data[$username]['used'] = $data['used']; |
| | | } |
| | | } |
| | | } |
| | |
| | | $wb['Spamfilter'] = 'Spamový filtr'; |
| | | $wb['Email Filters'] = 'E-mailové filtry'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'Nenastaveno'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['now_txt'] = 'Nyní'; |
| | | $wb['autoresponder_subject_txt'] = 'Předmět e-mailu'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['cc_error_isemail'] = 'Vyplněná e-mailová adresa neplatná'; |
| | | $wb['email_is_cc_error'] = 'Vyplněná e-mailová adresa a poslat kopii na e-mail adresu, nemůžou být stejné.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['move_to_txt'] = 'Přesunout do'; |
| | | $wb['delete_txt'] = 'Smazat'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Opravdu chcete odstranit e-mail filter?'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['no_policy'] = '- nepovoleno -'; |
| | | $wb['policy_txt'] = 'Politika'; |
| | | ?> |
| | | |
| | | |
| | |
| | | <?php |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Email Account'] = 'Konto email'; |
| | | $wb['Overview'] = 'Przegląd'; |
| | | $wb['Password'] = 'Hasło'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | $wb['Send copy'] = 'Wyślij kopię'; |
| | | $wb['Spamfilter'] = 'Filtr spamu'; |
| | | $wb['Email Filters'] = 'Fitry e-mail'; |
| | | ?> |
| | | |
| | |
| | | <?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['page_head_txt'] = 'Ustawienia skrzynki'; |
| | | $wb['page_desc_txt'] = 'Możesz tutaj edytować ustawienia swojego konta e-mail.'; |
| | | $wb['email_txt'] = 'Adres e-mail'; |
| | | $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['server_address_txt'] = 'Adres serwera poczty'; |
| | | $wb['cc_txt'] = 'Wyślij kopię do (CC)'; |
| | | $wb['quota_txt'] = 'Wielkość skrzynki'; |
| | | $wb['unlimited_txt'] = 'Bez limitu'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['none_txt'] = 'Brak'; |
| | | ?> |
| | | |
| | |
| | | <?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['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | $wb['autoresponder_subject'] = 'Poza biurem'; |
| | | $wb['autoresponder_text_txt'] = 'Tekst'; |
| | | $wb['autoresponder_txt'] = 'Aktywny'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Data startu nie może być z przeszłości'; |
| | | $wb['autoresponder_end_date_txt'] = 'Koniec'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'Data końcowa musi być ustawiona i być późniejsza niż startu.'; |
| | | $wb['autoresponder_active'] = 'Włącz autoresponder'; |
| | | $wb['now_txt'] = 'Teraz'; |
| | | $wb['autoresponder_subject_txt'] = 'Temat'; |
| | | ?> |
| | | |
| | |
| | | <?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'] = 'Wyślij kopię na inny adres e-mail'; |
| | | $wb['cc_txt'] = 'Wyślij kopię do'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['cc_error_isemail'] = 'Adres e-mail jest niepoprawny w polu -Wyślij kopię do-'; |
| | | $wb['email_is_cc_error'] = 'Adres e-mail i adres do wysyłki kopii nie mogą być takie same.'; |
| | | ?> |
| | | |
| | |
| | | $wb['move_to_txt'] = 'Move to'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | ?> |
| | | |
| | |
| | | <?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'] = 'Filtry poczty'; |
| | | $wb['rulename_txt'] = 'Nazwa'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy filtr'; |
| | | $wb['page_txt'] = 'Strona'; |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Na pewno chcesz skasować ten filtr poczty?'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $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.'; |
| | | $wb['mailbox_password_txt'] = 'Hasło konta e-mail'; |
| | | $wb['password_txt'] = 'Hasło'; |
| | | $wb['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Błąd, hasła nie pasują'; |
| | | $wb['password_match_txt'] = 'OK, hasła są jednakowe'; |
| | | ?> |
| | | |
| | |
| | | <?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'] = 'Ustawienia filtra spamu'; |
| | | $wb['spamfilter_txt'] = 'Filtr spamu'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['no_policy'] = '- nie włączony -'; |
| | | $wb['policy_txt'] = 'Polityka'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['Server online since'] = 'Server online od'; |
| | | $wb['Server online since'] = 'Server je online'; |
| | | $wb['Users online'] = 'Uživatelé online'; |
| | | $wb['System load 1 minute'] = 'Zátěž systému - 1 minuta'; |
| | | $wb['System load 5 minutes'] = 'Zátěž systému - 5 minut'; |
| | |
| | | $wb['Show Overview'] = 'Zobrazit přehled'; |
| | | $wb['System State (All Servers)'] = 'Stav systému (servery)'; |
| | | $wb['Hardware-Information'] = 'Informace o hardwaru'; |
| | | $wb['Show CPU info'] = 'Zobrazit CPU informace'; |
| | | $wb['Show CPU info'] = 'Zobrazit informace o CPU'; |
| | | $wb['Server State'] = 'Stav serveru'; |
| | | $wb['Show Update State'] = 'Zobrazit stav aktualizací'; |
| | | $wb['Show RAID state'] = 'Zobrazit stav RAID polí'; |
| | |
| | | $wb['monitor_serverstate_error_txt'] = 'chyba'; |
| | | $wb['monitor_serverstate_moreinfo_txt'] = 'Více informací...'; |
| | | $wb['monitor_serverstate_more_txt'] = 'Více...'; |
| | | $wb['monitor_serverstate_fclamok_txt'] = 'Virová ochrana vpořádku'; |
| | | $wb['monitor_serverstate_fclamok_txt'] = 'Antirová ochrana je v pořádku'; |
| | | $wb['monitor_serverstate_fclamoutdated_txt'] = 'Virová ochrana ZASTARALÁ!'; |
| | | $wb['monitor_serverstate_fclamunknown_txt'] = 'Freshclam: ???!'; |
| | | $wb['monitor_serverstate_hdok_txt'] = 'Místo na disku vpořádku'; |
| | | $wb['monitor_serverstate_hdgoingfull_txt'] = 'Distk se začína zaplňovat'; |
| | | $wb['monitor_serverstate_hdok_txt'] = 'Místo na disku je v pořádku'; |
| | | $wb['monitor_serverstate_hdgoingfull_txt'] = 'Disk se začíná zaplňovat'; |
| | | $wb['monitor_serverstate_hdnearlyfull_txt'] = 'Disk je téměř plný'; |
| | | $wb['monitor_serverstate_hdveryfull_txt'] = 'Disk bude každou chvíli zaplněn'; |
| | | $wb['monitor_serverstate_hdfull_txt'] = 'Žádné místo na disku'; |
| | |
| | | $wb['monitor_serverstate_listcritical_txt'] = 'kritický'; |
| | | $wb['monitor_serverstate_listerror_txt'] = 'chyba'; |
| | | $wb['monitor_serverstate_listunknown_txt'] = 'neznámý'; |
| | | $wb['monitor_serverstate_loadok_txt'] = 'Zatížená serveru je vpořádku'; |
| | | $wb['monitor_serverstate_loadok_txt'] = 'Zatížení serveru je vpořádku'; |
| | | $wb['monitor_serverstate_loadheavy_txt'] = 'Server těžce zatížením'; |
| | | $wb['monitor_serverstate_loadhigh_txt'] = 'Server vysoce zatížen'; |
| | | $wb['monitor_serverstate_loaghigher_txt'] = 'Server pod vyšším zatížením'; |
| | | $wb['monitor_serverstate_loadhighest_txt'] = 'Server pod nejvyšším zatížením'; |
| | | $wb['monitor_serverstate_loadunknown_txt'] = 'Zatížená serveru: ???'; |
| | | $wb['monitor_serverstate_mailqok_txt'] = 'Zatížená mailové fronty je vpořádku'; |
| | | $wb['monitor_serverstate_loadunknown_txt'] = 'Zatížení serveru: ???'; |
| | | $wb['monitor_serverstate_mailqok_txt'] = 'Zatížení e-mailové fronty je vpořádku'; |
| | | $wb['monitor_serverstate_mailqheavy_txt'] = 'E-mailová fronta těžce zatížena'; |
| | | $wb['monitor_serverstate_mailqhigh_txt'] = 'E-mailová fronta vysoce zatížena'; |
| | | $wb['monitor_serverstate_mailqhigher_txt'] = 'E-mailová fronta je pod vyšším zatížením'; |
| | |
| | | $wb['monitor_settings_datetimeformat_txt'] = 'Y-d-m H:i'; |
| | | $wb['monitor_settings_refreshsq_txt'] = 'Obnovování:'; |
| | | $wb['monitor_settings_server_txt'] = 'Server'; |
| | | $wb['monitor_title_cpuinfo_txt'] = 'CPU informace'; |
| | | $wb['monitor_title_cpuinfo_txt'] = 'Informace o CPU'; |
| | | $wb['monitor_title_updatestate_txt'] = 'Stav aktualizace'; |
| | | $wb['monitor_title_mailq_txt'] = 'E-mailová fronta'; |
| | | $wb['monitor_title_raidstate_txt'] = 'Stav pole RAID'; |
| | |
| | | $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_beancounter_nosupport_txt'] = 'Tento server nemá nainstalován VE OpenVZ a proto nemá beancounter informace'; |
| | | $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 BeanCounter'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['action_txt'] = 'Akce'; |
| | | $wb['status_txt'] = 'Stav'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['loglevel_txt'] = 'Logovací úroveň'; |
| | | $wb['message_txt'] = 'Zpráva'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['monitor_beancounter_nosupport_txt'] = 'Ten serwer nie jest serwerem OpenVz VE i nie posiada informacji o beancounterach'; |
| | | $wb['monitor_title_iptables_txt'] = 'Reguły IPTables'; |
| | | $wb['Show fail2ban-Log'] = 'Pokaż log fail2ban'; |
| | | $wb['Show IPTables'] = 'Pokaż IPTables'; |
| | | $wb['Show IPTables'] = 'Pokaż reguły IPTables'; |
| | | $wb['Show OpenVz VE BeanCounter'] = 'Show OpenVz VE BeanCounter'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Akcja'; |
| | | $wb['status_txt'] = 'Status'; |
| | | ?> |
| | | |
| | |
| | | $wb['loglevel_txt'] = 'Poziom logowania'; |
| | | $wb['message_txt'] = 'Wiadomość'; |
| | | ?> |
| | | |
| | |
| | | } |
| | | |
| | | if($type == 'getdatabaseusers') { |
| | | $json = '{'; |
| | | $json = '{}'; |
| | | |
| | | $sql = "SELECT sys_groupid FROM web_domain WHERE domain_id = $web_id"; |
| | | $group = $app->db->queryOneRecord($sql); |
| | |
| | | $sql = "SELECT database_user_id, database_user FROM web_database_user WHERE sys_groupid = '" . $group['sys_groupid'] . "'"; |
| | | $records = $app->db->queryAllRecords($sql); |
| | | |
| | | $tmp_array = array(); |
| | | foreach($records as $record) { |
| | | $json .= '"'.$record['database_user_id'].'": "'.$record['database_user'].'",'; |
| | | $tmp_array[$record['database_user_id']] = $record['database_user']; |
| | | } |
| | | unset($records); |
| | | unset($group); |
| | | $json = $app->functions->json_encode($tmp_array); |
| | | unset($records, $group, $tmp_array); |
| | | } |
| | | |
| | | if(substr($json,-1) == ',') $json = substr($json,0,-1); |
| | | $json .= '}'; |
| | | } |
| | | |
| | | if($type == 'get_use_combobox'){ |
| | |
| | | // we need remote access rights for this server, so get it's ip address |
| | | $server_config = $app->getconf->get_server_config($tmp['server_id'], 'server'); |
| | | if($server_config['ip_address']!='') { |
| | | /* |
| | | if($this->dataRecord['remote_access'] != 'y') $this->dataRecord['remote_ips'] = ''; |
| | | $this->dataRecord['remote_access'] = 'y'; |
| | | if(preg_match('/(^|,)' . preg_quote($server_config['ip_address'], '/') . '(,|$)/', $this->dataRecord['remote_ips']) == false) { |
| | | $this->dataRecord['remote_ips'] .= ($this->dataRecord['remote_ips'] != '' ? ',' : '') . $server_config['ip_address']; |
| | | } |
| | | */ |
| | | |
| | | if($this->dataRecord['remote_access'] != 'y'){ |
| | | $this->dataRecord['remote_ips'] = $server_config['ip_address']; |
| | | $this->dataRecord['remote_access'] = 'y'; |
| | | } else { |
| | | if($this->dataRecord['remote_ips'] != ''){ |
| | | if(preg_match('/(^|,)' . preg_quote($server_config['ip_address'], '/') . '(,|$)/', $this->dataRecord['remote_ips']) == false) { |
| | | $this->dataRecord['remote_ips'] .= ',' . $server_config['ip_address']; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | |
| | | // we need remote access rights for this server, so get it's ip address |
| | | $server_config = $app->getconf->get_server_config($tmp['server_id'], 'server'); |
| | | if($server_config['ip_address']!='') { |
| | | /* |
| | | if($this->dataRecord['remote_access'] != 'y') $this->dataRecord['remote_ips'] = ''; |
| | | $this->dataRecord['remote_access'] = 'y'; |
| | | if(preg_match('/(^|,)' . preg_quote($server_config['ip_address'], '/') . '(,|$)/', $this->dataRecord['remote_ips']) == false) { |
| | | $this->dataRecord['remote_ips'] .= ($this->dataRecord['remote_ips'] != '' ? ',' : '') . $server_config['ip_address']; |
| | | } |
| | | */ |
| | | |
| | | if($this->dataRecord['remote_access'] != 'y'){ |
| | | $this->dataRecord['remote_ips'] = $server_config['ip_address']; |
| | | $this->dataRecord['remote_access'] = 'y'; |
| | | } else { |
| | | if($this->dataRecord['remote_ips'] != ''){ |
| | | if(preg_match('/(^|,)' . preg_quote($server_config['ip_address'], '/') . '(,|$)/', $this->dataRecord['remote_ips']) == false) { |
| | | $this->dataRecord['remote_ips'] .= ',' . $server_config['ip_address']; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | |
| | | 'datatype' => 'INTEGER', |
| | | 'formtype' => 'SELECT', |
| | | 'default' => '', |
| | | 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| | | 'errmsg'=> 'no_server_error'), |
| | | ), |
| | | 'datasource' => array ( 'type' => 'SQL', |
| | | 'querystring' => 'SELECT server_id,server_name FROM server WHERE mirror_server_id = 0 AND web_server = 1 AND {AUTHSQL} ORDER BY server_name', |
| | | 'keyfield'=> 'server_id', |
| | |
| | | 'hd_quota' => array ( |
| | | 'datatype' => 'INTEGER', |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| | | 'errmsg'=> 'hd_quota_error_empty'), |
| | | 1 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^(\-1|[0-9]{1,10})$/', |
| | | 'errmsg'=> 'hd_quota_error_regex'), |
| | | ), |
| | | 'default' => '-1', |
| | | 'default' => '0', |
| | | 'value' => '', |
| | | 'width' => '7', |
| | | 'maxlength' => '7' |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['Subdomain (Vhost)'] = 'Subdoména (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS aktualizace seznamu balíčků dokončena.'; |
| | | $wb['btn_install_txt'] = 'Instalovat'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['delete_txt'] = 'Smazat'; |
| | | $wb['reinstall_txt'] = 'Přeinstalovat'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['status_txt'] = 'Odemčený'; |
| | | $wb['filter_txt'] = 'Hledat'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['head_txt'] = 'Update Packagelist'; |
| | | $wb['list_desc_txt'] = ''; |
| | | $wb['btn_start_txt'] = 'Update Packagelist'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.'; |
| | | ?> |
| | |
| | | $wb['command_error_format'] = 'Chybná formát příkazu. V případě URL je povoleno volání pouze http/https.'; |
| | | $wb['unknown_fieldtype_error'] = 'Bylp použito pole neznámého typu.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['add_new_cron_txt'] = 'Přidat novou cron úlohu'; |
| | | $wb['parent_domain_id_txt'] = 'Webové stránky'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['database_client_differs_txt'] = 'Klient mateřského webu a databáze se neshodují.'; |
| | | $wb['database_user_missing_txt'] = 'Please select a database user for this database.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Přidat nové databáze'; |
| | | $wb['sys_groupid_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['database_name_txt'] = 'Název databáze'; |
| | | $wb['add_new_record_txt'] = 'Přidat databázi'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Hledat'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Návrhy'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Vytvořit nového uživatele databáze'; |
| | | $wb['sys_groupid_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['database_user_txt'] = 'Uživatelé databáze'; |
| | | $wb['add_new_record_txt'] = 'Přidat nového uživatele databáze'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['add_new_record_txt'] = 'Přidat FTP uživatele'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['add_new_record_txt'] = 'Přidat shell uživatele'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['soft_txt'] = 'Měkký limit'; |
| | | $wb['files_txt'] = 'Jednotlivé soubory'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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['redirect_type_txt'] = 'Typ přesměrování'; |
| | | $wb['redirect_path_txt'] = 'Cesta přesměrování'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | |
| | | $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_empty'] = 'Doména je prázdná.'; |
| | | $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_regex'] = 'Neplatné doménové jméno.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | |
| | | $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['seo_redirect_txt'] = 'SEO přesměrování'; |
| | | $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['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['no_flag_txt'] = 'Žádný příznak'; |
| | | $wb['none_txt'] = 'Žádná'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['backup_type_mysql'] = 'MySQL Database'; |
| | | $wb['backup_type_web'] = 'Website files'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['add_new_record_txt'] = 'Přidat webovou stránku'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['add_new_record_txt'] = 'Přidat webovou stránku'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['path_error_regex'] = 'Neplatná cesta ke složce.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['parent_domain_id_txt'] = 'Webové stránky'; |
| | | $wb['path_txt'] = 'Cesta'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['web_folder_id_txt'] = 'Složka'; |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['last_year_txt'] = 'Minulý rok'; |
| | | $wb['sum_txt'] = 'Součet'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['domain_txt'] = 'Subdoména'; |
| | | $wb['add_new_record_txt'] = 'Přidat subdoménu'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Verze'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['redirect_type_txt'] = 'Typ přesměrování'; |
| | | $wb['redirect_path_txt'] = 'Cesta přesměrování'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Doména je prázdná.'; |
| | | $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_regex'] = 'Neplatné doménové jméno.'; |
| | | $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['proxy_directives_txt'] = 'Proxy Directives'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Available Proxy Directive Snippets:'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['domain_txt'] = 'Subdoména'; |
| | | $wb['add_new_record_txt'] = 'Přidat novou poddoménu'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['add_new_record_txt'] = 'Přidat nového WebDAV uživatele'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['installation_success_txt'] = 'Installiert'; |
| | | $wb['installation_remove_txt'] = 'Deinstallation vorgemerkt'; |
| | | $wb['packagelist_update_finished_txt'] = 'APS Paketlistenupdate beendet.'; |
| | | $wb["limit_aps_txt"] = 'Die maximale Anzahl an APS-Instanzen für Ihr Konto wurde erreicht.'; |
| | | $wb['limit_aps_txt'] = 'Die maximale Anzahl an APS-Instanzen für Ihr Konto wurde erreicht.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $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_server_error'] = 'No server selected.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['Websites'] = 'Strona www'; |
| | | $wb['Website'] = 'Strona www'; |
| | | $wb['Subdomain'] = 'Subdomain for website'; |
| | | $wb['Aliasdomain'] = 'Aliasdomain for website'; |
| | | $wb['Database'] = 'Baza danych'; |
| | | $wb['Web Access'] = 'Web Access'; |
| | | $wb['FTP-User'] = 'Użytkownik FTP'; |
| | | $wb['Webdav-User'] = 'Użytkownik Webdav'; |
| | | $wb['Folder'] = 'Protected Folders'; |
| | | $wb['Folder users'] = 'Protected Folder Users'; |
| | | $wb['Command Line'] = 'Command Line'; |
| | | $wb['Shell-User'] = 'Użytkownik Shell'; |
| | | $wb['Cron Jobs'] = 'Zadania Cron'; |
| | | $wb['Statistics'] = 'Statystyki'; |
| | | $wb['Web traffic'] = 'Ruch na stronie'; |
| | | $wb['Website quota (Harddisk)'] = 'Uzycie dysku strony (Harddisk)'; |
| | | $wb['Cron'] = 'Cron'; |
| | | $wb['Stats'] = 'Statystyki'; |
| | | $wb['Shell'] = 'Shell'; |
| | | $wb['Webdav'] = 'WebDAV'; |
| | | $wb['FTP'] = 'FTP'; |
| | | $wb['Options'] = 'Opcje'; |
| | | $wb['Domain'] = 'Strona www'; |
| | | $wb['Redirect'] = 'Przekierowanie'; |
| | | $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'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomain (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | $wb['Subdomain'] = 'Subdomena'; |
| | | $wb['Sites'] = 'Strony'; |
| | | $wb['Aliasdomain'] = 'Alias domeny'; |
| | | $wb['FTP-User'] = 'Użytkownik FTP'; |
| | | $wb['FTP'] = 'FTP'; |
| | | $wb['Shell-User'] = 'Użytkownik Shell'; |
| | | $wb['Shell'] = 'Shell'; |
| | | $wb['Websites'] = 'Strony www'; |
| | | $wb['Stats'] = 'Statystyki'; |
| | | $wb['Website'] = 'Strona www'; |
| | | $wb['Cron'] = 'Cron'; |
| | | $wb['Cron Jobs'] = 'Zadania Cron'; |
| | | $wb['Statistics'] = 'Statystyki'; |
| | | $wb['Web traffic'] = 'Ruch na stronie'; |
| | | $wb['Webdav-User'] = 'Użytkownik Webdav'; |
| | | $wb['Webdav'] = 'Webdav'; |
| | | $wb['Website quota (Harddisk)'] = 'Użycie miejsca dla strony'; |
| | | $wb['Database User'] = 'Użytkownicy bazy danych'; |
| | | $wb['Web Access'] = 'Dostęp WWW'; |
| | | $wb['Folder'] = 'Foldery chronione'; |
| | | $wb['Folder users'] = 'Użytkownicy chronionych folderów'; |
| | | $wb['Command Line'] = 'Linia poleceń'; |
| | | $wb['APS Installer'] = 'Instalator APS'; |
| | | $wb['Available packages'] = 'Dostępne pakiety'; |
| | | $wb['Installed packages'] = 'Zainstalowane pakiety'; |
| | | $wb['Update Packagelist'] = 'Uaktualnij listę pakietów'; |
| | | $wb['Subdomain (Vhost)'] = 'Subdomena (Vhost)'; |
| | | $wb['error_proxy_requires_url'] = 'Rodzaj przekierowania '; |
| | | ?> |
| | | |
| | |
| | | <?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'; |
| | | $wb['overview_txt'] = 'Przegląd'; |
| | | $wb['administration_txt'] = 'Administracja'; |
| | | $wb['available_packages_txt'] = 'Dostępne pakiety'; |
| | | $wb['installed_packages_txt'] = 'Zainstalowane pakiety'; |
| | | $wb['yes_txt'] = 'Tak'; |
| | | $wb['no_txt'] = 'Nie'; |
| | | $wb['invalid_id_txt'] = 'Zostało podane nieprawidłowe ID'; |
| | | $wb['details_txt'] = 'Szczegóły'; |
| | | $wb['version_txt'] = 'Wersja'; |
| | | $wb['category_txt'] = 'Kategoria'; |
| | | $wb['homepage_txt'] = 'Strona domowa'; |
| | | $wb['supported_languages_txt'] = 'Wspierane języki'; |
| | | $wb['description_txt'] = 'Opis'; |
| | | $wb['config_script_txt'] = 'Skrypt konfiguracji'; |
| | | $wb['installed_size_txt'] = 'Rozmiar po instalacji'; |
| | | $wb['license_txt'] = 'Licencja'; |
| | | $wb['screenshots_txt'] = 'Zrzuty ekranu'; |
| | | $wb['changelog_txt'] = 'Zmiany'; |
| | | $wb['server_requirements_txt'] = 'Wymagania serwera'; |
| | | $wb['php_extensions_txt'] = 'Rozszerzenia PHP'; |
| | | $wb['php_settings_txt'] = 'Ustawienia PHP'; |
| | | $wb['supported_php_versions_txt'] = 'Wspierane wersje PHP'; |
| | | $wb['database_txt'] = 'Baza danych'; |
| | | $wb['settings_txt'] = 'Ustawienia'; |
| | | $wb['install_package_txt'] = 'Instaluj ten pakiet'; |
| | | $wb['installation_txt'] = 'Instalacja'; |
| | | $wb['install_location_txt'] = 'Lokalizacja instalacji'; |
| | | $wb['acceptance_txt'] = 'Akceptacja'; |
| | | $wb['acceptance_text_txt'] = 'Tak, przeczytałem i zgadzam się z licencją.'; |
| | | $wb['install_language_txt'] = 'Język interfejsu'; |
| | | $wb['new_database_password_txt'] = 'Hasło nowej bazy danych'; |
| | | $wb['basic_settings_txt'] = 'Podstawowe ustawienia'; |
| | | $wb['package_settings_txt'] = 'Ustawienia pakietu'; |
| | | $wb['error_main_domain'] = 'Domena ścieżki instalacji jest nieprawidłowa.'; |
| | | $wb['error_no_main_location'] = 'Podałeś nieprawidłową ścieżkę instalacji.'; |
| | | $wb['error_inv_main_location'] = 'Instalacja w podanym folderze jest niemożliwa.'; |
| | | $wb['error_license_agreement'] = 'Aby kontynuować musisz zaakceptować umowę licencyjną.'; |
| | | $wb['error_no_database_pw'] = 'Nie podałeś prawidłowego hasła do bazy danych.'; |
| | | $wb['error_short_database_pw'] = 'Wybierz dłuższe hasło do bazy.'; |
| | | $wb['error_no_value_for'] = 'Pole \\"%s\\" nie może być puste'; |
| | | $wb['error_short_value_for'] = 'Pole \\"%s\\" wymaga dłuższej wartości'; |
| | | $wb['error_long_value_for'] = 'Pole \\"%s\\" wymaga krótszej wartości'; |
| | | $wb['error_inv_value_for'] = 'Wprowadziłeś nieprawidłową wartość w polu \\"%s\\"'; |
| | | $wb['error_inv_email_for'] = 'Wprowadziłeś nieprawidłowy adres email w polu \\"%s\\"'; |
| | | $wb['error_inv_domain_for'] = 'Wprowadziłeś nieprawidłową domenę w polu \\"%s\\"'; |
| | | $wb['error_inv_integer_for'] = 'Wprowadziłeś nieprawidłową liczbę w polu \\"%s\\"'; |
| | | $wb['error_inv_float_for'] = 'Wprowadziłeś nieprawidłową liczbę w polu \\"%s\\"'; |
| | | $wb['error_used_location'] = 'Ścieżka instalacji zawiera już zainstalowany pakiet.'; |
| | | $wb['installation_task_txt'] = 'Instalacja planowana'; |
| | | $wb['installation_error_txt'] = 'Błąd instalacji'; |
| | | $wb['installation_success_txt'] = 'Zainstalowane'; |
| | | $wb['installation_remove_txt'] = 'Usunięcie zaplanowane'; |
| | | $wb['packagelist_update_finished_txt'] = 'Aktualizacja listy pakietów APS zakończona'; |
| | | $wb['btn_install_txt'] = 'Instaluj'; |
| | | $wb['btn_cancel_txt'] = 'Anuluj'; |
| | | $wb['limit_aps_txt'] = 'Maksymalna liczba instancji APS dla Twojego konta została wyczerpana.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Installed packages'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['customer_txt'] = 'Client'; |
| | | $wb['list_head_txt'] = 'Zainstalowane aplikacje'; |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['version_txt'] = 'Wersja'; |
| | | $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'] = 'Lokalizacja instalacji'; |
| | | $wb['pkg_delete_confirmation'] = 'Na pewno chcesz usunąć tę instalację?'; |
| | | $wb['pkg_reinstall_confirmation'] = 'Na pewno chcesz przeinstalować ten pakiet z tymi samymi ustawieniami?'; |
| | | $wb['filter_txt'] = 'Szukaj'; |
| | | $wb['delete_txt'] = 'Usuń'; |
| | | $wb['reinstall_txt'] = 'Przeinstaluj'; |
| | | ?> |
| | | |
| | |
| | | <?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'] = 'Dostępne pakiety'; |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['version_txt'] = 'Wersja'; |
| | | $wb['category_txt'] = 'Kategoria'; |
| | | $wb['status_txt'] = 'Odblokowany'; |
| | | $wb['filter_txt'] = 'Szukaj'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Update Packagelist'; |
| | | $wb['head_txt'] = 'Aktualizacja listy pakietów'; |
| | | $wb['list_desc_txt'] = ''; |
| | | $wb['btn_start_txt'] = 'Update Packagelist'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['legend_txt'] = 'Here you can update the list of available packages. Please note that this can take up to five minutes. You can leave this page if you like; the process will continue in the background.'; |
| | | $wb['btn_start_txt'] = 'Uaktualnij listę'; |
| | | $wb['btn_cancel_txt'] = 'Anuluj'; |
| | | $wb['legend_txt'] = 'Tutaj możesz uaktualnić listę dostępnych pakietów. Może to zająć nawet do pięciu minut. Możesz opuścić tę stronę jeżeli chcesz - proces aktualizacji wykona się w tle.'; |
| | | ?> |
| | |
| | | $wb['command_error_format'] = 'Niepoprawny format polecenia. W zbiorze url może być tylko adres http/https który ma pozwolenie.'; |
| | | $wb['unknown_fieldtype_error'] = 'Został użyty niepoprawny format pola.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_cron_txt'] = 'Dodaj nowe zadanie Cron'; |
| | | $wb['parent_domain_id_txt'] = 'Witryna'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_charset_change_txt'] = 'Nie można zmienić kodowania bazy danych.'; |
| | | $wb['database_name_error_len'] = 'Nazwa bazy danych - {db} - za długa. Maksymalna długość wynosi 64 znaki łącznie z prefiksem.'; |
| | | $wb['database_user_error_len'] = 'Nazwa użytkownika bazy - {user}- za długa. Maksymalna długość wynosi 16 znaków łącznie z prefiksem.'; |
| | | $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['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['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['database_user_missing_txt'] = 'Please select a database user for this database.'; |
| | | $wb['database_ro_user_txt'] = 'Użytkownik tylko do odczytu'; |
| | | $wb['optional_txt'] = 'opcjonalnie'; |
| | | $wb['select_dbuser_txt'] = 'Wybierz nazwę użytkownika bazy'; |
| | | $wb['no_dbuser_txt'] = 'Brak'; |
| | | $wb['database_client_differs_txt'] = 'Właściciele strony i bazy danych są inni!'; |
| | | $wb['database_user_missing_txt'] = 'Wybierz użytkownika bazy dla tej bazy'; |
| | | $wb['parent_domain_id_txt'] = 'Strona'; |
| | | $wb['database_site_error_empty'] = 'Wybierz witrynę, do której należy baza danych.'; |
| | | $wb['select_site_txt'] = '- Wybierz stronę -'; |
| | | $wb['btn_save_txt'] = 'Zapisz'; |
| | | $wb['btn_cancel_txt'] = 'Anuluj'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'z'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'wyników'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'Brak wyników'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 wyników'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Szukaj'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Sugestie'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Dodaj nową bazę danych'; |
| | | $wb['sys_groupid_txt'] = 'Klient'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Dodaj nową bazę danych'; |
| | | $wb['database_user_txt'] = 'Użytkownik bazy danych'; |
| | | ?> |
| | | |
| | |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
| | | |
| | |
| | | $wb['directory_error_notinweb'] = 'Katalog nie jest wewnątrz katalogu root www.'; |
| | | $wb['parent_domain_id_error_empty'] = 'Nie wybrano żadnej strony www.'; |
| | | $wb['quota_size_error_regex'] = 'Quota: wpisz -1 dla wartości bez limitu lub liczbę > 0'; |
| | | $wb['dir_dot_error'] = 'No .. in path allowed.'; |
| | | $wb['dir_slashdot_error'] = 'No ./ in path allowed.'; |
| | | $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['dir_dot_error'] = 'Znaki .. nie są dozwolone w ścieżce'; |
| | | $wb['dir_slashdot_error'] = 'Znaki ./ nie są dozwolone w ścieżce'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego użytkownika FTP'; |
| | | ?> |
| | | |
| | |
| | | $wb['puser_txt'] = 'Nazwa użytkownika strony www'; |
| | | $wb['pgroup_txt'] = 'Nazwa grupy strony www'; |
| | | $wb['ssh_rsa_txt'] = 'Klucz publiczny SSH-RSA (dla logowania po kluczu)'; |
| | | $wb['dir_dot_error'] = 'No .. in path allowed.'; |
| | | $wb['dir_slashdot_error'] = 'No ./ in path allowed.'; |
| | | $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['dir_dot_error'] = 'Znaki .. w ścieżce nie są dozwolone'; |
| | | $wb['dir_slashdot_error'] = 'Znaki ./ w ścieżce nie są dozwolone'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego użytkownika Shell'; |
| | | ?> |
| | | |
| | |
| | | $wb['used_txt'] = 'Wykorzystana przestrzeń'; |
| | | $wb['hard_txt'] = 'Limit twardy'; |
| | | $wb['soft_txt'] = 'Limit miękki'; |
| | | $wb['files_txt'] = 'Single files'; |
| | | $wb['files_txt'] = 'Pojedyncze pliki'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | $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['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['domain_txt'] = 'Alias domeny'; |
| | | $wb['backup_interval_txt'] = 'Częstotliwość tworzenia kopii zapasowych'; |
| | | $wb['backup_copies_txt'] = 'Liczba kopii'; |
| | | $wb['ssl_state_txt'] = 'Województwo'; |
| | | $wb['ssl_locality_txt'] = 'Lokalizacja'; |
| | | $wb['ssl_organisation_txt'] = 'Organizacja'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Jednostka organizacji'; |
| | | $wb['ssl_country_txt'] = 'Kraj'; |
| | | $wb['ssl_key_txt'] = 'Klucz SSL'; |
| | | $wb['ssl_request_txt'] = 'Żądanie SSL'; |
| | | $wb['ssl_cert_txt'] = 'Certyfikat SSL'; |
| | | $wb['ssl_bundle_txt'] = 'Paczka SSL (bundle)'; |
| | | $wb['ssl_action_txt'] = 'Akcja SSL'; |
| | | $wb['ssl_domain_txt'] = 'Domena SSL'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['web_folder_error_regex'] = 'Wpisano nieprawidłowy folder. Proszę nie wpisywać znaku slash: /'; |
| | | $wb['type_txt'] = 'Rodzaj'; |
| | | $wb['parent_domain_id_txt'] = 'Strona macierzysta'; |
| | | $wb['redirect_type_txt'] = 'Rodzaj przekierowania'; |
| | | $wb['redirect_path_txt'] = 'Ścieżka przekierowania'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $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['system_user_txt'] = 'Użytkownik systemowy'; |
| | | $wb['system_group_txt'] = 'Grupa systemowa'; |
| | | $wb['ip_address_txt'] = 'Adres IPv4'; |
| | | $wb['ipv6_address_txt'] = 'Adres IPv6'; |
| | | $wb['vhost_type_txt'] = 'Rodzaj VHosta'; |
| | | $wb['hd_quota_txt'] = 'Limit dysku'; |
| | | $wb['traffic_quota_txt'] = 'Limit transferu'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['errordocs_txt'] = 'Własne strony błędów'; |
| | | $wb['subdomain_txt'] = 'Automatyczna subdomena'; |
| | | $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_autosub'] = 'There is already a subdomain with these 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'] = 'Set Webstatistics password'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['limit_web_domain_txt'] = 'Maks. liczba domen web dla Twojego konta została już osiągnięta.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Maks. liczba aliasów domen dla Twojego konta została już osiągnięta.'; |
| | | $wb['limit_web_subdomain_txt'] = 'Maks. liczba subdomen dla Twojego konta została już osiągnięta.'; |
| | | $wb['apache_directives_txt'] = 'Dyrektywy Apache'; |
| | | $wb['domain_error_empty'] = 'Pole domena jest puste'; |
| | | $wb['domain_error_unique'] = 'Istnieje już strona z tą nazwą domeny/poddomeny.'; |
| | | $wb['domain_error_regex'] = 'Nazwa domeny jest pusta'; |
| | | $wb['domain_error_autosub'] = 'Istnieje już subdomena z tymi ustawieniami.'; |
| | | $wb['hd_quota_error_empty'] = 'Limit dysku jest pusty lub wynosi 0.'; |
| | | $wb['traffic_quota_error_empty'] = 'Limit transferu jest pusty.'; |
| | | $wb['error_ssl_state_empty'] = 'Pole województwa dla SSL jest puste.'; |
| | | $wb['error_ssl_locality_empty'] = 'Pole lokalizacji dla SSL jest puste.'; |
| | | $wb['error_ssl_organisation_empty'] = 'Pole organizacji dla SSL jest puste.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'Pole jednostkie dla SSL jest puste.'; |
| | | $wb['error_ssl_country_empty'] = 'Pole kraju dla SSL jest puste.'; |
| | | $wb['error_ssl_cert_empty'] = 'Pole certyfikatu SSL jest puste.'; |
| | | $wb['client_group_id_txt'] = 'Klient'; |
| | | $wb['stats_password_txt'] = 'Hasło do statystyk'; |
| | | $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['limit_web_quota_free_txt'] = 'Maks. dostępny limit dysku'; |
| | | $wb['ssl_state_error_regex'] = 'Nieprawidłowe województwo SSL. Dozwolone znaki to: a-z, 0-9 i .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Nieprawidłowa lokalizacja SSL. Dozwolone znaki to: a-z, 0-9 i .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Nieprawidłowa organizacja SSL. Dozwolone znaki to: a-z, 0-9 i .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Nieprawidłowa jednostka SSL. Dozwolone znaki to: a-z, 0-9 i .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Nieprawidłowy kraj SSL. Dozwolone znaki to: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Maks. dostępny limit transferu'; |
| | | $wb['redirect_error_regex'] = 'Nieprawidłowa ścieżka przekierowania. Przykładowe prawidłowe przekierowania: /test/ lub http://www.domena.pl/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Limit transferu został przekroczony'; |
| | | $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['stats_user_txt'] = 'Login do statystyk'; |
| | | $wb['stats_type_txt'] = 'Rodzaj statystyk'; |
| | | $wb['custom_php_ini_txt'] = 'Własne ustawienia php.ini'; |
| | | $wb['none_txt'] = 'Brak'; |
| | | $wb['disabled_txt'] = 'Wyłączone'; |
| | | $wb['no_redirect_txt'] = 'Bez przekierowania'; |
| | | $wb['no_flag_txt'] = 'Bez flagi'; |
| | | $wb['save_certificate_txt'] = 'Zapisz certyfikat'; |
| | | $wb['create_certificate_txt'] = 'Utwórz certyfikat'; |
| | | $wb['delete_certificate_txt'] = 'Usuń certyfikat'; |
| | | $wb['nginx_directives_txt'] = 'Dyrektywy nginx'; |
| | | $wb['seo_redirect_txt'] = 'Przekierowanie SEO'; |
| | | $wb['non_www_to_www_txt'] = 'bez www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> bez www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Uzyj gniazda dla PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI dla SSL nie jest aktywowane dla tego serwera. Możesz włączyć tylko jeden certyfikat SSL dla jednego adresu IP.'; |
| | | $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['error_php_fpm_pm_settings_txt'] = 'Wartości ustawień PHP-FPM pm muszą być następujące: 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 musi być dodatnią wartością całkowitą.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers musi być dodatnią wartością całkowitą.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers musi być dodatnią wartością całkowitą.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers musi być dodatnią wartością całkowitą.'; |
| | | $wb['hd_quota_error_regex'] = 'Limit dysku jest nieprawidłowy'; |
| | | $wb['traffic_quota_error_regex'] = 'Limit transferu jest nieprawidłowy'; |
| | | $wb['fastcgi_php_version_txt'] = 'Wersja PHP'; |
| | | $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:'; |
| | | $wb['Domain'] = 'Aliasdomain'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout musi być dodatnią wartością całkowitą.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an inPHP-FPM pm.process_idle_timeout musi być dodatnią wartością całkowitą >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Wersja PHP musi być >= 5.3.9 aby użyć ondemand process manager. W przypadku użycia starszej wersji PHP może nie działać w ogóle.'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła są jednakowe'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw PHP:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw Apache:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw nginx:'; |
| | | $wb['proxy_directives_txt'] = 'Dyrektywny Proxy'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw Proxy:'; |
| | | $wb['Domain'] = 'Alias domeny'; |
| | | ?> |
| | | |
| | |
| | | $wb['no_flag_txt'] = 'Bez flagi'; |
| | | $wb['none_txt'] = 'Brak'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Existing backups'; |
| | | $wb['date_txt'] = 'Date'; |
| | | $wb['backup_type_txt'] = 'Type'; |
| | | $wb['filename_txt'] = 'Backup file'; |
| | | $wb['restore_backup_txt'] = 'Restore backup'; |
| | | $wb['download_backup_txt'] = 'Download backup'; |
| | | $wb['download_info_txt'] = 'The backup file will be available for download in the backup folder of the website in a few minutes.'; |
| | | $wb['restore_info_txt'] = 'Restore of the backup has been started. This action takes several minutes to be completed.'; |
| | | $wb['restore_confirm_txt'] = 'Restoring will overwrite existing files in your website. Do you really want to restore this backup?'; |
| | | $wb['download_pending_txt'] = 'There is already a pending backup download job.'; |
| | | $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['list_head_txt'] = 'Dostępne kopie zapasowe'; |
| | | $wb['date_txt'] = 'Data'; |
| | | $wb['backup_type_txt'] = 'Rodzaj'; |
| | | $wb['filename_txt'] = 'Plik kopii'; |
| | | $wb['restore_backup_txt'] = 'Przywróć kopię'; |
| | | $wb['download_backup_txt'] = 'Pobierz kopię'; |
| | | $wb['download_info_txt'] = 'Plik kopii będzie dostępny do pobrania w folderze backup strony w przeciągu kilku minut.'; |
| | | $wb['restore_info_txt'] = 'Rozpoczęło się odtwarzanie z kopii plików strony. Proces ten może zająć kilka minut.'; |
| | | $wb['restore_confirm_txt'] = 'Przywrócenie danych z kopii zapasowej zastąpi wszystkie obecnie istniejące pliki. Czy na pewno chcesz to zrobić?'; |
| | | $wb['download_pending_txt'] = 'Trwa już jedno zadanie pobrania kopii.'; |
| | | $wb['restore_pending_txt'] = 'Trwa już jedno zadanie przywrócenia danych z kopii.'; |
| | | $wb['backup_type_mysql'] = 'Baza MySQL'; |
| | | $wb['backup_type_web'] = 'Pliki strony'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['ssl_state_txt'] = 'Stan/województwo'; |
| | | $wb['ssl_state_txt'] = 'Województwo'; |
| | | $wb['ssl_locality_txt'] = 'Lokalizacja'; |
| | | $wb['ssl_organisation_txt'] = 'Organizacja'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Jednosta organizacji'; |
| | |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['parent_domain_id_txt'] = 'Aktualna strona www'; |
| | | $wb['redirect_type_txt'] = 'Typ przekierowania'; |
| | | $wb['parent_domain_id_txt'] = 'Macierzysta strona www'; |
| | | $wb['redirect_type_txt'] = 'Rodzaj przekierowania'; |
| | | $wb['redirect_path_txt'] = 'Ścieżka przekierowania'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['document_root_txt'] = 'Główny katalog'; |
| | | $wb['system_user_txt'] = 'Użytkownik Linuksa'; |
| | | $wb['system_group_txt'] = 'Grupa Linux'; |
| | | $wb['document_root_txt'] = 'Katalog strony'; |
| | | $wb['system_user_txt'] = 'Użytkownik systemowy'; |
| | | $wb['system_group_txt'] = 'Grupa systemowa'; |
| | | $wb['ip_address_txt'] = 'Adres IP'; |
| | | $wb['vhost_type_txt'] = 'Typ wirtualnego serwera'; |
| | | $wb['vhost_type_txt'] = 'Rodzaj VHosta'; |
| | | $wb['hd_quota_txt'] = 'Limit dysku twardego'; |
| | | $wb['traffic_quota_txt'] = 'Limit ruchu na serwerze'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Nieprawidłowa jednostka organizacji SSL. Dozwolone znaki to: a-z, 0-9 oraz .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Nieprawidłowy kraj SSL. Dozwolone znaki to: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Maksymalny dostępny limit transferu'; |
| | | $wb['redirect_error_regex'] = 'Nieprawidłowa ścieżka przekierowania. Poprawne przekierowania to np.: /test/ or http://www.domain.tld/test/'; |
| | | $wb['redirect_error_regex'] = 'Nieprawidłowa ścieżka przekierowania. Poprawne przekierowania to np.: /test/ lub http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Limit transferu przekroczony.'; |
| | | $wb['backup_interval_txt'] = 'Odstęp między kopiami zapasowymi'; |
| | | $wb['backup_copies_txt'] = 'Liczba kopii zapasowych'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Nazwa użytkownika statystyk'; |
| | | $wb['stats_type_txt'] = 'Oprogramowanie statystyk'; |
| | | $wb['stats_type_txt'] = 'Rodzaj statystyk'; |
| | | $wb['custom_php_ini_txt'] = 'Własne ustawienia php.ini'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['error_ssl_cert_empty'] = 'Pole certyfikatu SSL jest puste'; |
| | | $wb['none_txt'] = 'Brak'; |
| | | $wb['disabled_txt'] = 'Wyłączone'; |
| | | $wb['no_redirect_txt'] = 'Bez przekierowania'; |
| | |
| | | $wb['ipv6_address_txt'] = 'Adres IPv6'; |
| | | $wb['nginx_directives_txt'] = 'Dyrektywy nginx'; |
| | | $wb['seo_redirect_txt'] = 'Przekierowanie SEO'; |
| | | $wb['non_www_to_www_txt'] = 'bez www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> bez www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Użyj socketu dla PHP-FPM'; |
| | | $wb['non_www_to_www_txt'] = 'bez www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> bez www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Użyj gniazda dla PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI dla SSL nie jest aktywowane na tym serwerze. Możesz utworzyć tylko jeden certyfikat SSL dla jednego adresu 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['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Wartości ustawień PHP-FPM pm muszą być następujące: 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 musi być całkowitą liczną dodatnią.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers musi być całkowitą liczną dodatnią.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers musi być całkowitą liczną dodatnią.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers musi być całkowitą liczną dodatnią.'; |
| | | $wb['hd_quota_error_regex'] = 'Limit dysku jest nieprawidłowy.'; |
| | | $wb['traffic_quota_error_regex'] = 'Limit transferu jest nieprawidłowy.'; |
| | | $wb['ssl_key_txt'] = 'Klucz SSL'; |
| | | $wb['web_folder_error_regex'] = 'Wprowadzono nieprawidłowy katalog. Proszę nie wpisywać znaku slash [ / ]'; |
| | | $wb['domain_error_autosub'] = 'Istnieje już subdomena z tymi ustawieniami.'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['fastcgi_php_version_txt'] = 'Wersja PHP'; |
| | | $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['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['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout musi być całkowitą wartością dodatnią'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests musi być całkowitą wartością >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Musisz mieć PHP w wersji >= 5.3.9 aby użyć ondemand process manager. Jeżeli wybierzesz ondemand dla starszej wersji, PHP nie zadziała w ogóle!'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw PHP:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw Apache:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw nginx:'; |
| | | $wb['proxy_directives_txt'] = 'Dyrektywy Proxy'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw Proxy:'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową stronę'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową stronę'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['path_error_regex'] = 'Nieprawidłowa ścieżka katalogu.'; |
| | | ?> |
| | | |
| | |
| | | $wb['parent_domain_id_txt'] = 'Witryna'; |
| | | $wb['path_txt'] = 'Ścieżka'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_txt'] = 'Hasło'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['folder_error_empty'] = 'Nie wybrano katalogu.'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $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['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują'; |
| | | ?> |
| | | |
| | |
| | | $wb['web_folder_id_txt'] = 'Katalog'; |
| | | $wb['username_txt'] = 'Login'; |
| | | ?> |
| | | |
| | |
| | | $wb['last_month_txt'] = 'Ostatni miesiąc'; |
| | | $wb['this_year_txt'] = 'Ten rok'; |
| | | $wb['last_year_txt'] = 'Ostatni rok'; |
| | | $wb['sum_txt'] = 'Sum'; |
| | | $wb['sum_txt'] = 'Razem'; |
| | | ?> |
| | | |
| | |
| | | $wb['redirect_error_regex'] = 'Nieprawidłowa ścieżka przekierowania. Poprawne przekierowanie to np.: /test/ lub http://www.domain.tld/test/'; |
| | | $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:'; |
| | | $wb['error_proxy_requires_url'] = 'Redirect Type \\"proxy\\" requires a URL as the redirect path.'; |
| | | $wb['domain_error_wildcard'] = 'Subdomeny typu wildcard nie są dozwolone'; |
| | | $wb['proxy_directives_txt'] = 'Dyrektywy Proxy'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Dostępne konfiguracje dodatkowe Proxy'; |
| | | $wb['error_proxy_requires_url'] = 'Rodzaj przekierowania '; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Subdomena'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową subdomene'; |
| | | ?> |
| | | |
| | |
| | | <?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['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['parent_domain_id_txt'] = 'Strona macierzysta'; |
| | | $wb['web_folder_txt'] = 'Folder strony'; |
| | | $wb['web_folder_invalid_txt'] = 'Folder strony jest nieprawidłowy, proszę wybrać inny.'; |
| | | $wb['web_folder_unique_txt'] = 'Folder strony jest już w użyciu, proszę wybrać inny.'; |
| | | $wb['backup_interval_txt'] = 'Częstotliwość kopii'; |
| | | $wb['backup_copies_txt'] = 'Liczba kopii zapasowych'; |
| | | $wb['ssl_state_txt'] = 'Województwo'; |
| | | $wb['ssl_locality_txt'] = 'Lokalizacja'; |
| | | $wb['ssl_organisation_txt'] = 'Ogranizacja'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Jednostka organizacji'; |
| | | $wb['ssl_country_txt'] = 'Kraj'; |
| | | $wb['ssl_key_txt'] = 'Klucz SSL'; |
| | | $wb['ssl_request_txt'] = 'Żądanie SSL'; |
| | | $wb['ssl_cert_txt'] = 'Certyfikat SSL'; |
| | | $wb['ssl_bundle_txt'] = 'Pakiet SSL (Bundle)'; |
| | | $wb['ssl_action_txt'] = 'Czynność SSL'; |
| | | $wb['ssl_domain_txt'] = 'Domena SSL'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['host_txt'] = 'Nazwa hosta'; |
| | | $wb['web_folder_error_regex'] = 'Wpisano nieprawidłowy folder. Proszę nie dopisywać znaku slash: / '; |
| | | $wb['type_txt'] = 'Rodzaj'; |
| | | $wb['redirect_type_txt'] = 'Rodzaj przekierowania'; |
| | | $wb['redirect_path_txt'] = 'Ścieżka przekierowania'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $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['system_user_txt'] = 'Użytkownik systemowy'; |
| | | $wb['system_group_txt'] = 'Grupa systemowa'; |
| | | $wb['ip_address_txt'] = 'Adres IPv4'; |
| | | $wb['ipv6_address_txt'] = 'Adres IPv6'; |
| | | $wb['vhost_type_txt'] = 'Typ VHosta'; |
| | | $wb['hd_quota_txt'] = 'Limit dysku'; |
| | | $wb['traffic_quota_txt'] = 'Limit transferu'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['errordocs_txt'] = 'Własne strony błędów'; |
| | | $wb['subdomain_txt'] = 'Automatyczna subdomena'; |
| | | $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['client_txt'] = 'Klient'; |
| | | $wb['limit_web_domain_txt'] = 'Maks. liczba domen dla Twojego konta została osiągnięta.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Maks. liczba aliasów domen dla Twojego konta została osiągnięta.'; |
| | | $wb['limit_web_subdomain_txt'] = 'Maks. liczba poddomen dla Twojego konta została osiągnięta.'; |
| | | $wb['apache_directives_txt'] = 'Dyrektywy Apache'; |
| | | $wb['domain_error_empty'] = 'Pole domeny jest puste'; |
| | | $wb['domain_error_unique'] = 'Istnieje już strona z taką domeną lub subdomeną.'; |
| | | $wb['domain_error_regex'] = 'Nazwa domeny jest nieprawidłowa.'; |
| | | $wb['domain_error_wildcard'] = 'Subdomeny typu wildcard nie są dozwolone.'; |
| | | $wb['hd_quota_error_empty'] = 'Pole limitu dysku jest puste lub wynosi 0.'; |
| | | $wb['traffic_quota_error_empty'] = 'Pole limitu transferu jest puste.'; |
| | | $wb['error_ssl_state_empty'] = 'Pole województwa dla SSL jest puste.'; |
| | | $wb['error_ssl_locality_empty'] = 'Pole lokalizacji dla SSL jest puste.'; |
| | | $wb['error_ssl_organisation_empty'] = 'Pole organizacji dla SSL jest puste.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'Pole jednostki dla SSL jest puste.'; |
| | | $wb['error_ssl_country_empty'] = 'Pole kraju dla SSL jest puste.'; |
| | | $wb['error_ssl_cert_empty'] = 'Pole certyfikatu SSL jest puste.'; |
| | | $wb['client_group_id_txt'] = 'Klient'; |
| | | $wb['stats_password_txt'] = 'Hasło do statystyk'; |
| | | $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['limit_web_quota_free_txt'] = 'Maks. dostępny limit dysku'; |
| | | $wb['ssl_state_error_regex'] = 'Nieprawidłowe województwo SSL. Dozwolone znaki: a-z, 0-9 i .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Nieprawidłowa lokalizacja SSL. Dozwolone znaki: a-z, 0-9 i .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Nieprawidłowa organizacja SSL. Dozwolone znaki: a-z, 0-9 i .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Nieprawidłowa jednostka SSL. Dozwolone znaki: a-z, 0-9 i .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Nieprawidłowy kraj SSL. Dozwolone znaki: a-z, 0-9 i .,-_'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Maks. dostępny limit transferu'; |
| | | $wb['redirect_error_regex'] = 'Nieprawidłowa ścieżka przekierowania. Przykładowe prawidłowe przekierowania: /test/ lub http://www.domena.pl/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Limit transferu został przekroczony'; |
| | | $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['stats_user_txt'] = 'Login do statystyk'; |
| | | $wb['stats_type_txt'] = 'Rodzaj statystyk'; |
| | | $wb['custom_php_ini_txt'] = 'Własne ustawienia php.ini'; |
| | | $wb['none_txt'] = 'Brak'; |
| | | $wb['disabled_txt'] = 'Wyłączone'; |
| | | $wb['no_redirect_txt'] = 'Bez przekierowania'; |
| | | $wb['no_flag_txt'] = 'Bez flagi'; |
| | | $wb['save_certificate_txt'] = 'Zapisz certyfikat'; |
| | | $wb['create_certificate_txt'] = 'Utwórz certyfikat'; |
| | | $wb['delete_certificate_txt'] = 'Usuń certyfikat'; |
| | | $wb['nginx_directives_txt'] = 'Dyrektywy nginx'; |
| | | $wb['seo_redirect_txt'] = 'Przekierowanie SEO'; |
| | | $wb['non_www_to_www_txt'] = 'bez-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> bez-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Użyj gniazda dla PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI dla SSL nie jest aktywowane dla tego serwera. Możesz włączyć tylko jeden certyfikat SSL dla jednego adresu IP.'; |
| | | $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['error_php_fpm_pm_settings_txt'] = 'Wartości ustawień PHP-FPM pm muszą być następujące: 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 musi być dodatnią wartością całkowitą.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers musi być dodatnią wartością całkowitą.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers musi być dodatnią wartością całkowitą.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers musi być dodatnią wartością całkowitą.'; |
| | | $wb['hd_quota_error_regex'] = 'Limit dyski jest nieprawidłowy'; |
| | | $wb['traffic_quota_error_regex'] = 'Limit transferu jest nieprawidłowy'; |
| | | $wb['fastcgi_php_version_txt'] = 'Wersja PHP'; |
| | | $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:'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout musi być dodatnią wartością całkowitą.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests musi być wartością całkowitą >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Pamiętaj że musisz mieć wersję PHP >= 5.3.9 aby używać ondemand process manager. W przypadku starszej wersji PHP nie będzie działać w ogóle!'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują do siebie'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw PHP:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw Apache:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw nginx:'; |
| | | $wb['proxy_directives_txt'] = 'Dyrektywy Proxy'; |
| | | $wb['available_proxy_directive_snippets_txt'] = 'Dostępne zestawy dyrektyw Proxy:'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_error_regex'] = 'Nazwa użytkownika zawiera niedozwolone znaki.'; |
| | | $wb['directory_error_empty'] = 'Pusty katalog.'; |
| | | $wb['parent_domain_id_error_empty'] = 'Nie wybrano strony www.'; |
| | | $wb['dir_dot_error'] = 'No .. in path allowed.'; |
| | | $wb['dir_slashdot_error'] = 'No ./ in path allowed.'; |
| | | $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['dir_dot_error'] = 'Znaki .. w ścieżce nie są dozwolone'; |
| | | $wb['dir_slashdot_error'] = 'Znaki ./ w ścieżce nie są dozwolone'; |
| | | $wb['generate_password_txt'] = 'Generuj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła nie pasują do siebie'; |
| | | $wb['password_match_txt'] = 'Hasła pasują do siebie'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego użytkownika Webdav'; |
| | | ?> |
| | | |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['limit_aps_txt'] = 'The max. number of APS instances for your account is reached.'; |
| | | ?> |
| | |
| | | <input type="hidden" name="install" value="0" /> |
| | | <div class="buttonHolder buttons"> |
| | | <button class="positive iconstxt icoPositive" type="button" value="{tmpl_var name='btn_install_txt'}" name="btn_install" onclick="document.pageForm.install.value=1; submitForm('pageForm','sites/aps_install_package.php?id={tmpl_var name='pkg_id'}');"><span>{tmpl_var name='btn_install_txt'}</span></button> |
| | | <button class="negative iconstxt icoNegative" type="button" value="{tmpl_var name='btn_cancel_txt'}" onclick="loadContent('aps/availablepackages_list.php');"><span>{tmpl_var name='btn_cancel_txt'}</span></button> |
| | | <button class="negative iconstxt icoNegative" type="button" value="{tmpl_var name='btn_cancel_txt'}" onclick="loadContent('sites/aps_availablepackages_list.php');"><span>{tmpl_var name='btn_cancel_txt'}</span></button> |
| | | </div> |
| | | </div> |
| | | |
| | |
| | | <input name="web_folder" id="web_folder" value="{tmpl_var name='web_folder'}" size="30" maxlength="100" type="text" class="textInput formLengthHalf"<tmpl_if name='fixed_folder' op='==' value='y'> readonly="readonly"</tmpl_if> /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="hd_quota">{tmpl_var name='hd_quota_txt'}</label> |
| | | <input name="hd_quota" id="hd_quota" value="{tmpl_var name='hd_quota'}" size="7" maxlength="7" type="text" class="textInput formLengthLimit" /> MB |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="traffic_quota">{tmpl_var name='traffic_quota_txt'}</label> |
| | | <input name="traffic_quota" id="traffic_quota" value="{tmpl_var name='traffic_quota'}" size="7" maxlength="7" type="text" class="textInput formLengthLimit" /> MB <tmpl_var name='traffic_quota_exceeded_txt'> |
| | | </div> |
| | |
| | | $web_config = $app->getconf->get_server_config($client['default_webserver'], 'web'); |
| | | |
| | | // Set the webserver to the default server of the client |
| | | $tmp = $app->db->queryOneRecord("SELECT server_name FROM server WHERE server_id = $client[default_webserver]"); |
| | | $tmp = $app->db->queryOneRecord("SELECT server_name FROM server WHERE server_id = ".intval($client['default_webserver'])); |
| | | $app->tpl->setVar("server_id","<option value='$client[default_webserver]'>$tmp[server_name]</option>"); |
| | | unset($tmp); |
| | | |
| | |
| | | unset($ips); |
| | | |
| | | //* Fill the IPv6 select field with the IP addresses that are allowed for this client |
| | | $sql = "SELECT ip_address FROM server_ip WHERE server_id = ".$client['default_webserver']." AND ip_type = 'IPv6' AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"; |
| | | $sql = "SELECT ip_address FROM server_ip WHERE server_id = ".intval($client['default_webserver'])." AND ip_type = 'IPv6' AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"; |
| | | $ips = $app->db->queryAllRecords($sql); |
| | | $ip_select = "<option value=''></option>"; |
| | | //$ip_select = ""; |
| | |
| | | if(!empty($web_config['server_type'])) $server_type = $web_config['server_type']; |
| | | if($server_type == 'nginx' && $this->dataRecord['php'] == 'fast-cgi') $this->dataRecord['php'] = 'php-fpm'; |
| | | if($this->dataRecord['php'] == 'php-fpm'){ |
| | | $php_records = $app->db->queryAllRecords("SELECT * FROM server_php WHERE php_fpm_init_script != '' AND php_fpm_ini_dir != '' AND php_fpm_pool_dir != '' AND server_id = ".($this->id > 0 ? $this->dataRecord['server_id'] : $client['default_webserver'])." AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"); |
| | | $php_records = $app->db->queryAllRecords("SELECT * FROM server_php WHERE php_fpm_init_script != '' AND php_fpm_ini_dir != '' AND php_fpm_pool_dir != '' AND server_id = ".($this->id > 0 ? $this->dataRecord['server_id'] : intval($client['default_webserver']))." AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"); |
| | | } |
| | | if($this->dataRecord['php'] == 'fast-cgi'){ |
| | | $php_records = $app->db->queryAllRecords("SELECT * FROM server_php WHERE php_fastcgi_binary != '' AND php_fastcgi_ini_dir != '' AND server_id = ".($this->id > 0 ? $this->dataRecord['server_id'] : $client['default_webserver'])." AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"); |
| | | $php_records = $app->db->queryAllRecords("SELECT * FROM server_php WHERE php_fastcgi_binary != '' AND php_fastcgi_ini_dir != '' AND server_id = ".($this->id > 0 ? $this->dataRecord['server_id'] : intval($client['default_webserver']))." AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"); |
| | | } |
| | | $php_select = "<option value=''>Default</option>"; |
| | | if(is_array($php_records) && !empty($php_records)) { |
| | |
| | | $web_config = $app->getconf->get_server_config($client['default_webserver'], 'web'); |
| | | |
| | | // Set the webserver to the default server of the client |
| | | $tmp = $app->db->queryOneRecord("SELECT server_name FROM server WHERE server_id = $client[default_webserver]"); |
| | | $tmp = $app->db->queryOneRecord("SELECT server_name FROM server WHERE server_id = ".intval($client['default_webserver'])); |
| | | $app->tpl->setVar("server_id","<option value='$client[default_webserver]'>$tmp[server_name]</option>"); |
| | | unset($tmp); |
| | | |
| | |
| | | $app->tpl->setVar("client_group_id",$client_select); |
| | | |
| | | //* Fill the IPv4 select field with the IP addresses that are allowed for this client |
| | | $sql = "SELECT ip_address FROM server_ip WHERE server_id = ".$client['default_webserver']." AND ip_type = 'IPv4' AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"; |
| | | $sql = "SELECT ip_address FROM server_ip WHERE server_id = ".intval($client['default_webserver'])." AND ip_type = 'IPv4' AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"; |
| | | $ips = $app->db->queryAllRecords($sql); |
| | | $ip_select = ($web_config['enable_ip_wildcard'] == 'y')?"<option value='*'>*</option>":""; |
| | | //$ip_select = ""; |
| | |
| | | unset($ips); |
| | | |
| | | //* Fill the IPv6 select field with the IP addresses that are allowed for this client |
| | | $sql = "SELECT ip_address FROM server_ip WHERE server_id = ".$client['default_webserver']." AND ip_type = 'IPv6' AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"; |
| | | $sql = "SELECT ip_address FROM server_ip WHERE server_id = ".intval($client['default_webserver'])." AND ip_type = 'IPv6' AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"; |
| | | $ips = $app->db->queryAllRecords($sql); |
| | | $ip_select = "<option value=''></option>"; |
| | | //$ip_select = ""; |
| | |
| | | if(!empty($web_config['server_type'])) $server_type = $web_config['server_type']; |
| | | if($server_type == 'nginx' && $this->dataRecord['php'] == 'fast-cgi') $this->dataRecord['php'] = 'php-fpm'; |
| | | if($this->dataRecord['php'] == 'php-fpm'){ |
| | | $php_records = $app->db->queryAllRecords("SELECT * FROM server_php WHERE php_fpm_init_script != '' AND php_fpm_ini_dir != '' AND php_fpm_pool_dir != '' AND server_id = ".($this->id > 0 ? $this->dataRecord['server_id'] : $client['default_webserver'])." AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"); |
| | | $php_records = $app->db->queryAllRecords("SELECT * FROM server_php WHERE php_fpm_init_script != '' AND php_fpm_ini_dir != '' AND php_fpm_pool_dir != '' AND server_id = ".($this->id > 0 ? $this->dataRecord['server_id'] : intval($client['default_webserver']))." AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"); |
| | | } |
| | | if($this->dataRecord['php'] == 'fast-cgi') { |
| | | $php_records = $app->db->queryAllRecords("SELECT * FROM server_php WHERE php_fastcgi_binary != '' AND php_fastcgi_ini_dir != '' AND server_id = ".($this->id > 0 ? $this->dataRecord['server_id'] : $client['default_webserver'])." AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"); |
| | | $php_records = $app->db->queryAllRecords("SELECT * FROM server_php WHERE php_fastcgi_binary != '' AND php_fastcgi_ini_dir != '' AND server_id = ".($this->id > 0 ? $this->dataRecord['server_id'] : intval($client['default_webserver']))." AND (client_id = 0 OR client_id=".$_SESSION['s']['user']['client_id'].")"); |
| | | } |
| | | $php_select = "<option value=''>Default</option>"; |
| | | if(is_array($php_records) && !empty($php_records)) { |
| | |
| | | $this->dataRecord["server_id"] = $tmp["server_id"]; |
| | | unset($tmp); |
| | | } |
| | | $server_id = @$this->dataRecord["server_id"]; |
| | | $server_id = intval(@$this->dataRecord["server_id"]); |
| | | } else { |
| | | // Get the first server ID |
| | | $tmp = $app->db->queryOneRecord("SELECT server_id FROM server WHERE web_server = 1 ORDER BY server_name LIMIT 0,1"); |
| | | $server_id = $tmp['server_id']; |
| | | $server_id = intval($tmp['server_id']); |
| | | } |
| | | |
| | | //* get global web config |
| | |
| | | |
| | | //* Check the website quota of the client |
| | | if(isset($_POST["hd_quota"]) && $client["limit_web_quota"] >= 0) { |
| | | $tmp = $app->db->queryOneRecord("SELECT sum(hd_quota) as webquota FROM web_domain WHERE domain_id != ".$app->functions->intval($this->id)." AND ".$app->tform->getAuthSQL('u')); |
| | | $tmp = $app->db->queryOneRecord("SELECT sum(hd_quota) as webquota FROM web_domain WHERE domain_id != ".$app->functions->intval($this->id)." AND type = 'vhost' AND ".$app->tform->getAuthSQL('u')); |
| | | $webquota = $tmp["webquota"]; |
| | | $new_web_quota = $app->functions->intval($this->dataRecord["hd_quota"]); |
| | | if(($webquota + $new_web_quota > $client["limit_web_quota"]) || ($new_web_quota < 0 && $client["limit_web_quota"] >= 0)) { |
| | |
| | | |
| | | //* Check the website quota of the client |
| | | if(isset($_POST["hd_quota"]) && $reseller["limit_web_quota"] >= 0) { |
| | | $tmp = $app->db->queryOneRecord("SELECT sum(hd_quota) as webquota FROM web_domain WHERE domain_id != ".$app->functions->intval($this->id)." AND ".$app->tform->getAuthSQL('u')); |
| | | $tmp = $app->db->queryOneRecord("SELECT sum(hd_quota) as webquota FROM web_domain WHERE domain_id != ".$app->functions->intval($this->id)." AND type = 'vhost' AND ".$app->tform->getAuthSQL('u')); |
| | | $webquota = $tmp["webquota"]; |
| | | $new_web_quota = $app->functions->intval($this->dataRecord["hd_quota"]); |
| | | if(($webquota + $new_web_quota > $reseller["limit_web_quota"]) || ($new_web_quota < 0 && $reseller["limit_web_quota"] >= 0)) { |
| | |
| | | if(in_array($check_folder, $forbidden_folders)) { |
| | | $app->tform->errorMessage .= $app->tform->lng("web_folder_invalid_txt")."<br>"; |
| | | } |
| | | |
| | | // vhostsubdomains do not have a quota of their own |
| | | $this->dataRecord["hd_quota"] = 0; |
| | | |
| | | // check for duplicate folder usage |
| | | /* |
| | | $check = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_domain` WHERE `type` = 'vhostsubdomain' AND `parent_domain_id` = '" . $app->functions->intval($this->dataRecord['parent_domain_id']) . "' AND `web_folder` = '" . $app->db->quote($this->dataRecord['web_folder']) . "' AND `domain_id` != '" . $app->functions->intval($this->id) . "'"); |
| | |
| | | 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'] != 'n') $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'] = '-'; |
| | | |
| | | //* Check the website quota of the client |
| | | if(isset($_POST["hd_quota"]) && $client["limit_web_quota"] >= 0) { |
| | | $tmp = $app->db->queryOneRecord("SELECT sum(hd_quota) as webquota FROM web_domain WHERE domain_id != ".$app->functions->intval($this->id)." AND ".$app->tform->getAuthSQL('u')); |
| | | $webquota = $tmp["webquota"]; |
| | | $new_web_quota = $app->functions->intval($this->dataRecord["hd_quota"]); |
| | | if(($webquota + $new_web_quota > $client["limit_web_quota"]) || ($new_web_quota < 0 && $client["limit_web_quota"] >= 0)) { |
| | | $max_free_quota = floor($client["limit_web_quota"] - $webquota); |
| | | if($max_free_quota < 0) $max_free_quota = 0; |
| | | $app->tform->errorMessage .= $app->tform->lng("limit_web_quota_free_txt").": ".$max_free_quota." MB<br>"; |
| | | // Set the quota field to the max free space |
| | | $this->dataRecord["hd_quota"] = $max_free_quota; |
| | | } |
| | | unset($tmp); |
| | | unset($tmp_quota); |
| | | } |
| | | |
| | | //* Check the traffic quota of the client |
| | | if(isset($_POST["traffic_quota"]) && $client["limit_traffic_quota"] > 0) { |
| | |
| | | if($client['parent_client_id'] > 0) { |
| | | // Get the limits of the reseller |
| | | $reseller = $app->db->queryOneRecord("SELECT limit_traffic_quota, limit_web_subdomain, default_webserver, limit_web_quota FROM client WHERE client_id = ".$client['parent_client_id']); |
| | | |
| | | //* Check the website quota of the client |
| | | if(isset($_POST["hd_quota"]) && $reseller["limit_web_quota"] >= 0) { |
| | | $tmp = $app->db->queryOneRecord("SELECT sum(hd_quota) as webquota FROM web_domain WHERE domain_id != ".$app->functions->intval($this->id)." AND ".$app->tform->getAuthSQL('u')); |
| | | $webquota = $tmp["webquota"]; |
| | | $new_web_quota = $app->functions->intval($this->dataRecord["hd_quota"]); |
| | | if(($webquota + $new_web_quota > $reseller["limit_web_quota"]) || ($new_web_quota < 0 && $reseller["limit_web_quota"] >= 0)) { |
| | | $max_free_quota = floor($reseller["limit_web_quota"] - $webquota); |
| | | if($max_free_quota < 0) $max_free_quota = 0; |
| | | $app->tform->errorMessage .= $app->tform->lng("limit_web_quota_free_txt").": ".$max_free_quota." MB<br>"; |
| | | // Set the quota field to the max free space |
| | | $this->dataRecord["hd_quota"] = $max_free_quota; |
| | | } |
| | | unset($tmp); |
| | | unset($tmp_quota); |
| | | } |
| | | |
| | | //* Check the traffic quota of the client |
| | | if(isset($_POST["traffic_quota"]) && $reseller["limit_traffic_quota"] > 0) { |
| | |
| | | $wb['password_strength_4_txt'] = 'Silné'; |
| | | $wb['password_strength_5_txt'] = 'Velmi silné'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['password_strength_4_txt'] = 'Silne'; |
| | | $wb['password_strength_5_txt'] = 'Bardzo mocne'; |
| | | ?> |
| | | |
| | |
| | | } |
| | | .pnl_listarea th[class^="tbl_col"] { cursor:pointer; } |
| | | .pnl_listarea th[class^="tbl_col"]:hover { background-position:0 -15px!important; } |
| | | .pnl_listarea th.tbl_col_nosort { cursor:default; } |
| | | .pnl_listarea th.tbl_col_nosort:hover { background-position:0 0!important; } |
| | | |
| | | .pageForm_description { font-size: 12px; } |
| | | |
| | |
| | | } |
| | | } |
| | | } else { |
| | | $modules = $conf['interface_modules_enabled']; |
| | | $tmp = $app->db->queryOneRecord("SELECT * FROM sys_user where username = '".$_SESSION["s"]["user"]['username']."'"); |
| | | $modules = $tmp['modules']; |
| | | //$modules = $conf['interface_modules_enabled']; |
| | | if($_SESSION["s"]["user"]["typ"] != 'admin' && $app->auth->has_clients($_SESSION['s']['user']['userid'])) { |
| | | $modules .= ',client'; |
| | | } |
| | |
| | | $wb['PDNS Tupa'] = 'PowerDNS Tupa'; |
| | | $wb['Interface'] = 'Rozhraní'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['import_user_filter_txt'] = 'Importovat uživatelský filter'; |
| | | $wb['import_spamfilter_txt'] = 'Importovat spamový filter'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['page_head_txt'] = 'ISPConfig nástroje'; |
| | | $wb['page_desc_txt'] = 'Změna uživatelského nastavení'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['startmodule_txt'] = 'Výchozí modul po přihlášení'; |
| | | $wb['app_theme_txt'] = 'Výchozí grafické téma'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['btn_start_txt'] = 'Zahájit'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['btn_start_txt'] = 'Uložit'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['ISPConfig Tools'] = 'Narzędzia ISPConfig'; |
| | | $wb['Password and Language'] = 'Hasło i język'; |
| | | $wb['ispconfig_tools_note'] = 'Ten moduł pozwala na zmianę hasła i języka oraz na ponowną synchronizację rekordów DNS.'; |
| | | $wb['Resync'] = 'Resync'; |
| | | $wb['Sync Tools'] = 'Sync Tools'; |
| | | $wb['Resync'] = 'Resynchronizuj'; |
| | | $wb['Sync Tools'] = 'Narzędzia do synchronizacji'; |
| | | $wb['Import'] = 'Import'; |
| | | $wb['ISPConfig 3 mail'] = 'ISPConfig 3 mail'; |
| | | $wb['ISPConfig 3 mail'] = 'Poczta ISPConfig 3'; |
| | | $wb['PDNS Tupa'] = 'PowerDNS Tupa'; |
| | | $wb['Interface'] = 'Interface'; |
| | | $wb['Interface'] = 'Interfejs'; |
| | | ?> |
| | | |
| | |
| | | <?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'] = 'Import konfiguracji poczty z serwera ISPConfig 3'; |
| | | $wb['legend_txt'] = 'Szczegóły połączenia ze zdalnym serwerem'; |
| | | $wb['legend2_txt'] = 'Domena importowanej poczty'; |
| | | $wb['resync_sites_txt'] = 'Resynchronizuj strony www'; |
| | | $wb['resync_ftp_txt'] = 'Resynchronizuj konta FTP'; |
| | | $wb['resync_shell_txt'] = 'Resynchronizuj konta shell'; |
| | | $wb['resync_cron_txt'] = 'Resynchronizuj zadania cron'; |
| | | $wb['resync_db_txt'] = 'Resynchronizuj użytkowników bazy'; |
| | | $wb['resync_mailbox_txt'] = 'Resynchronizuj skrzynki pocztowe'; |
| | | $wb['resync_dns_txt'] = 'Resynchronizuj rekordy DNS'; |
| | | $wb['btn_start_txt'] = 'Uruchom import'; |
| | | $wb['btn_connect_txt'] = 'Połączenie do zdalnego serwera'; |
| | | $wb['btn_cancel_txt'] = 'Anuluj'; |
| | | $wb['client_group_id_txt'] = 'Klient lokalny'; |
| | | $wb['mail_domain_txt'] = 'Zdalna domena poczty'; |
| | | $wb['import_mailbox_txt'] = 'Import skrzynek pocztowych'; |
| | | $wb['import_aliasdomain_txt'] = 'Import aliasów domen'; |
| | | $wb['import_alias_txt'] = 'Import aliasów email'; |
| | | $wb['import_forward_txt'] = 'Import przekierowań'; |
| | | $wb['import_user_filter_txt'] = 'Import filtrów użytkownika'; |
| | | $wb['import_spamfilter_txt'] = 'Import filtrów spamu'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['page_head_txt'] = 'ISPConfig Tools'; |
| | | $wb['page_desc_txt'] = 'Change user settings'; |
| | | $wb['page_head_txt'] = 'Narzędzia ISPConfig'; |
| | | $wb['page_desc_txt'] = 'Zmiana ustawień użytkownika'; |
| | | ?> |
| | | |
| | |
| | | <?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'] = 'Ustawienia interfejsu'; |
| | | $wb['interface_desc_txt'] = 'Zmień temat interfejsu'; |
| | | $wb['language_txt'] = 'Język'; |
| | | $wb['startmodule_txt'] = 'Moduł startowy'; |
| | | $wb['app_theme_txt'] = 'Temat'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['head_txt'] = 'Resync Tool'; |
| | | $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_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['head_txt'] = 'Resynchronizacja ustawień'; |
| | | $wb['legend_txt'] = 'Resynchronizacja'; |
| | | $wb['resync_sites_txt'] = 'Resynchronizacja stron www'; |
| | | $wb['resync_ftp_txt'] = 'Resynchronizacja kont FTP'; |
| | | $wb['resync_shell_txt'] = 'Resynchronizacja kont shell'; |
| | | $wb['resync_cron_txt'] = 'Resynchronizacja zadań cron'; |
| | | $wb['resync_db_txt'] = 'Resynchronizacja użytkowników bazy'; |
| | | $wb['resync_mailbox_txt'] = 'Resynchronizacja skrzynek e-mail'; |
| | | $wb['resync_dns_txt'] = 'Resynchronizacja rekordów DNS'; |
| | | $wb['btn_start_txt'] = 'Start'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['btn_cancel_txt'] = 'Anuluj'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $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'; |
| | | $wb['list_head_txt'] = 'Ustawienia domyślnego szablonu'; |
| | | $wb['list_desc_txt'] = 'Zmień opcje specyficzne dla szablonu'; |
| | | $wb['no_settings_txt'] = 'Nie ma ustawień dla domyślnego szablonu'; |
| | | $wb['btn_start_txt'] = 'Zapisz'; |
| | | $wb['btn_cancel_txt'] = 'Wróć'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch'] = 'Hasła nie pasują do siebie.'; |
| | | $wb['Form to edit the user password and language.'] = 'Formularz do edycji języka i hasła użytkownika.'; |
| | | $wb['Settings'] = 'Ustawienia'; |
| | | $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['generate_password_txt'] = 'Wygeneruj hasło'; |
| | | $wb['repeat_password_txt'] = 'Powtórz hasło'; |
| | | $wb['password_mismatch_txt'] = 'Hasła się nie zgadzają'; |
| | | $wb['password_match_txt'] = 'Hasła się zgadzają'; |
| | | ?> |
| | | |
| | |
| | | 'link' => 'tools/interface_settings.php', |
| | | 'html_id' => 'interface_settings'); |
| | | |
| | | include_once(ISPC_WEB_PATH.'/tools/lib/interface.d/tpl_' . $_SESSION['s']['user']['app_theme'] . '.menu.php'); |
| | | if(file_exists(ISPC_WEB_PATH.'/tools/lib/interface.d/tpl_' . $_SESSION['s']['user']['app_theme'] . '.menu.php')) include_once(ISPC_WEB_PATH.'/tools/lib/interface.d/tpl_' . $_SESSION['s']['user']['app_theme'] . '.menu.php'); |
| | | |
| | | $module['nav'][] = array( 'title' => 'Interface', |
| | | 'open' => 1, |
| | |
| | | $wb['IP addresses'] = 'IP addresses'; |
| | | $wb['OpenVZ'] = 'OpenVZ'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $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['ip_error_unique'] = 'This IP address does already exist.'; |
| | | $wb['IP address'] = 'IP address'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['reserved_txt'] = 'Reserved'; |
| | | $wb['vm_id_txt'] = 'VM'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['template_file_error_empty'] = 'Template filename is empty.'; |
| | | $wb['Template'] = 'Šablona'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['allservers_txt'] = 'Exists on all servers'; |
| | | $wb['ostemplate_id_txt'] = 'ID'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['Template'] = 'Šablona'; |
| | | $wb['Advanced'] = 'Pokročilý'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['template_name_txt'] = 'Název šablony'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['Virtual server'] = 'Virtual server'; |
| | | $wb['Advanced'] = 'Pokročilý'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['veid_txt'] = 'VEID'; |
| | | ?> |
| | | |
| | | |
| | |
| | | $wb['IP addresses'] = 'IP addresses'; |
| | | $wb['OpenVZ'] = 'OpenVZ'; |
| | | ?> |
| | | |
| | |
| | | $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['ip_error_unique'] = 'This IP address does already exist.'; |
| | | $wb['IP address'] = 'IP address'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'OpenVZ IP addresses'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['reserved_txt'] = 'Reserved'; |
| | | $wb['list_head_txt'] = 'Adresy IP OpenVZ'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['ip_address_txt'] = 'Adresy IP'; |
| | | $wb['reserved_txt'] = 'Zarezerwowany'; |
| | | $wb['vm_id_txt'] = 'VM'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_file_error_empty'] = 'Template filename is empty.'; |
| | | $wb['Template'] = 'Template'; |
| | | ?> |
| | | |
| | |
| | | $wb['allservers_txt'] = 'Exists on all servers'; |
| | | $wb['ostemplate_id_txt'] = 'ID'; |
| | | ?> |
| | | |
| | |
| | | $wb['Template'] = 'Template'; |
| | | $wb['Advanced'] = 'Advanced'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | ?> |
| | | |
| | |
| | | $wb['Virtual server'] = 'Virtual server'; |
| | | $wb['Advanced'] = 'Advanced'; |
| | | ?> |
| | | |
| | |
| | | $wb['ip_address_txt'] = 'IP address'; |
| | | $wb['veid_txt'] = 'VEID'; |
| | | ?> |
| | | |
| | |
| | | $liste["item"][] = array( 'field' => "veid", |
| | | 'datatype' => "VARCHAR", |
| | | 'formtype' => "TEXT", |
| | | 'op' => "==", |
| | | 'op' => "=", |
| | | 'prefix' => "", |
| | | 'suffix' => "", |
| | | 'width' => "", |
| | |
| | | $app->uses('listform_actions'); |
| | | |
| | | // $app->listform_actions->SQLOrderBy = 'ORDER BY company_name, contact_name, client_id'; |
| | | // $app->listform_actions->SQLExtWhere = "limit_client = 0"; |
| | | //$app->listform_actions->SQLExtWhere = ""; |
| | | $app->listform_actions->onLoad(); |
| | | |
| | | |
| | |
| | | |
| | | Alias /awstats-icon "/usr/share/awstats/icon" |
| | | |
| | | NameVirtualHost *:80 |
| | | NameVirtualHost *:443 |
| | | <tmpl_loop name="ip_adresses"> |
| | | NameVirtualHost {tmpl_var name="ip_address"}:{tmpl_var name="port"} |
| | | </tmpl_loop> |
| | |
| | | fastcgi_pass unix:{fpm_socket}; |
| | | fastcgi_index index.php; |
| | | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
| | | fastcgi_param PATH_INFO $fastcgi_script_name; |
| | | #fastcgi_param PATH_INFO $fastcgi_script_name; |
| | | fastcgi_buffer_size 128k; |
| | | fastcgi_buffers 256 4k; |
| | | fastcgi_busy_buffers_size 256k; |
| | |
| | | <tmpl_if name='php' op='==' value='cgi'> |
| | | DocumentRoot <tmpl_var name='web_document_root'> |
| | | </tmpl_else> |
| | | <tmpl_if name='php' op='==' value='php-fpm'> |
| | | DocumentRoot <tmpl_var name='web_document_root'> |
| | | </tmpl_else> |
| | | DocumentRoot <tmpl_var name='web_document_root_www'> |
| | | </tmpl_if> |
| | | </tmpl_if> |
| | | </tmpl_if> |
| | | |
| | |
| | | Action php5-fcgi /php5-fcgi |
| | | Alias /php5-fcgi {tmpl_var name='document_root'}/cgi-bin/php5-fcgi-{tmpl_var name='ip_address'}-{tmpl_var name='port'}-{tmpl_var name='domain'} |
| | | <tmpl_if name='use_tcp'> |
| | | FastCgiExternalServer {tmpl_var name='document_root'}/cgi-bin/php5-fcgi-{tmpl_var name='ip_address'}-{tmpl_var name='port'}-{tmpl_var name='domain'} -host 127.0.0.1:<tmpl_var name='fpm_port'> -pass-header Authorization |
| | | FastCgiExternalServer {tmpl_var name='document_root'}/cgi-bin/php5-fcgi-{tmpl_var name='ip_address'}-{tmpl_var name='port'}-{tmpl_var name='domain'} -idle-timeout 300 -host 127.0.0.1:<tmpl_var name='fpm_port'> -pass-header Authorization |
| | | </tmpl_if> |
| | | <tmpl_if name='use_socket'> |
| | | FastCgiExternalServer {tmpl_var name='document_root'}/cgi-bin/php5-fcgi-{tmpl_var name='ip_address'}-{tmpl_var name='port'}-{tmpl_var name='domain'} -socket <tmpl_var name='fpm_socket'> -pass-header Authorization |
| | | FastCgiExternalServer {tmpl_var name='document_root'}/cgi-bin/php5-fcgi-{tmpl_var name='ip_address'}-{tmpl_var name='port'}-{tmpl_var name='domain'} -idle-timeout 300 -socket <tmpl_var name='fpm_socket'> -pass-header Authorization |
| | | </tmpl_if> |
| | | </IfModule> |
| | | </tmpl_if> |
| | |
| | | RewriteEngine on |
| | | <tmpl_if name='seo_redirect_enabled'> |
| | | RewriteCond %{HTTP_HOST} <tmpl_var name='seo_redirect_operator'>^<tmpl_var name='seo_redirect_origin_domain'>$ [NC] |
| | | RewriteRule ^(.*)$ http://<tmpl_var name='seo_redirect_target_domain'>$1 [R=301,L] |
| | | RewriteRule ^(.*)$ http<tmpl_if name='ssl_enabled'>s</tmpl_if>://<tmpl_var name='seo_redirect_target_domain'>$1 [R=301,L] |
| | | </tmpl_if> |
| | | <tmpl_loop name="alias_seo_redirects"> |
| | | RewriteCond %{HTTP_HOST} <tmpl_var name='alias_seo_redirect_operator'>^<tmpl_var name='alias_seo_redirect_origin_domain'>$ [NC] |
| | | RewriteRule ^(.*)$ http://<tmpl_var name='alias_seo_redirect_target_domain'>$1 [R=301,L] |
| | | RewriteRule ^(.*)$ http<tmpl_if name='ssl_enabled'>s</tmpl_if>://<tmpl_var name='alias_seo_redirect_target_domain'>$1 [R=301,L] |
| | | </tmpl_loop> |
| | | <tmpl_loop name="redirects"> |
| | | RewriteCond %{HTTP_HOST} <tmpl_var name='rewrite_domain'>$ [NC] |
| | |
| | | $this->file_owner_user = $owner_res['system_user']; |
| | | $this->file_owner_group = $owner_res['system_group']; |
| | | exec('chown -R '.$this->file_owner_user.':'.$this->file_owner_group.' '.escapeshellarg($this->local_installpath)); |
| | | |
| | | //* Chown stats directory back |
| | | if(is_dir($this->local_installpath.'stats')) { |
| | | exec('chown -R root:root '.escapeshellarg($this->local_installpath.'stats')); |
| | | } |
| | | } |
| | | } |
| | | catch(Exception $e) |
| | |
| | | // The install succeeded, chown newly created files too |
| | | exec('chown -R '.$this->file_owner_user.':'.$this->file_owner_group.' '.escapeshellarg($this->local_installpath)); |
| | | |
| | | //* Chown stats directory back |
| | | if(is_dir($this->local_installpath.'stats')) { |
| | | exec('chown -R root:root '.escapeshellarg($this->local_installpath.'stats')); |
| | | } |
| | | |
| | | $app->dbmaster->query('UPDATE aps_instances SET instance_status = "'.INSTANCE_SUCCESS.'" |
| | | WHERE id = "'.$app->db->quote($task['instance_id']).'";'); |
| | | } |
| | |
| | | |
| | | parent::__construct($this->dbHost, $this->dbUser, $this->dbPass,$this->dbName); |
| | | $try = 0; |
| | | while(!is_null($this->connect_error) && $try < 10) { |
| | | //while(!is_null($this->connect_error) && $try < 10) { |
| | | while(mysqli_connect_error() && $try < 10) { |
| | | if($try > 8) sleep(5); |
| | | elseif($try > 0) sleep(1); |
| | | |
| | |
| | | parent::__construct($this->dbHost, $this->dbUser, $this->dbPass,$this->dbName); |
| | | } |
| | | |
| | | if(is_null($this->connect_error)) $this->isConnected = true; |
| | | //if(is_null($this->connect_error)) $this->isConnected = true; |
| | | if(!mysqli_connect_error()) $this->isConnected = true; |
| | | |
| | | $this->setCharacterEncoding(); |
| | | } |
| | |
| | | public function updateError($location) { |
| | | global $app; |
| | | |
| | | /* |
| | | if(!is_null($this->connect_error)) { |
| | | $this->errorNumber = $this->connect_errno; |
| | | $this->errorMessage = $this->connect_error; |
| | |
| | | $this->errorNumber = $this->errno; |
| | | $this->errorMessage = $this->error; |
| | | } |
| | | */ |
| | | if(mysqli_connect_error()) { |
| | | $this->errorNumber = mysqli_connect_errno(); |
| | | $this->errorMessage = mysqli_connect_error(); |
| | | } else { |
| | | $this->errorNumber = mysqli_errno($this); |
| | | $this->errorMessage = mysqli_error($this); |
| | | } |
| | | |
| | | $this->errorLocation = $location; |
| | | if($this->errorNumber) { |
| | |
| | | global $app,$conf; |
| | | |
| | | $subPath = 'plugins-enabled'; |
| | | if ($type == 'core') $subPath = 'plugins-core'; |
| | | //if ($type == 'core') $subPath = 'plugins-core'; |
| | | |
| | | $plugins_dir = $conf['rootpath'].$conf['fs_div'].$subPath.$conf['fs_div']; |
| | | $tmp_plugins = array(); |
| | |
| | | } |
| | | |
| | | function is_mounted($mountpoint){ |
| | | $cmd = 'df 2>/dev/null | grep " '.$mountpoint.'$"'; |
| | | //$cmd = 'df 2>/dev/null | grep " '.$mountpoint.'$"'; |
| | | $cmd = 'mount 2>/dev/null | grep " on '.$mountpoint.' type "'; |
| | | exec($cmd, $output, $return_var); |
| | | return $return_var == 0 ? true : false; |
| | | } |
| | |
| | | exec('chown --recursive --from='.escapeshellcmd($data['old']['system_user']).':'.escapeshellcmd($data['old']['system_group']).' '.escapeshellcmd($data['new']['system_user']).':'.escapeshellcmd($data['new']['system_group']).' '.$new_dir); |
| | | |
| | | //* Change the home directory and group of the website user |
| | | $command = 'killall -u '.escapeshellcmd($data['new']['system_user']).' && usermod'; |
| | | $command = 'killall -u '.escapeshellcmd($data['new']['system_user']).' ; usermod'; |
| | | $command .= ' --home '.escapeshellcmd($data['new']['document_root']); |
| | | $command .= ' --gid '.escapeshellcmd($data['new']['system_group']); |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']).' 2>/dev/null'; |
| | |
| | | exec('chown -R '.$data['new']['system_user'].':'.$data['new']['system_group'].' '.$error_page_path); |
| | | } // end copy error docs |
| | | |
| | | // Set the quota for the user |
| | | if($username != '' && $app->system->is_user($username)) { |
| | | // Set the quota for the user, but only for vhosts, not vhostsubdomains |
| | | if($username != '' && $app->system->is_user($username) && $data['new']['type'] == 'vhost') { |
| | | if($data['new']['hd_quota'] > 0) { |
| | | $blocks_soft = $data['new']['hd_quota'] * 1024; |
| | | $blocks_hard = $blocks_soft + 1024; |
| | |
| | | if(!stristr($data['new']['custom_php_ini'],'open_basedir') && $data['new']['php'] == 'suphp') { |
| | | $data['new']['custom_php_ini'] .= "\nopen_basedir = '".$data['new']['php_open_basedir']."'\n"; |
| | | } |
| | | |
| | | $fastcgi_config = $app->getconf->get_server_config($conf['server_id'], 'fastcgi'); |
| | | |
| | | if(trim($data['new']['fastcgi_php_version']) != ''){ |
| | | list($custom_fastcgi_php_name, $custom_fastcgi_php_executable, $custom_fastcgi_php_ini_dir) = explode(':', trim($data['new']['fastcgi_php_version'])); |
| | | if(is_file($custom_fastcgi_php_ini_dir)) $custom_fastcgi_php_ini_dir = dirname($custom_fastcgi_php_ini_dir); |
| | | if(substr($custom_fastcgi_php_ini_dir,-1) == '/') $custom_fastcgi_php_ini_dir = substr($custom_fastcgi_php_ini_dir,0,-1); |
| | | } |
| | | |
| | | //* Create custom php.ini |
| | | if(trim($data['new']['custom_php_ini']) != '') { |
| | | $has_custom_php_ini = true; |
| | |
| | | if($data['new']['php'] == 'mod') { |
| | | $master_php_ini_path = $web_config['php_ini_path_apache']; |
| | | } else { |
| | | if($data["new"]['php'] == 'fast-cgi' && file_exists($fastcgi_config["fastcgi_phpini_path"])) { |
| | | if($data["new"]['php'] == 'fast-cgi') { |
| | | if(trim($data['new']['fastcgi_php_version']) != '' && file_exists($custom_fastcgi_php_ini_dir)){ |
| | | $master_php_ini_path = $custom_fastcgi_php_ini_dir; |
| | | } elseif(file_exists($fastcgi_config["fastcgi_phpini_path"])){ |
| | | $master_php_ini_path = $fastcgi_config["fastcgi_phpini_path"]; |
| | | } else { |
| | | $master_php_ini_path = $web_config['php_ini_path_cgi']; |
| | | } |
| | | } else { |
| | | $master_php_ini_path = $web_config['php_ini_path_cgi']; |
| | | } |
| | |
| | | */ |
| | | |
| | | if ($data['new']['php'] == 'fast-cgi') { |
| | | $fastcgi_config = $app->getconf->get_server_config($conf['server_id'], 'fastcgi'); |
| | | |
| | | $fastcgi_starter_path = str_replace('[system_user]',$data['new']['system_user'],$fastcgi_config['fastcgi_starter_path']); |
| | | $fastcgi_starter_path = str_replace('[client_id]',$client_id,$fastcgi_starter_path); |
| | |
| | | // Support for multiple PHP versions (FastCGI) |
| | | if(trim($data['new']['fastcgi_php_version']) != ''){ |
| | | $default_fastcgi_php = false; |
| | | list($custom_fastcgi_php_name, $custom_fastcgi_php_executable, $custom_fastcgi_php_ini_dir) = explode(':', trim($data['new']['fastcgi_php_version'])); |
| | | if(is_file($custom_fastcgi_php_ini_dir)) $custom_fastcgi_php_ini_dir = dirname($custom_fastcgi_php_ini_dir); |
| | | if(substr($custom_fastcgi_php_ini_dir,-1) != '/') $custom_fastcgi_php_ini_dir .= '/'; |
| | | } else { |
| | | $default_fastcgi_php = true; |
| | |
| | | } else { |
| | | //remove the php fastgi starter script if available |
| | | if ($data['old']['php'] == 'fast-cgi') { |
| | | $fastcgi_config = $app->getconf->get_server_config($conf['server_id'], 'fastcgi'); |
| | | $fastcgi_starter_path = str_replace('[system_user]',$data['old']['system_user'],$fastcgi_config['fastcgi_starter_path']); |
| | | $fastcgi_starter_path = str_replace('[client_id]',$client_id,$fastcgi_starter_path); |
| | | if($data['old']['type'] == 'vhost') { |
| | |
| | | if($data['new']['ssl_domain'] != '' && $data['new']['ssl'] == 'y' && @is_file($crt_file) && @is_file($key_file) && (@filesize($crt_file)>0) && (@filesize($key_file)>0)) { |
| | | $tmp_vhost_arr = array('ip_address' => $data['new']['ip_address'], 'ssl_enabled' => 1, 'port' => '443'); |
| | | if(count($rewrite_rules) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('redirects' => $rewrite_rules); |
| | | if(count($alias_seo_redirects) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('alias_seo_redirects' => $alias_seo_redirects); |
| | | $ipv4_ssl_alias_seo_redirects = $alias_seo_redirects; |
| | | if(is_array($ipv4_ssl_alias_seo_redirects) && !empty($ipv4_ssl_alias_seo_redirects)){ |
| | | for($i=0;$i<count($ipv4_ssl_alias_seo_redirects);$i++){ |
| | | $ipv4_ssl_alias_seo_redirects[$i]['ssl_enabled'] = 1; |
| | | } |
| | | } |
| | | if(count($ipv4_ssl_alias_seo_redirects) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('alias_seo_redirects' => $ipv4_ssl_alias_seo_redirects); |
| | | $vhosts[] = $tmp_vhost_arr; |
| | | unset($tmp_vhost_arr); |
| | | unset($tmp_vhost_arr, $ipv4_ssl_alias_seo_redirects); |
| | | $app->log('Enable SSL for: '.$domain,LOGLEVEL_DEBUG); |
| | | } |
| | | |
| | |
| | | if($data['new']['ssl_domain'] != '' && $data['new']['ssl'] == 'y' && @is_file($crt_file) && @is_file($key_file) && (@filesize($crt_file)>0) && (@filesize($key_file)>0)) { |
| | | $tmp_vhost_arr = array('ip_address' => '['.$data['new']['ipv6_address'].']', 'ssl_enabled' => 1, 'port' => '443'); |
| | | if(count($rewrite_rules) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('redirects' => $rewrite_rules); |
| | | if(count($alias_seo_redirects) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('alias_seo_redirects' => $alias_seo_redirects); |
| | | $ipv6_ssl_alias_seo_redirects = $alias_seo_redirects; |
| | | if(is_array($ipv6_ssl_alias_seo_redirects) && !empty($ipv6_ssl_alias_seo_redirects)){ |
| | | for($i=0;$i<count($ipv6_ssl_alias_seo_redirects);$i++){ |
| | | $ipv6_ssl_alias_seo_redirects[$i]['ssl_enabled'] = 1; |
| | | } |
| | | } |
| | | if(count($ipv6_ssl_alias_seo_redirects) > 0) $tmp_vhost_arr = $tmp_vhost_arr + array('alias_seo_redirects' => $ipv6_ssl_alias_seo_redirects); |
| | | $vhosts[] = $tmp_vhost_arr; |
| | | unset($tmp_vhost_arr); |
| | | unset($tmp_vhost_arr, $ipv6_ssl_alias_seo_redirects); |
| | | $app->log('Enable SSL for IPv6: '.$domain,LOGLEVEL_DEBUG); |
| | | } |
| | | } |
| | |
| | | } |
| | | |
| | | //* Create .htaccess and .htpasswd file for website statistics |
| | | if(!is_file($data['new']['document_root'].'/' . $web_folder . '/stats/.htaccess') or $data['old']['document_root'] != $data['new']['document_root']) { |
| | | //if(!is_file($data['new']['document_root'].'/' . $web_folder . '/stats/.htaccess') or $data['old']['document_root'] != $data['new']['document_root']) { |
| | | if(!is_dir($data['new']['document_root'].'/' . $web_folder . '/stats')) $app->system->mkdir($data['new']['document_root'].'/' . $web_folder . '/stats'); |
| | | $ht_file = "AuthType Basic\nAuthName \"Members Only\"\nAuthUserFile ".$data['new']['document_root']."/web/stats/.htpasswd_stats\nrequire valid-user"; |
| | | $app->system->file_put_contents($data['new']['document_root'].'/' . $web_folder . '/stats/.htaccess',$ht_file); |
| | | $app->system->chmod($data['new']['document_root'].'/' . $web_folder . '/stats/.htaccess',0755); |
| | | unset($ht_file); |
| | | } |
| | | //} |
| | | |
| | | if(!is_file($data['new']['document_root'].'/web/stats/.htpasswd_stats') || $data['new']['stats_password'] != $data['old']['stats_password']) { |
| | | if(trim($data['new']['stats_password']) != '') { |
| | |
| | | $app->uses('getconf'); |
| | | $app->uses('system'); |
| | | $web_config = $app->getconf->get_server_config($conf['server_id'], 'web'); |
| | | $fastcgi_config = $app->getconf->get_server_config($conf['server_id'], 'fastcgi'); |
| | | |
| | | if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain') $app->system->web_folder_protection($data['old']['document_root'],false); |
| | | |
| | |
| | | if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain'){ |
| | | if(is_array($log_folders) && !empty($log_folders)){ |
| | | foreach($log_folders as $log_folder){ |
| | | if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | //if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder).' 2>/dev/null'); |
| | | } |
| | | } else { |
| | | if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | //if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder).' 2>/dev/null'); |
| | | } |
| | | } |
| | | |
| | |
| | | |
| | | //remove the php fastgi starter script if available |
| | | if ($data['old']['php'] == 'fast-cgi') { |
| | | $fastcgi_starter_path = str_replace('[system_user]',$data['old']['system_user'],$web_config['fastcgi_starter_path']); |
| | | $fastcgi_starter_path = str_replace('[system_user]',$data['old']['system_user'],$fastcgi_config['fastcgi_starter_path']); |
| | | if($data['old']['type'] == 'vhost') { |
| | | if (is_dir($fastcgi_starter_path)) { |
| | | exec('rm -rf '.$fastcgi_starter_path); |
| | | } |
| | | } else { |
| | | $fcgi_starter_script = $fastcgi_starter_path.$web_config['fastcgi_starter_script'].'_web'.$data['old']['domain_id']; |
| | | $fcgi_starter_script = $fastcgi_starter_path.$fastcgi_config['fastcgi_starter_script'].'_web'.$data['old']['domain_id']; |
| | | if (file_exists($fcgi_starter_script)) { |
| | | exec('rm -f '.$fcgi_starter_script); |
| | | } |
| | |
| | | |
| | | if($data['old']['type'] == 'vhost') { |
| | | //delete the web user |
| | | $command = 'killall -u '.escapeshellcmd($data['old']['system_user']).' && userdel'; |
| | | $command = 'killall -u '.escapeshellcmd($data['old']['system_user']).' ; userdel'; |
| | | $command .= ' '.escapeshellcmd($data['old']['system_user']); |
| | | exec($command); |
| | | if($apache_chrooted) $this->_exec('chroot '.escapeshellcmd($web_config['website_basedir']).' '.$command); |
| | |
| | | |
| | | if($web_config['server_type'] == 'apache'){ |
| | | // Dont just copy over the virtualhost template but add some custom settings |
| | | if(file_exists($conf["rootpath"]."/conf-custom/apache_apps.vhost.master")) { |
| | | $content = file_get_contents($conf["rootpath"]."/conf-custom/apache_apps.vhost.master"); |
| | | } else { |
| | | $content = file_get_contents($conf["rootpath"]."/conf/apache_apps.vhost.master"); |
| | | } |
| | | |
| | | |
| | | $vhost_conf_dir = $web_config['vhost_conf_dir']; |
| | | $vhost_conf_enabled_dir = $web_config['vhost_conf_enabled_dir']; |
| | |
| | | |
| | | if($web_config['server_type'] == 'nginx'){ |
| | | // Dont just copy over the virtualhost template but add some custom settings |
| | | if(file_exists($conf["rootpath"]."/conf-custom/nginx_apps.vhost.master")) { |
| | | $content = file_get_contents($conf["rootpath"]."/conf-custom/nginx_apps.vhost.master"); |
| | | } else { |
| | | $content = file_get_contents($conf["rootpath"]."/conf/nginx_apps.vhost.master"); |
| | | } |
| | | |
| | | $vhost_conf_dir = $web_config['nginx_vhost_conf_dir']; |
| | | $vhost_conf_enabled_dir = $web_config['nginx_vhost_conf_enabled_dir']; |
| | |
| | | |
| | | // PHP-FPM |
| | | // Dont just copy over the php-fpm pool template but add some custom settings |
| | | if(file_exists($conf["rootpath"]."/conf-custom/apps_php_fpm_pool.conf.master")) { |
| | | $fpm_content = file_get_contents($conf["rootpath"]."/conf-custom/apps_php_fpm_pool.conf.master"); |
| | | } else { |
| | | $fpm_content = file_get_contents($conf["rootpath"]."/conf/apps_php_fpm_pool.conf.master"); |
| | | } |
| | | |
| | | $fpm_content = str_replace('{fpm_pool}', 'apps', $fpm_content); |
| | | //$fpm_content = str_replace('{fpm_port}', $web_config['php_fpm_start_port']+1, $fpm_content); |
| | | $fpm_content = str_replace('{fpm_socket}', $fpm_socket, $fpm_content); |
| | |
| | | include('lib/mysql_clientdb.conf'); |
| | | |
| | | if(file_exists($backup_dir.'/'.$backup['filename'])) { |
| | | $parts = explode('_',$backup['filename']); |
| | | $db_name = $parts[1]; |
| | | //$parts = explode('_',$backup['filename']); |
| | | //$db_name = $parts[1]; |
| | | preg_match('@^db_(.+)_\d{4}-\d{2}-\d{2}_\d{2}-\d{2}\.sql\.gz$@', $backup['filename'], $matches); |
| | | $db_name = $matches[1]; |
| | | $command = "gunzip --stdout ".escapeshellarg($backup_dir.'/'.$backup['filename'])." | mysql -h '".escapeshellcmd($clientdb_host)."' -u '".escapeshellcmd($clientdb_user)."' -p'".escapeshellcmd($clientdb_password)."' '".$db_name."'"; |
| | | exec($command); |
| | | } |
| | |
| | | |
| | | $ttl = $data["new"]["ttl"]; |
| | | |
| | | $_db = clone $app->db; |
| | | $_db->dbName = 'named'; |
| | | //$_db = clone $app->db; |
| | | //$_db->dbName = 'named'; |
| | | |
| | | $_db->query("INSERT INTO records (zone, ttl, type, primary_ns, resp_contact, serial, refresh, retry, expire, minimum, ispconfig_id) VALUES ". |
| | | $app->db->query("INSERT INTO named.records (zone, ttl, type, primary_ns, resp_contact, serial, refresh, retry, expire, minimum, ispconfig_id) VALUES ". |
| | | "('$origin', $ttl, 'SOA', '{$data["new"]["ns"]}', '{$data["new"]["mbox"]}', '{$serial["serial"]}', '{$serial["refresh"]}'," . |
| | | "'{$serial["retry"]}', '{$serial["expire"]}', '{$serial["minimum"]}', $ispconfig_id)"); |
| | | unset($_db); |
| | | //unset($_db); |
| | | } |
| | | |
| | | function soa_update($event_name,$data) |
| | |
| | | |
| | | $ttl = $data["new"]["ttl"]; |
| | | |
| | | $_db = clone $app->db; |
| | | $_db->dbName = 'named'; |
| | | //$_db = clone $app->db; |
| | | //$_db->dbName = 'named'; |
| | | |
| | | $_db->query("UPDATE records SET zone = '$origin', ttl = $ttl, primary_ns = '{$data["new"]["ns"]}', resp_contact = '{$data["new"]["mbox"]}', ". |
| | | $app->db->query("UPDATE named.records SET zone = '$origin', ttl = $ttl, primary_ns = '{$data["new"]["ns"]}', resp_contact = '{$data["new"]["mbox"]}', ". |
| | | "serial = '{$serial["serial"]}', refresh = '{$serial["refresh"]}', retry = '{$serial["retry"]}', expire = '{$serial["expire"]}', ". |
| | | "minimum = '{$serial["minimum"]}' WHERE ispconfig_id = ".$data["new"]["id"]." AND type = 'SOA'"); |
| | | unset($_db); |
| | | //unset($_db); |
| | | } |
| | | else |
| | | { |
| | |
| | | { |
| | | global $app, $conf; |
| | | |
| | | $_db = clone $app->db; |
| | | $_db->dbName = 'named'; |
| | | //$_db = clone $app->db; |
| | | //$_db->dbName = 'named'; |
| | | |
| | | $_db->query("DELETE FROM records WHERE ispconfig_id = {$data["old"]["id"]}"); |
| | | unset($_db); |
| | | $app->db->query("DELETE FROM named.records WHERE ispconfig_id = {$data["old"]["id"]}"); |
| | | //unset($_db); |
| | | } |
| | | |
| | | function rr_insert($event_name,$data) |
| | |
| | | |
| | | $ttl = $data["new"]["ttl"]; |
| | | |
| | | $_db = clone $app->db; |
| | | $_db->dbName = 'named'; |
| | | //$_db = clone $app->db; |
| | | //$_db->dbName = 'named'; |
| | | |
| | | if ($type == 'MX') { |
| | | $_db->query("INSERT INTO records (zone, ttl, type, host, mx_priority, data, ispconfig_id)". |
| | | $app->db->query("INSERT INTO named.records (zone, ttl, type, host, mx_priority, data, ispconfig_id)". |
| | | " VALUES ('$origin', $ttl, '$type', '$name', {$data["new"]["aux"]}, '$content', $ispconfig_id)"); |
| | | } else { |
| | | $_db->query("INSERT INTO records (zone, ttl, type, host, data, ispconfig_id)". |
| | | $app->db->query("INSERT INTO named.records (zone, ttl, type, host, data, ispconfig_id)". |
| | | " VALUES ('$origin', $ttl, '$type', '$name', '$content', $ispconfig_id)"); |
| | | } |
| | | |
| | | unset($_db); |
| | | //unset($_db); |
| | | } |
| | | |
| | | function rr_update($event_name,$data) |
| | |
| | | $ttl = $data["new"]["ttl"]; |
| | | $prio = (int)$data["new"]["aux"]; |
| | | |
| | | $_db = clone $app->db; |
| | | $_db->dbName = 'named'; |
| | | //$_db = clone $app->db; |
| | | //$_db->dbName = 'named'; |
| | | |
| | | if ($type == 'MX') { |
| | | $_db->query("UPDATE records SET zone = '$origin', ttl = $ttl, type = '$type', host = '$name', mx_priority = $prio, ". |
| | | $app->db->query("UPDATE named.records SET zone = '$origin', ttl = $ttl, type = '$type', host = '$name', mx_priority = $prio, ". |
| | | "data = '$content' WHERE ispconfig_id = $ispconfig_id AND type != 'SOA'"); |
| | | } else { |
| | | $_db->query("UPDATE records SET zone = '$origin', ttl = $ttl, type = '$type', host = '$name', ". |
| | | $app->db->query("UPDATE named.records SET zone = '$origin', ttl = $ttl, type = '$type', host = '$name', ". |
| | | "data = '$content' WHERE ispconfig_id = $ispconfig_id AND type != 'SOA'"); |
| | | } |
| | | |
| | | unset($_db); |
| | | //unset($_db); |
| | | } else { |
| | | $this->rr_insert($event_name,$data); |
| | | } |
| | |
| | | function rr_delete($event_name,$data) { |
| | | global $app, $conf; |
| | | |
| | | $_db = clone $app->db; |
| | | $_db->dbName = 'named'; |
| | | //$_db = clone $app->db; |
| | | //$_db->dbName = 'named'; |
| | | |
| | | $_db->query("DELETE FROM named.records WHERE ispconfig_id = {$data["old"]["id"]} AND type != 'SOA'"); |
| | | unset($_db); |
| | | $app->db->query("DELETE FROM named.records WHERE ispconfig_id = {$data["old"]["id"]} AND type != 'SOA'"); |
| | | //unset($_db); |
| | | } |
| | | } // end class |
| | | ?> |
| | |
| | | if($data['old']['origin'] != $data['new']['origin']) { |
| | | //TODO : change this when distribution information has been integrated into server record |
| | | if (file_exists('/etc/gentoo-release')) { |
| | | $filename = $dns_config['bind_zonefiles_dir'].'/pri.'.str_replace("/", "_", substr($zone['origin'],0,-1)); |
| | | $filename = $dns_config['bind_zonefiles_dir'].'/pri.'.str_replace("/", "_", substr($data['old']['origin'],0,-1)); |
| | | } |
| | | else { |
| | | $filename = $dns_config['bind_zonefiles_dir'].'/pri.'.str_replace("/", "_", substr($zone['origin'],0,-1)); |
| | | $filename = $dns_config['bind_zonefiles_dir'].'/pri.'.str_replace("/", "_", substr($data['old']['origin'],0,-1)); |
| | | } |
| | | |
| | | if(is_file($filename)) unlink($filename); |
| | |
| | | $web = $app->db->queryOneRecord("SELECT * FROM web_domain WHERE domain_id = ".intval($data['new']['parent_domain_id'])); |
| | | |
| | | //* Check if the resulting path is inside the docroot |
| | | if(substr(realpath($data['new']['dir']),0,strlen($web['document_root'])) != $web['document_root']) { |
| | | if(substr($data['new']['dir'],0,strlen($web['document_root'])) != $web['document_root']) { |
| | | $app->log('User dir is outside of docroot.',LOGLEVEL_WARN); |
| | | return false; |
| | | } |
| | |
| | | $web = $app->db->queryOneRecord("SELECT * FROM web_domain WHERE domain_id = ".intval($data['new']['parent_domain_id'])); |
| | | |
| | | //* Check if the resulting path is inside the docroot |
| | | if(substr(realpath($data['new']['dir']),0,strlen($web['document_root'])) != $web['document_root']) { |
| | | if(substr($data['new']['dir'],0,strlen($web['document_root'])) != $web['document_root']) { |
| | | $app->log('User dir is outside of docroot.',LOGLEVEL_WARN); |
| | | return false; |
| | | } |
| | |
| | | } |
| | | } |
| | | |
| | | $app->log("Found " . count($addresses) . " addresses.",LOGLEVEL_DEBUG); |
| | | |
| | | $alias_addresses = array(); |
| | | |
| | | $email_parts = explode('@',$data["new"]["email"]); |
| | | $sql = "SELECT * FROM mail_forwarding WHERE type = 'aliasdomain' AND destination = '@".$app->db->quote($email_parts[1])."'"; |
| | | $records = $app->db->queryAllRecords($sql); |
| | | if(is_array($records) && count($records) > 0) { |
| | | $app->log("Found " . count($records) . " records (aliasdomains).",LOGLEVEL_DEBUG); |
| | | foreach($records as $rec) { |
| | | $aliasdomain = substr($rec['source'],1); |
| | | foreach($addresses as $email) { |
| | | $email_parts = explode('@',$email); |
| | | $addresses[] = $email_parts[0].'@'.$aliasdomain; |
| | | $alias_addresses[] = $email_parts[0].'@'.$aliasdomain; |
| | | } |
| | | } |
| | | } |
| | | |
| | | $app->log("Found " . count($addresses) . " addresses at all.",LOGLEVEL_DEBUG); |
| | | |
| | | $addresses = array_unique(array_merge($addresses, $alias_addresses)); |
| | | |
| | | $app->log("Found " . count($addresses) . " unique addresses at all.",LOGLEVEL_DEBUG); |
| | | |
| | | $address_str = ''; |
| | | if(is_array($addresses) && count($addresses) > 0) { |
| | | $address_str .= ':addresses ['; |
| | |
| | | return $success; |
| | | } |
| | | |
| | | function drop_or_revoke_user($database_id, $user_id, $host_list){ |
| | | global $app; |
| | | |
| | | // set to all hosts if none given |
| | | if(trim($host_list) == '') $host_list = '%'; |
| | | |
| | | $db_user_databases = $app->db->queryAllRecords("SELECT * FROM web_database WHERE (database_user_id = ".$user_id." OR database_ro_user_id = ".$user_id.") AND active = 'y' AND database_id != ".$database_id); |
| | | $db_user_host_list = array(); |
| | | if(is_array($db_user_databases) && !empty($db_user_databases)){ |
| | | foreach($db_user_databases as $db_user_database){ |
| | | if($db_user_database['remote_access'] == 'y'){ |
| | | if($db_user_database['remote_ips'] == ''){ |
| | | $db_user_host_list[] = '%'; |
| | | } else { |
| | | $tmp_remote_ips = explode(',', $db_user_database['remote_ips']); |
| | | if(is_array($tmp_remote_ips) && !empty($tmp_remote_ips)){ |
| | | foreach($tmp_remote_ips as $tmp_remote_ip){ |
| | | $tmp_remote_ip = trim($tmp_remote_ip); |
| | | if($tmp_remote_ip != '') $db_user_host_list[] = $tmp_remote_ip; |
| | | } |
| | | } |
| | | unset($tmp_remote_ips); |
| | | } |
| | | } |
| | | $db_user_host_list[] = 'localhost'; |
| | | } |
| | | } |
| | | $host_list_arr = explode(',', $host_list); |
| | | //print_r($host_list_arr); |
| | | $drop_hosts = array_diff($host_list_arr, $db_user_host_list); |
| | | //print_r($drop_hosts); |
| | | $revoke_hosts = array_diff($host_list_arr, $drop_hosts); |
| | | //print_r($revoke_hosts); |
| | | |
| | | $drop_host_list = implode(',', $drop_hosts); |
| | | $revoke_host_list = implode(',', $revoke_hosts); |
| | | //echo $drop_host_list."\n"; |
| | | //echo $revoke_host_list."\n"; |
| | | return array('revoke_hosts' => $revoke_host_list, 'drop_hosts' => $drop_host_list); |
| | | } |
| | | |
| | | function db_insert($event_name,$data) { |
| | | global $app, $conf; |
| | | |
| | |
| | | function db_update($event_name,$data) { |
| | | global $app, $conf; |
| | | |
| | | // skip processing if database was and is inactive |
| | | if($data['new']['active'] == 'n' && $data['old']['active'] == 'n') return; |
| | | |
| | | if($data['new']['type'] == 'mysql') { |
| | | if(!include(ISPC_LIB_PATH.'/mysql_clientdb.conf')) { |
| | | $app->log('Unable to open'.ISPC_LIB_PATH.'/mysql_clientdb.conf',LOGLEVEL_ERROR); |
| | |
| | | if($host_list != '') $host_list .= ','; |
| | | $host_list .= 'localhost'; |
| | | |
| | | // REVOKES and DROPS have to be done on old host list, not new host list |
| | | $old_host_list = ''; |
| | | if($data['old']['remote_access'] == 'y') { |
| | | $old_host_list = $data['old']['remote_ips']; |
| | | if($old_host_list == '') $old_host_list = '%'; |
| | | } |
| | | if($old_host_list != '') $old_host_list .= ','; |
| | | $old_host_list .= 'localhost'; |
| | | |
| | | // Create the database user if database was disabled before |
| | | if($data['new']['active'] == 'y' && $data['old']['active'] == 'n') { |
| | | if($db_user) { |
| | |
| | | } |
| | | } else if($data['new']['active'] == 'n' && $data['old']['active'] == 'y') { // revoke database user, if inactive |
| | | if($db_user) { |
| | | if($db_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | else $this->process_host_list('REVOKE', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $host_list, $link); |
| | | if($db_user['database_user'] == 'root'){ |
| | | $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | } else { |
| | | // Find out users to drop and users to revoke |
| | | $drop_or_revoke_user = $this->drop_or_revoke_user($data['new']['database_id'], $data['new']['database_user_id'], $old_host_list); |
| | | if($drop_or_revoke_user['drop_hosts'] != '') $this->process_host_list('DROP', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $drop_or_revoke_user['drop_hosts'], $link); |
| | | if($drop_or_revoke_user['revoke_hosts'] != '') $this->process_host_list('REVOKE', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $drop_or_revoke_user['revoke_hosts'], $link); |
| | | |
| | | |
| | | //$this->process_host_list('DROP', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $old_host_list, $link); |
| | | //$this->process_host_list('REVOKE', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $old_host_list, $link); |
| | | } |
| | | } |
| | | if($db_ro_user && $data['new']['database_user_id'] != $data['new']['database_ro_user_id']) { |
| | | if($db_ro_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | else $this->process_host_list('REVOKE', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $host_list, $link); |
| | | if($db_ro_user['database_user'] == 'root'){ |
| | | $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | } else { |
| | | // Find out users to drop and users to revoke |
| | | $drop_or_revoke_user = $this->drop_or_revoke_user($data['new']['database_id'], $data['new']['database_ro_user_id'], $old_host_list); |
| | | if($drop_or_revoke_user['drop_hosts'] != '') $this->process_host_list('DROP', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $drop_or_revoke_user['drop_hosts'], $link); |
| | | if($drop_or_revoke_user['revoke_hosts'] != '') $this->process_host_list('REVOKE', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $drop_or_revoke_user['revoke_hosts'], $link); |
| | | |
| | | //$this->process_host_list('DROP', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $old_host_list, $link); |
| | | //$this->process_host_list('REVOKE', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $old_host_list, $link); |
| | | } |
| | | } |
| | | // Database is not active, so stop processing here |
| | | $link->query('FLUSH PRIVILEGES;'); |
| | | $link->close(); |
| | | return; |
| | | } |
| | | |
| | | //* selected Users have changed |
| | |
| | | if($data['old']['database_user_id'] && $data['old']['database_user_id'] != $data['new']['database_ro_user_id']) { |
| | | $old_db_user = $app->db->queryOneRecord("SELECT `database_user`, `database_password` FROM `web_database_user` WHERE `database_user_id` = '" . intval($data['old']['database_user_id']) . "'"); |
| | | if($old_db_user) { |
| | | if($old_db_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | else $this->process_host_list('REVOKE', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $host_list, $link); |
| | | if($old_db_user['database_user'] == 'root'){ |
| | | $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | } else { |
| | | // Find out users to drop and users to revoke |
| | | $drop_or_revoke_user = $this->drop_or_revoke_user($data['new']['database_id'], $data['old']['database_user_id'], $old_host_list); |
| | | if($drop_or_revoke_user['drop_hosts'] != '') $this->process_host_list('DROP', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $drop_or_revoke_user['drop_hosts'], $link); |
| | | if($drop_or_revoke_user['revoke_hosts'] != '') $this->process_host_list('REVOKE', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $drop_or_revoke_user['revoke_hosts'], $link); |
| | | |
| | | //$this->process_host_list('DROP', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $old_host_list, $link); |
| | | //$this->process_host_list('REVOKE', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $old_host_list, $link); |
| | | } |
| | | } |
| | | } |
| | | if($db_user) { |
| | |
| | | if($data['old']['database_ro_user_id'] && $data['old']['database_ro_user_id'] != $data['new']['database_user_id']) { |
| | | $old_db_user = $app->db->queryOneRecord("SELECT `database_user`, `database_password` FROM `web_database_user` WHERE `database_user_id` = '" . intval($data['old']['database_ro_user_id']) . "'"); |
| | | if($old_db_user) { |
| | | if($old_db_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | else $this->process_host_list('REVOKE', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $host_list, $link); |
| | | if($old_db_user['database_user'] == 'root'){ |
| | | $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | } else { |
| | | // Find out users to drop and users to revoke |
| | | $drop_or_revoke_user = $this->drop_or_revoke_user($data['new']['database_id'], $data['old']['database_user_id'], $old_host_list); |
| | | if($drop_or_revoke_user['drop_hosts'] != '') $this->process_host_list('DROP', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $drop_or_revoke_user['drop_hosts'], $link); |
| | | if($drop_or_revoke_user['revoke_hosts'] != '') $this->process_host_list('REVOKE', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $drop_or_revoke_user['revoke_hosts'], $link); |
| | | |
| | | //$this->process_host_list('DROP', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $old_host_list, $link); |
| | | //$this->process_host_list('REVOKE', $data['new']['database_name'], $old_db_user['database_user'], $old_db_user['database_password'], $old_host_list, $link); |
| | | } |
| | | } |
| | | } |
| | | if($db_ro_user && $data['new']['database_user_id'] != $data['new']['database_ro_user_id']) { |
| | |
| | | //* set new priveliges |
| | | if($data['new']['remote_access'] == 'y') { |
| | | if($db_user) { |
| | | if($db_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | else $this->process_host_list('GRANT', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $data['new']['remote_ips'], $link); |
| | | if($db_user['database_user'] == 'root'){ |
| | | $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | } else { |
| | | $this->process_host_list('GRANT', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $data['new']['remote_ips'], $link); |
| | | } |
| | | } |
| | | if($db_ro_user && $data['new']['database_user_id'] != $data['new']['database_ro_user_id']) { |
| | | if($db_ro_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | |
| | | } |
| | | } else { |
| | | if($db_user) { |
| | | if($db_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | else $this->process_host_list('REVOKE', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $data['new']['remote_ips'], $link); |
| | | if($db_user['database_user'] == 'root'){ |
| | | $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | } else { |
| | | // Find out users to drop and users to revoke |
| | | $drop_or_revoke_user = $this->drop_or_revoke_user($data['new']['database_id'], $data['new']['database_user_id'], $data['old']['remote_ips']); |
| | | if($drop_or_revoke_user['drop_hosts'] != '') $this->process_host_list('DROP', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $drop_or_revoke_user['drop_hosts'], $link); |
| | | if($drop_or_revoke_user['revoke_hosts'] != '') $this->process_host_list('REVOKE', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $drop_or_revoke_user['revoke_hosts'], $link); |
| | | |
| | | //$this->process_host_list('DROP', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $data['old']['remote_ips'], $link); |
| | | //$this->process_host_list('REVOKE', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $data['old']['remote_ips'], $link); |
| | | } |
| | | } |
| | | if($db_ro_user && $data['new']['database_user_id'] != $data['new']['database_ro_user_id']) { |
| | | if($db_ro_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | else $this->process_host_list('REVOKE', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $data['new']['remote_ips'], $link); |
| | | if($db_ro_user['database_user'] == 'root'){ |
| | | $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | } else { |
| | | // Find out users to drop and users to revoke |
| | | $drop_or_revoke_user = $this->drop_or_revoke_user($data['new']['database_id'], $data['new']['database_ro_user_id'], $data['old']['remote_ips']); |
| | | if($drop_or_revoke_user['drop_hosts'] != '') $this->process_host_list('DROP', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $drop_or_revoke_user['drop_hosts'], $link); |
| | | if($drop_or_revoke_user['revoke_hosts'] != '') $this->process_host_list('REVOKE', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $drop_or_revoke_user['revoke_hosts'], $link); |
| | | |
| | | //$this->process_host_list('DROP', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $data['old']['remote_ips'], $link); |
| | | //$this->process_host_list('REVOKE', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $data['old']['remote_ips'], $link); |
| | | } |
| | | } |
| | | } |
| | | $app->log('Changing MySQL remote access privileges for database: '.$data['new']['database_name'],LOGLEVEL_DEBUG); |
| | | } elseif($data['new']['remote_access'] == 'y' && $data['new']['remote_ips'] != $data['old']['remote_ips']) { |
| | | //* Change remote access list |
| | | if($db_user) { |
| | | if($db_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | else { |
| | | $this->process_host_list('REVOKE', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $data['old']['remote_ips'], $link); |
| | | if($db_user['database_user'] == 'root'){ |
| | | $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | } else { |
| | | // Find out users to drop and users to revoke |
| | | $drop_or_revoke_user = $this->drop_or_revoke_user($data['new']['database_id'], $data['new']['database_user_id'], $data['old']['remote_ips']); |
| | | if($drop_or_revoke_user['drop_hosts'] != '') $this->process_host_list('DROP', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $drop_or_revoke_user['drop_hosts'], $link); |
| | | if($drop_or_revoke_user['revoke_hosts'] != '') $this->process_host_list('REVOKE', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $drop_or_revoke_user['revoke_hosts'], $link); |
| | | |
| | | //$this->process_host_list('DROP', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $data['old']['remote_ips'], $link); |
| | | //$this->process_host_list('REVOKE', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $data['old']['remote_ips'], $link); |
| | | $this->process_host_list('GRANT', $data['new']['database_name'], $db_user['database_user'], $db_user['database_password'], $data['new']['remote_ips'], $link); |
| | | } |
| | | } |
| | | if($db_ro_user && $data['new']['database_user_id'] != $data['new']['database_ro_user_id']) { |
| | | if($db_ro_user['database_user'] == 'root') $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | else { |
| | | $this->process_host_list('REVOKE', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $data['old']['remote_ips'], $link); |
| | | if($db_ro_user['database_user'] == 'root'){ |
| | | $app->log('User root not allowed for Client databases',LOGLEVEL_WARNING); |
| | | } else { |
| | | // Find out users to drop and users to revoke |
| | | $drop_or_revoke_user = $this->drop_or_revoke_user($data['new']['database_id'], $data['new']['database_user_id'], $data['old']['remote_ips']); |
| | | if($drop_or_revoke_user['drop_hosts'] != '') $this->process_host_list('DROP', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $drop_or_revoke_user['drop_hosts'], $link); |
| | | if($drop_or_revoke_user['revoke_hosts'] != '') $this->process_host_list('REVOKE', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $drop_or_revoke_user['revoke_hosts'], $link); |
| | | |
| | | //$this->process_host_list('DROP', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $data['old']['remote_ips'], $link); |
| | | //$this->process_host_list('REVOKE', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $data['old']['remote_ips'], $link); |
| | | $this->process_host_list('GRANT', $data['new']['database_name'], $db_ro_user['database_user'], $db_ro_user['database_password'], $data['new']['remote_ips'], $link, '', true); |
| | | } |
| | | } |
| | |
| | | exec('chown --recursive --from='.escapeshellcmd($data['old']['system_user']).':'.escapeshellcmd($data['old']['system_group']).' '.escapeshellcmd($data['new']['system_user']).':'.escapeshellcmd($data['new']['system_group']).' '.$new_dir); |
| | | |
| | | //* Change the home directory and group of the website user |
| | | $command = 'killall -u '.escapeshellcmd($data['new']['system_user']).' && usermod'; |
| | | $command = 'killall -u '.escapeshellcmd($data['new']['system_user']).' ; usermod'; |
| | | $command .= ' --home '.escapeshellcmd($data['new']['document_root']); |
| | | $command .= ' --gid '.escapeshellcmd($data['new']['system_group']); |
| | | $command .= ' '.escapeshellcmd($data['new']['system_user']).' 2>/dev/null'; |
| | |
| | | exec('chown -R '.$data['new']['system_user'].':'.$data['new']['system_group'].' '.$error_page_path); |
| | | } // end copy error docs |
| | | |
| | | // Set the quota for the user |
| | | if($username != '' && $app->system->is_user($username)) { |
| | | // Set the quota for the user, but only for vhosts, not vhostsubdomains |
| | | if($username != '' && $app->system->is_user($username) && $data['new']['type'] == 'vhost') { |
| | | if($data['new']['hd_quota'] > 0) { |
| | | $blocks_soft = $data['new']['hd_quota'] * 1024; |
| | | $blocks_hard = $blocks_soft + 1024; |
| | |
| | | if($data['old']['type'] == 'vhost' || $data['old']['type'] == 'vhostsubdomain'){ |
| | | if(is_array($log_folders) && !empty($log_folders)){ |
| | | foreach($log_folders as $log_folder){ |
| | | if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | //if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder).' 2>/dev/null'); |
| | | } |
| | | } else { |
| | | if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | //if($app->system->is_mounted($data['old']['document_root'].'/'.$log_folder)) exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder)); |
| | | exec('umount '.escapeshellarg($data['old']['document_root'].'/'.$log_folder).' 2>/dev/null'); |
| | | } |
| | | } |
| | | |
| | |
| | | |
| | | if($data['old']['type'] == 'vhost') { |
| | | //delete the web user |
| | | $command = 'killall -u '.escapeshellcmd($data['old']['system_user']).' && userdel'; |
| | | $command = 'killall -u '.escapeshellcmd($data['old']['system_user']).' ; userdel'; |
| | | $command .= ' '.escapeshellcmd($data['old']['system_user']); |
| | | exec($command); |
| | | if($nginx_chrooted) $this->_exec('chroot '.escapeshellcmd($web_config['website_basedir']).' '.$command); |
| | |
| | | |
| | | // get the config |
| | | $app->uses("getconf"); |
| | | $old_ini_data = $app->ini_parser->parse_ini_string($data['old']['config']); |
| | | $mail_config = $app->getconf->get_server_config($conf['server_id'], 'mail'); |
| | | |
| | | copy('/etc/postfix/main.cf','/etc/postfix/main.cf~'); |
| | |
| | | exec("postconf -e 'relayhost ='"); |
| | | } |
| | | |
| | | if($mail_config['realtime_blackhole_list'] != '') { |
| | | $rbl_hosts = explode(",",str_replace(" ", "", $mail_config['realtime_blackhole_list'])); |
| | | if($mail_config['realtime_blackhole_list'] != $old_ini_data['mail']['realtime_blackhole_list']) { |
| | | $rbl_hosts = trim(preg_replace('/\s+/', '', $mail_config['realtime_blackhole_list'])); |
| | | if($rbl_hosts != ''){ |
| | | $rbl_hosts = explode(",", $rbl_hosts); |
| | | } |
| | | $options = explode(", ", exec("postconf -h smtpd_recipient_restrictions")); |
| | | foreach ($options as $key => $value) { |
| | | if (!preg_match('/reject_rbl_client/', $value)) { |
| | | $new_options[] = $value; |
| | | } |
| | | } |
| | | if(is_array($rbl_hosts) && !empty($rbl_hosts)){ |
| | | foreach ($rbl_hosts as $key => $value) { |
| | | $new_options[] = "reject_rbl_client ".$value; |
| | | $value = trim($value); |
| | | if($value != '') $new_options[] = "reject_rbl_client ".$value; |
| | | } |
| | | |
| | | } |
| | | exec("postconf -e 'smtpd_recipient_restrictions = ".implode(", ", $new_options)."'"); |
| | | } |
| | | |
| | |
| | | $app->uses('modules,plugins,file,services'); |
| | | // Load the modules that are im the mods-core folder |
| | | $app->modules->loadModules('core'); |
| | | // Load the plugins that are in the plugins-core folder |
| | | $app->plugins->loadPlugins('core'); |
| | | // Load the plugins that are in the f folder |
| | | //$app->plugins->loadPlugins('core'); |
| | | } |
| | | |
| | | |