Merged revisions 3596-3670 from 3.0.5 stable branch.
947 files modified
163 files added
| | |
| | | exec("chmod -R 770 $install_dir/server/aps_packages"); |
| | | |
| | | //* make sure that the server config file (not the interface one) is only readable by the root user |
| | | exec("chmod 600 $install_dir/server/lib/$configfile"); |
| | | exec("chown root:root $install_dir/server/lib/$configfile"); |
| | | chmod($install_dir.'/server/lib/config.inc.php', 0600); |
| | | chown($install_dir.'/server/lib/config.inc.php', 'root'); |
| | | chgrp($install_dir.'/server/lib/config.inc.php', 'root'); |
| | | |
| | | //* Make sure thet the interface config file is readable by user ispconfig only |
| | | chmod($install_dir.'/interface/lib/config.inc.php', 0600); |
| | | chown($install_dir.'/interface/lib/config.inc.php', 'ispconfig'); |
| | | chgrp($install_dir.'/interface/lib/config.inc.php', 'ispconfig'); |
| | | |
| | | if(@is_file("$install_dir/server/lib/mysql_clientdb.conf")) { |
| | | exec("chmod 600 $install_dir/server/lib/mysql_clientdb.conf"); |
| | | exec("chown root:root $install_dir/server/lib/mysql_clientdb.conf"); |
| | |
| | | exec("chmod -R 770 $install_dir/server/aps_packages"); |
| | | |
| | | //* make sure that the server config file (not the interface one) is only readable by the root user |
| | | chmod($install_dir.'/server/lib/'.$configfile, 0600); |
| | | chown($install_dir.'/server/lib/'.$configfile, 'root'); |
| | | chgrp($install_dir.'/server/lib/'.$configfile, 'root'); |
| | | chmod($install_dir.'/server/lib/config.inc.php', 0600); |
| | | chown($install_dir.'/server/lib/config.inc.php', 'root'); |
| | | chgrp($install_dir.'/server/lib/config.inc.php', 'root'); |
| | | |
| | | //* Make sure thet the interface config file is readable by user ispconfig only |
| | | chmod($install_dir.'/interface/lib/config.inc.php', 0600); |
| | | chown($install_dir.'/interface/lib/config.inc.php', 'ispconfig'); |
| | | chgrp($install_dir.'/interface/lib/config.inc.php', 'ispconfig'); |
| | | |
| | | chmod($install_dir.'/server/lib/remote_action.inc.php', 0600); |
| | | chown($install_dir.'/server/lib/remote_action.inc.php', 'root'); |
| | |
| | | exec("chmod -R 770 $install_dir/server/aps_packages"); |
| | | |
| | | //* make sure that the server config file (not the interface one) is only readable by the root user |
| | | exec("chmod 600 $install_dir/server/lib/$configfile"); |
| | | exec("chown root:root $install_dir/server/lib/$configfile"); |
| | | chmod($install_dir.'/server/lib/config.inc.php', 0600); |
| | | chown($install_dir.'/server/lib/config.inc.php', 'root'); |
| | | chgrp($install_dir.'/server/lib/config.inc.php', 'root'); |
| | | |
| | | //* Make sure thet the interface config file is readable by user ispconfig only |
| | | chmod($install_dir.'/interface/lib/config.inc.php', 0600); |
| | | chown($install_dir.'/interface/lib/config.inc.php', 'ispconfig'); |
| | | chgrp($install_dir.'/interface/lib/config.inc.php', 'ispconfig'); |
| | | |
| | | if(@is_file("$install_dir/server/lib/mysql_clientdb.conf")) { |
| | | exec("chmod 600 $install_dir/server/lib/mysql_clientdb.conf"); |
| | | exec("chown root:root $install_dir/server/lib/mysql_clientdb.conf"); |
| | |
| | | function find_hash_file($hash, $dir, $basedir = '') { |
| | | $res = opendir($dir); |
| | | if(!$res) return false; |
| | | |
| | | |
| | | if(substr($basedir, -1) === '/') $basedir = substr($basedir, 0, strlen($basedir) - 1); |
| | | if(substr($dir, -1) === '/') $dir = substr($dir, 0, strlen($dir) - 1); |
| | | if($basedir === '') $basedir = $dir; |
| | | |
| | | |
| | | while($cur = readdir($res)) { |
| | | if($cur == '.' || $cur == '..') continue; |
| | | $entry = $dir.'/'.$cur; |
| | |
| | | $result = find_hash_file($hash, $entry, $basedir); |
| | | if($result !== false) return $result; |
| | | } elseif(md5_file($entry) === $hash) { |
| | | $entry = substr($entry, strlen($basedir)); |
| | | $entry = substr($entry, strlen($basedir) + 1); |
| | | if(substr($entry, 0, 7) === '/posix/') $entry = substr($entry, 7); |
| | | return $entry; |
| | | } |
| | |
| | | (c) 2012 Marius Cramer, pixcept KG, m.cramer@pixcept.de |
| | | */ |
| | | function get_system_timezone() { |
| | | if(is_link('/etc/localtime')) { |
| | | $timezone = readlink('/etc/localtime'); |
| | | $timezone = str_replace('/usr/share/zoneinfo/', '', $timezone); |
| | | if(substr($timezone, 0, 6) === 'posix/') $timezone = substr($timezone, 6); |
| | | } else { |
| | | $hash = md5_file('/etc/localtime'); |
| | | $timezone = find_hash_file($hash, '/usr/share/zoneinfo'); |
| | | } |
| | | $timezone = false; |
| | | if(file_exists('/etc/timezone') && is_readable('/etc/timezone')) { |
| | | $timezone = trim(file_get_contents('/etc/timezone')); |
| | | if(file_exists('/usr/share/zoneinfo/' . $timezone) == false) $timezone = false; |
| | | } |
| | | |
| | | if(!$timezone && is_link('/etc/localtime')) { |
| | | $timezone = readlink('/etc/localtime'); |
| | | $timezone = str_replace('/usr/share/zoneinfo/', '', $timezone); |
| | | if(substr($timezone, 0, 6) === 'posix/') $timezone = substr($timezone, 6); |
| | | } elseif(!$timezone) { |
| | | $hash = md5_file('/etc/localtime'); |
| | | $timezone = find_hash_file($hash, '/usr/share/zoneinfo'); |
| | | } |
| | | |
| | | if(!$timezone) { |
| | | exec('date +%Z', $tzinfo); |
| | | $timezone = $tzinfo[0]; |
| | | } |
| | | if(!$timezone) { |
| | | exec('date +%Z', $tzinfo); |
| | | $timezone = $tzinfo[0]; |
| | | } |
| | | |
| | | return $timezone; |
| | | return $timezone; |
| | | } |
| | | |
| | | |
| | | |
| | | ?> |
| | |
| | | $this->warning('Unable to set rights of user in master database: '.$value['db']."\n Query: ".$query."\n Error: ".$this->dbmaster->errorMessage); |
| | | } |
| | | |
| | | $query = "GRANT SELECT, UPDATE (`ssl_request`, `ssl_cert`, `ssl_action`) ON ".$value['db'].".`web_domain` TO '".$value['user']."'@'".$host."' "; |
| | | $query = "GRANT SELECT, UPDATE (`ssl_request`, `ssl_cert`, `ssl_action`, `ssl_key`) ON ".$value['db'].".`web_domain` TO '".$value['user']."'@'".$host."' "; |
| | | if ($verbose){ |
| | | echo $query ."\n"; |
| | | } |
| | |
| | | exec("chmod -R 770 $install_dir/server/aps_packages"); |
| | | |
| | | //* make sure that the server config file (not the interface one) is only readable by the root user |
| | | chmod($install_dir.'/server/lib/'.$configfile, 0600); |
| | | chown($install_dir.'/server/lib/'.$configfile, 'root'); |
| | | chgrp($install_dir.'/server/lib/'.$configfile, 'root'); |
| | | chmod($install_dir.'/server/lib/config.inc.php', 0600); |
| | | chown($install_dir.'/server/lib/config.inc.php', 'root'); |
| | | chgrp($install_dir.'/server/lib/config.inc.php', 'root'); |
| | | |
| | | //* Make sure thet the interface config file is readable by user ispconfig only |
| | | chmod($install_dir.'/interface/lib/config.inc.php', 0600); |
| | | chown($install_dir.'/interface/lib/config.inc.php', 'ispconfig'); |
| | | chgrp($install_dir.'/interface/lib/config.inc.php', 'ispconfig'); |
| | | |
| | | chmod($install_dir.'/server/lib/remote_action.inc.php', 0600); |
| | | chown($install_dir.'/server/lib/remote_action.inc.php', 'root'); |
New file |
| | |
| | | ALTER TABLE `client` ADD `paypal_email` VARCHAR( 255 ) NULL DEFAULT NULL AFTER `bank_account_swift` ; |
| | | ALTER TABLE `web_domain` ADD `proxy_directives` MEDIUMTEXT NULL DEFAULT NULL ; |
| | | |
| | | |
| | |
| | | `bank_name` varchar(255) DEFAULT NULL, |
| | | `bank_account_iban` varchar(255) DEFAULT NULL, |
| | | `bank_account_swift` varchar(255) DEFAULT NULL, |
| | | `paypal_email` varchar(255) DEFAULT NULL, |
| | | `default_mailserver` int(11) unsigned NOT NULL DEFAULT '1', |
| | | `limit_maildomain` int(11) NOT NULL DEFAULT '-1', |
| | | `limit_mailbox` int(11) NOT NULL DEFAULT '-1', |
| | |
| | | `active` enum('n','y') NOT NULL default 'y', |
| | | `traffic_quota_lock` enum('n','y') NOT NULL default 'n', |
| | | `fastcgi_php_version` varchar(255) DEFAULT NULL, |
| | | `proxy_directives` mediumtext, |
| | | PRIMARY KEY (`domain_id`) |
| | | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; |
| | | |
| | |
| | | <VirtualHost _default_:{vhost_port}> |
| | | ServerAdmin webmaster@localhost |
| | | |
| | | <FilesMatch "\.ph(p3?|tml)$"> |
| | | SetHandler None |
| | | </FilesMatch> |
| | | |
| | | <IfModule mod_fcgid.c> |
| | | DocumentRoot /var/www/ispconfig/ |
| | | SuexecUserGroup ispconfig ispconfig |
| | |
| | | </Directory> |
| | | </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 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> |
| | | |
| | | # ErrorLog /var/log/apache2/error.log |
| | | # CustomLog /var/log/apache2/access.log combined |
| | |
| | | default_pass_scheme = CRYPT |
| | | |
| | | password_query = SELECT password FROM mail_user WHERE login = '%u' AND disable%Ls = 'n' |
| | | # user_query = SELECT email AS user, maildir AS home, CONCAT('*:storage=', quota , 'B') AS quota_rule FROM mail_user WHERE login = '%u' AND disable%Ls = 'n' |
| | | user_query = SELECT email as user, maildir as home, CONCAT('maildir:', maildir, '/Maildir') as mail, uid, gid, CONCAT('*:storage=', quota, 'B') AS quota_rule, CONCAT(maildir, '/.sieve') as sieve FROM mail_user WHERE (login = '%u' OR email = '%u') AND disable%Ls = 'n' |
| | | |
| | | # The iterate_query is required for the doveadm command only and works only on dovecot 2 servers. |
| | | # Do not enable it on Dovecot 1.x servers |
| | | # iterate_query = SELECT email as user FROM mail_user |
| | |
| | | default_pass_scheme = CRYPT |
| | | |
| | | password_query = SELECT password FROM mail_user WHERE login = '%u' AND disable%Ls = 'n' |
| | | # user_query = SELECT email as user, maildir as home, CONCAT('maildir:', maildir, '/Maildir') as mail, uid, gid, CONCAT('maildir:storage=', floor(quota/1024)) AS quota, CONCAT(maildir, '/.sieve') as sieve FROM mail_user WHERE login = '%u' AND disable%Ls = 'n' |
| | | user_query = SELECT email as user, maildir as home, CONCAT('maildir:', maildir, '/Maildir') as mail, uid, gid, CONCAT('*:storage=', quota, 'B') AS quota_rule, CONCAT(maildir, '/.sieve') as sieve FROM mail_user WHERE (login = '%u' OR email = '%u') AND disable%Ls = 'n' |
| | | |
| | | # The iterate_query is required for the doveadm command only and works only on dovecot 2 servers. |
| | | # Do not enable it on Dovecot 1.x servers |
| | | # iterate_query = SELECT email as user FROM mail_user |
| | | |
| | |
| | | default_pass_scheme = CRYPT |
| | | |
| | | password_query = SELECT password FROM mail_user WHERE login = '%u' AND disable%Ls = 'n' |
| | | # user_query = SELECT email as user, maildir as home, CONCAT('maildir:', maildir, '/Maildir') as mail, uid, gid, CONCAT('maildir:storage=', floor(quota/1024)) AS quota, CONCAT(maildir, '/.sieve') as sieve FROM mail_user WHERE login = '%u' AND disable%Ls = 'n' |
| | | user_query = SELECT email as user, maildir as home, CONCAT('maildir:', maildir, '/Maildir') as mail, uid, gid, CONCAT('*:storage=', quota, 'B') AS quota_rule, CONCAT(maildir, '/.sieve') as sieve FROM mail_user WHERE (login = '%u' OR email = '%u') AND disable%Ls = 'n' |
| | | |
| | | # The iterate_query is required for the doveadm command only and works only on dovecot 2 servers. |
| | | # Do not enable it on Dovecot 1.x servers |
| | | # iterate_query = SELECT email as user FROM mail_user |
| | |
| | | |
| | | password_query = SELECT password FROM mail_user WHERE login = '%u' AND disable%Ls = 'n' |
| | | user_query = SELECT email as user, maildir as home, CONCAT('maildir:', maildir, '/Maildir') as mail, uid, gid, CONCAT('*:storage=', quota, 'B') AS quota_rule, CONCAT(maildir, '/.sieve') as sieve FROM mail_user WHERE (login = '%u' OR email = '%u') AND disable%Ls = 'n' |
| | | |
| | | # The iterate_query is required for the doveadm command only and works only on dovecot 2 servers. |
| | | # Do not enable it on Dovecot 1.x servers |
| | | # iterate_query = SELECT email as user FROM mail_user |
| | |
| | | apps_vhost_port=8081 |
| | | apps_vhost_ip=_default_ |
| | | apps_vhost_servername= |
| | | php_open_basedir=[website_path]/web:[website_path]/private:[website_path]/tmp:/var/www/[website_domain]/web:/srv/www/[website_domain]/web:/usr/share/php5:/tmp:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/usr/share/php |
| | | php_open_basedir=[website_path]/web:[website_path]/private:[website_path]/tmp:/var/www/[website_domain]/web:/srv/www/[website_domain]/web:/usr/share/php5:/usr/share/php:/tmp:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/usr/share/php |
| | | htaccess_allow_override=All |
| | | awstats_conf_dir=/etc/awstats |
| | | awstats_data_dir=/var/lib/awstats |
| | |
| | | $this->tpl->setVar('app_title', $this->_conf['app_title']); |
| | | if(isset($_SESSION['s']['user'])) { |
| | | $this->tpl->setVar('app_version', $this->_conf['app_version']); |
| | | // get pending datalog changes |
| | | $datalog = $this->db->datalogStatus(); |
| | | $this->tpl->setVar('datalog_changes_txt', $this->lng('datalog_changes_txt')); |
| | | $this->tpl->setVar('datalog_changes_end_txt', $this->lng('datalog_changes_end_txt')); |
| | | $this->tpl->setVar('datalog_changes_count', $datalog['count']); |
| | | $this->tpl->setLoop('datalog_changes', $datalog['entries']); |
| | | } else { |
| | | $this->tpl->setVar('app_version', ''); |
| | | } |
| | |
| | |
|
| | | class ApsBase
|
| | | {
|
| | | protected $app = null;
|
| | | protected $db = null;
|
| | | |
| | | protected $log_prefix = '';
|
| | | protected $fetch_url = '';
|
| | | protected $aps_version = '';
|
| | |
| | | */
|
| | | public function __construct($app, $log_prefix = 'APS: ', $interface_mode = false)
|
| | | {
|
| | | $this->db = $app->db;
|
| | | $this->app = $app;
|
| | | |
| | | $this->log_prefix = $log_prefix;
|
| | | $this->interface_mode = $interface_mode;
|
| | | $this->fetch_url = 'apscatalog.com';
|
| | |
| | | */
|
| | | private function checkRequirements()
|
| | | {
|
| | | global $app;
|
| | | |
| | | try
|
| | | {
|
| | | // Check if allow_url_fopen is enabled
|
| | |
| | | }
|
| | | catch(Exception $e)
|
| | | {
|
| | | $this->app->log($this->log_prefix.'Aborting execution because '.$e->getMessage(), LOGLEVEL_ERROR);
|
| | | $app->log($this->log_prefix.'Aborting execution because '.$e->getMessage(), LOGLEVEL_ERROR);
|
| | | return false;
|
| | | }
|
| | | }
|
| | |
| | | */
|
| | | public function startCrawler()
|
| | | {
|
| | | global $app;
|
| | | |
| | | try
|
| | | {
|
| | | // Make sure the requirements are given so that this script can execute
|
| | |
| | | if(!$req_ret) return false;
|
| | |
|
| | | // Execute the open task and first fetch all vendors (APS catalog API 1.1, p. 12)
|
| | | $this->app->log($this->log_prefix.'Fetching data from '.$this->fetch_url);
|
| | | $app->log($this->log_prefix.'Fetching data from '.$this->fetch_url);
|
| | |
|
| | | $vendor_page = $this->fetchPage('/all-app/'); //$vendor_page = $this->fetchPage('/'.$this->aps_version.'/');
|
| | | preg_match_all("/\<a href=\"(.+)\/\" class=\"vendor\"/i", $vendor_page, $matches);
|
| | |
| | | // Get all known apps from the database and the highest known version
|
| | | // Note: A dirty hack is used for numerical sorting of the VARCHAR field Version: +0 -> cast
|
| | | // A longer but typesafe way would be: ORDER BY CAST(REPLACE(Version, '.', '') AS UNSIGNED) DESC
|
| | | $existing_apps = $this->db->queryAllRecords("SELECT * FROM (
|
| | | $existing_apps = $app->db->queryAllRecords("SELECT * FROM (
|
| | | SELECT name AS Name, CONCAT(version, '-', CAST(`release` AS CHAR)) AS CurrentVersion
|
| | | FROM aps_packages ORDER BY REPLACE(version, '.', '')+0 DESC, `release` DESC
|
| | | ) as Versions GROUP BY name");
|
| | |
| | | if(file_exists($old_folder)) $this->removeDirectory($old_folder);
|
| | |
|
| | | /*
|
| | | $this->db->query("UPDATE aps_packages SET package_status = '".PACKAGE_OUTDATED."' WHERE name = '".
|
| | | $this->db->quote($app_name)."' AND CONCAT(version, '-', CAST(`release` AS CHAR)) = '".
|
| | | $this->db->quote($ex_ver)."';");
|
| | | $app->db->query("UPDATE aps_packages SET package_status = '".PACKAGE_OUTDATED."' WHERE name = '".
|
| | | $app->db->quote($app_name)."' AND CONCAT(version, '-', CAST(`release` AS CHAR)) = '".
|
| | | $app->db->quote($ex_ver)."';");
|
| | | */
|
| | | $tmp = $this->db->queryOneRecord("SELECT id FROM aps_packages WHERE name = '".
|
| | | $this->db->quote($app_name)."' AND CONCAT(version, '-', CAST(`release` AS CHAR)) = '".
|
| | | $this->db->quote($ex_ver)."';");
|
| | | $this->db->datalogUpdate('aps_packages', "package_status = ".PACKAGE_OUTDATED, 'id', $tmp['id']);
|
| | | $tmp = $app->db->queryOneRecord("SELECT id FROM aps_packages WHERE name = '".
|
| | | $app->db->quote($app_name)."' AND CONCAT(version, '-', CAST(`release` AS CHAR)) = '".
|
| | | $app->db->quote($ex_ver)."';");
|
| | | $app->db->datalogUpdate('aps_packages', "package_status = ".PACKAGE_OUTDATED, 'id', $tmp['id']);
|
| | | unset($tmp);
|
| | | }
|
| | |
|
| | |
| | | if($apps_to_dl_chunks[$i][$j]['filesize'] != 0 &&
|
| | | $apps_to_dl_chunks[$i][$j]['filesize'] != filesize($apps_to_dl_chunks[$i][$j]['localtarget']))
|
| | | {
|
| | | $this->app->log($this->log_prefix.' The filesize of the package "'.
|
| | | $app->log($this->log_prefix.' The filesize of the package "'.
|
| | | $apps_to_dl_chunks[$i][$j]['name'].'" is wrong. Download failure?', LOGLEVEL_WARN);
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | $this->app->log($this->log_prefix.'Processed '.$apps_in_repo.
|
| | | $app->log($this->log_prefix.'Processed '.$apps_in_repo.
|
| | | ' apps from the repo. Downloaded '.$apps_updated.
|
| | | ' updates, '.$apps_downloaded.' new apps');
|
| | | }
|
| | | catch(Exception $e)
|
| | | {
|
| | | $this->app->log($this->log_prefix.$e->getMessage(), LOGLEVEL_ERROR);
|
| | | $app->log($this->log_prefix.$e->getMessage(), LOGLEVEL_ERROR);
|
| | | return false;
|
| | | }
|
| | | }
|
| | |
| | | */
|
| | | public function parseFolderToDB()
|
| | | {
|
| | | global $app;
|
| | | |
| | | try
|
| | | {
|
| | | // This method must be used in server mode
|
| | |
| | |
|
| | | // Get registered packages and mark non-existant packages with an error code to omit the install
|
| | | $existing_packages = array();
|
| | | $path_query = $this->db->queryAllRecords('SELECT path AS Path FROM aps_packages;');
|
| | | $path_query = $app->db->queryAllRecords('SELECT path AS Path FROM aps_packages;');
|
| | | foreach($path_query as $path) $existing_packages[] = $path['Path'];
|
| | | $diff = array_diff($existing_packages, $pkg_list);
|
| | | foreach($diff as $todelete) {
|
| | | /*$this->db->query("UPDATE aps_packages SET package_status = '".PACKAGE_ERROR_NOMETA."' |
| | | WHERE path = '".$this->db->quote($todelete)."';");*/
|
| | | $tmp = $this->db->queryOneRecord("SELECT id FROM aps_packages WHERE path = '".$this->db->quote($todelete)."';");
|
| | | $this->db->datalogUpdate('aps_packages', "package_status = ".PACKAGE_ERROR_NOMETA, 'id', $tmp['id']);
|
| | | /*$app->db->query("UPDATE aps_packages SET package_status = '".PACKAGE_ERROR_NOMETA."' |
| | | WHERE path = '".$app->db->quote($todelete)."';");*/
|
| | | $tmp = $app->db->queryOneRecord("SELECT id FROM aps_packages WHERE path = '".$app->db->quote($todelete)."';");
|
| | | $app->db->datalogUpdate('aps_packages', "package_status = ".PACKAGE_ERROR_NOMETA, 'id', $tmp['id']);
|
| | | unset($tmp);
|
| | | }
|
| | |
|
| | |
| | | $metafile = $this->interface_pkg_dir.'/'.$pkg.'/APP-META.xml';
|
| | | if(!file_exists($metafile))
|
| | | {
|
| | | $this->app->log($this->log_prefix.'Cannot read metadata from '.$pkg, LOGLEVEL_ERROR);
|
| | | $app->log($this->log_prefix.'Cannot read metadata from '.$pkg, LOGLEVEL_ERROR);
|
| | | continue;
|
| | | }
|
| | |
|
| | |
| | | $pkg_release = parent::getXPathValue($sxe, 'release');
|
| | |
|
| | | /*
|
| | | $this->db->query("INSERT INTO `aps_packages` |
| | | $app->db->query("INSERT INTO `aps_packages` |
| | | (`path`, `name`, `category`, `version`, `release`, `package_status`) VALUES
|
| | | ('".$this->db->quote($pkg)."', '".$this->db->quote($pkg_name)."',
|
| | | '".$this->db->quote($pkg_category)."', '".$this->db->quote($pkg_version)."',
|
| | | ".$this->db->quote($pkg_release).", ".PACKAGE_ENABLED.");");
|
| | | ('".$app->db->quote($pkg)."', '".$app->db->quote($pkg_name)."',
|
| | | '".$app->db->quote($pkg_category)."', '".$app->db->quote($pkg_version)."',
|
| | | ".$app->db->quote($pkg_release).", ".PACKAGE_ENABLED.");");
|
| | | */
|
| | |
|
| | | $insert_data = "(`path`, `name`, `category`, `version`, `release`, `package_url`, `package_status`) VALUES
|
| | | ('".$this->db->quote($pkg)."', '".$this->db->quote($pkg_name)."',
|
| | | '".$this->db->quote($pkg_category)."', '".$this->db->quote($pkg_version)."',
|
| | | ".$this->db->quote($pkg_release).", '".$this->db->quote($this->app_download_url_list[$pkg])."', ".PACKAGE_ENABLED.");";
|
| | | ('".$app->db->quote($pkg)."', '".$app->db->quote($pkg_name)."',
|
| | | '".$app->db->quote($pkg_category)."', '".$app->db->quote($pkg_version)."',
|
| | | ".$app->db->quote($pkg_release).", '".$app->db->quote($this->app_download_url_list[$pkg])."', ".PACKAGE_ENABLED.");";
|
| | |
|
| | | $this->app->db->datalogInsert('aps_packages', $insert_data, 'id');
|
| | | $app->db->datalogInsert('aps_packages', $insert_data, 'id');
|
| | | }
|
| | | }
|
| | | catch(Exception $e)
|
| | | {
|
| | | $this->app->log($this->log_prefix.$e->getMessage(), LOGLEVEL_ERROR);
|
| | | $this->app->error($e->getMessage());
|
| | | $app->log($this->log_prefix.$e->getMessage(), LOGLEVEL_ERROR);
|
| | | $app->error($e->getMessage());
|
| | | return false;
|
| | | }
|
| | | }
|
| | |
| | | */
|
| | | private function getCustomerIDFromDomain($domain)
|
| | | {
|
| | | global $app;
|
| | | $customerid = 0;
|
| | |
|
| | | $customerdata = $this->db->queryOneRecord("SELECT client_id FROM sys_group, web_domain
|
| | | $customerdata = $app->db->queryOneRecord("SELECT client_id FROM sys_group, web_domain
|
| | | WHERE web_domain.sys_groupid = sys_group.groupid
|
| | | AND web_domain.domain = '".$this->db->quote($domain)."';");
|
| | | AND web_domain.domain = '".$app->db->quote($domain)."';");
|
| | | if(!empty($customerdata)) $customerid = $customerdata['client_id'];
|
| | |
|
| | | return $customerid;
|
| | |
| | | */
|
| | | private function getInstanceDataForDatalog($instanceid)
|
| | | {
|
| | | global $app;
|
| | | $webserver_id = '';
|
| | |
|
| | | $websrv = $this->db->queryOneRecord("SELECT server_id FROM web_domain |
| | | $websrv = $app->db->queryOneRecord("SELECT server_id FROM web_domain |
| | | WHERE domain = (SELECT value FROM aps_instances_settings
|
| | | WHERE name = 'main_domain' AND instance_id = ".$this->db->quote($instanceid).");");
|
| | | WHERE name = 'main_domain' AND instance_id = ".$app->db->quote($instanceid).");");
|
| | |
|
| | | // If $websrv is empty, an error has occured. Domain no longer existing? Settings table damaged?
|
| | | // Anyhow, remove this instance record because it's not useful at all
|
| | | if(empty($websrv))
|
| | | {
|
| | | $this->db->query("DELETE FROM aps_instances WHERE id = ".$this->db->quote($instanceid).";");
|
| | | $this->db->query("DELETE FROM aps_instances_settings WHERE instance_id = ".$this->db->quote($instanceid).";");
|
| | | $app->db->query("DELETE FROM aps_instances WHERE id = ".$app->db->quote($instanceid).";");
|
| | | $app->db->query("DELETE FROM aps_instances_settings WHERE instance_id = ".$app->db->quote($instanceid).";");
|
| | | }
|
| | | else $webserver_id = $websrv['server_id'];
|
| | |
|
| | |
| | | */
|
| | | public function getNewestPackageID($id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(preg_match('/^[0-9]+$/', $id) != 1) return 0;
|
| | |
|
| | | $result = $this->db->queryOneRecord("SELECT id, name, |
| | | $result = $app->db->queryOneRecord("SELECT id, name, |
| | | CONCAT(version, '-', CAST(`release` AS CHAR)) AS current_version
|
| | | FROM aps_packages
|
| | | WHERE name = (SELECT name FROM aps_packages WHERE id = ".$this->db->quote($id).") |
| | | WHERE name = (SELECT name FROM aps_packages WHERE id = ".$app->db->quote($id).") |
| | | ORDER BY REPLACE(version, '.', '')+0 DESC, `release` DESC");
|
| | |
|
| | | if(!empty($result) && ($id != $result['id'])) return $result['id'];
|
| | |
| | | */
|
| | | public function isValidPackageID($id, $is_admin = false)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(preg_match('/^[0-9]+$/', $id) != 1) return false;
|
| | |
|
| | | $sql_ext = (!$is_admin) ?
|
| | | 'package_status = '.PACKAGE_ENABLED.' AND' :
|
| | | '(package_status = '.PACKAGE_ENABLED.' OR package_status = '.PACKAGE_LOCKED.') AND';
|
| | |
|
| | | $result = $this->db->queryOneRecord("SELECT id FROM aps_packages WHERE ".$sql_ext." id = ".$this->db->quote($id).";");
|
| | | $result = $app->db->queryOneRecord("SELECT id FROM aps_packages WHERE ".$sql_ext." id = ".$app->db->quote($id).";");
|
| | | if(!$result) return false;
|
| | |
|
| | | return true;
|
| | |
| | | */
|
| | | public function isValidInstanceID($id, $client_id, $is_admin = false)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(preg_match('/^[0-9]+$/', $id) != 1) return false;
|
| | |
|
| | | // Only filter if not admin
|
| | | $sql_ext = (!$is_admin) ? 'customer_id = '.$this->db->quote($client_id).' AND' : ''; |
| | | $sql_ext = (!$is_admin) ? 'customer_id = '.$app->db->quote($client_id).' AND' : ''; |
| | |
|
| | | $result = $this->db->queryOneRecord('SELECT id FROM aps_instances WHERE '.$sql_ext.' id = '.$this->db->quote($id).';');
|
| | | $result = $app->db->queryOneRecord('SELECT id FROM aps_instances WHERE '.$sql_ext.' id = '.$app->db->quote($id).';');
|
| | | if(!$result) return false;
|
| | |
|
| | | return true;
|
| | |
| | | $app->uses('tools_sites');
|
| | |
|
| | | $webserver_id = 0;
|
| | | $websrv = $this->db->queryOneRecord("SELECT * FROM web_domain WHERE domain = '".$this->db->quote($settings['main_domain'])."';");
|
| | | $websrv = $app->db->queryOneRecord("SELECT * FROM web_domain WHERE domain = '".$app->db->quote($settings['main_domain'])."';");
|
| | | if(!empty($websrv)) $webserver_id = $websrv['server_id'];
|
| | | $customerid = $this->getCustomerIDFromDomain($settings['main_domain']);
|
| | |
|
| | | if(empty($settings) || empty($webserver_id)) return false;
|
| | |
|
| | | //* Get server config of the web server
|
| | | $this->app->uses("getconf");
|
| | | $web_config = $this->app->getconf->get_server_config($app->functions->intval($websrv["server_id"]),'web');
|
| | | $app->uses("getconf");
|
| | | $web_config = $app->getconf->get_server_config($app->functions->intval($websrv["server_id"]),'web');
|
| | |
|
| | | //* Set mysql mode to php-fcgi and enable suexec in website on apache servers
|
| | | if($web_config['server_type'] == 'apache') {
|
| | |
| | | }
|
| | |
|
| | | //* Create the MySQL database for the application
|
| | | $pkg = $this->db->queryOneRecord('SELECT * FROM aps_packages WHERE id = '.$this->db->quote($packageid).';');
|
| | | $pkg = $app->db->queryOneRecord('SELECT * FROM aps_packages WHERE id = '.$app->db->quote($packageid).';');
|
| | | $metafile = $this->interface_pkg_dir.'/'.$pkg['path'].'/APP-META.xml';
|
| | | $sxe = $this->readInMetaFile($metafile);
|
| | |
|
| | |
| | | $dbuser_prefix = $app->tools_sites->replacePrefix($global_config['dbuser_prefix'], $tmp);
|
| | | unset($tmp);
|
| | |
|
| | | //* get the default database server of the client
|
| | | $client = $app->db->queryOneRecord("SELECT default_dbserver FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = ".$websrv['sys_groupid']);
|
| | | if(is_array($client) && $client['default_dbserver'] > 0 && $client['default_dbserver'] != $websrv['server_id']) {
|
| | | $mysql_db_server_id = $client['default_dbserver'];
|
| | | $dbserver_config = $web_config = $app->getconf->get_server_config($app->functions->intval($mysql_db_server_id),'server');
|
| | | $mysql_db_host = $dbserver_config['ip_address'];
|
| | | $mysql_db_remote_access = 'y';
|
| | | $mysql_db_remote_ips = $dbserver_config['ip_address'];
|
| | | } else {
|
| | | // get information if the webserver is a db server, too
|
| | | $web_server = $app->db->queryOneRecord("SELECT server_id,server_name,db_server FROM server WHERE server_id = ".$websrv['server_id']);
|
| | | if($web_server['db_server'] == 1) {
|
| | | // create database on "localhost" (webserver)
|
| | | $mysql_db_server_id = $websrv['server_id'];
|
| | | $mysql_db_host = 'localhost';
|
| | | $mysql_db_remote_access = 'n';
|
| | | $mysql_db_remote_ips = '';
|
| | | }
|
| | | } else {
|
| | | //* get the default database server of the client
|
| | | $client = $app->db->queryOneRecord("SELECT default_dbserver FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = ".$websrv['sys_groupid']);
|
| | | if(is_array($client) && $client['default_dbserver'] > 0 && $client['default_dbserver'] != $websrv['server_id']) {
|
| | | $mysql_db_server_id = $client['default_dbserver'];
|
| | | $dbserver_config = $web_config = $app->getconf->get_server_config($app->functions->intval($mysql_db_server_id),'server');
|
| | | $mysql_db_host = $dbserver_config['ip_address'];
|
| | | $mysql_db_remote_access = 'y';
|
| | | $webserver_config = $app->getconf->get_server_config($app->functions->intval($websrv['server_id']),'server');
|
| | | $mysql_db_remote_ips = $webserver_config['ip_address'];
|
| | | } else {
|
| | | /* I left this in place for a fallback that should NEVER! happen.
|
| | | * if we reach this point it means that there is NO default db server for the client
|
| | | * AND the webserver has NO db service enabled.
|
| | | * We have to abort the aps installation here... so I added a return false
|
| | | * although this does not present any error message to the user.
|
| | | */
|
| | | return false;
|
| | | |
| | | /*$mysql_db_server_id = $websrv['server_id'];
|
| | | $mysql_db_host = 'localhost';
|
| | | $mysql_db_remote_access = 'n';
|
| | | $mysql_db_remote_ips = '';*/
|
| | | }
|
| | | }
|
| | |
|
| | | //* Find a free db name for the app
|
| | | //* Find a free db name for the app
|
| | | for($n = 1; $n <= 1000; $n++) {
|
| | | $mysql_db_name = $dbname_prefix.'aps'.$n;
|
| | | $mysql_db_name = ($dbname_prefix != '' ? $dbname_prefix.'aps'.$n : uniqid('aps'));
|
| | | $tmp = $app->db->queryOneRecord("SELECT count(database_id) as number FROM web_database WHERE database_name = '".$app->db->quote($mysql_db_name)."'");
|
| | | if($tmp['number'] == 0) break;
|
| | | }
|
| | | //* Find a free db username for the app
|
| | | for($n = 1; $n <= 1000; $n++) {
|
| | | $mysql_db_user = $dbuser_prefix.'aps'.$n;
|
| | | $mysql_db_user = ($dbname_prefix != '' ? $dbname_prefix.'aps'.$n : uniqid('aps'));
|
| | | $tmp = $app->db->queryOneRecord("SELECT count(database_user_id) as number FROM web_database_user WHERE database_user = '".$app->db->quote($mysql_db_user)."'");
|
| | | if($tmp['number'] == 0) break;
|
| | | }
|
| | |
| | | }
|
| | |
|
| | | //* Insert new package instance
|
| | | $insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `customer_id`, `package_id`, `instance_status`) VALUES (".$websrv['sys_userid'].", ".$websrv['sys_groupid'].", 'riud', '".$websrv['sys_perm_group']."', '', ".$this->db->quote($webserver_id).",".$this->db->quote($customerid).", ".$this->db->quote($packageid).", ".INSTANCE_PENDING.")";
|
| | | $insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `customer_id`, `package_id`, `instance_status`) VALUES (".$websrv['sys_userid'].", ".$websrv['sys_groupid'].", 'riud', '".$websrv['sys_perm_group']."', '', ".$app->db->quote($webserver_id).",".$app->db->quote($customerid).", ".$app->db->quote($packageid).", ".INSTANCE_PENDING.")";
|
| | | $InstanceID = $app->db->datalogInsert('aps_instances', $insert_data, 'id');
|
| | |
|
| | | //* Insert all package settings
|
| | | if(is_array($settings)) {
|
| | | foreach($settings as $key => $value) {
|
| | | $insert_data = "(server_id, instance_id, name, value) VALUES (".$this->db->quote($webserver_id).",".$this->db->quote($InstanceID).", '".$this->db->quote($key)."', '".$this->db->quote($value)."')";
|
| | | $this->db->datalogInsert('aps_instances_settings', $insert_data, 'id');
|
| | | $insert_data = "(server_id, instance_id, name, value) VALUES (".$app->db->quote($webserver_id).",".$app->db->quote($InstanceID).", '".$app->db->quote($key)."', '".$app->db->quote($value)."')";
|
| | | $app->db->datalogInsert('aps_instances_settings', $insert_data, 'id');
|
| | | }
|
| | | }
|
| | |
|
| | |
| | | {
|
| | | global $app;
|
| | | /*
|
| | | $this->db->query("UPDATE aps_instances SET instance_status = ".INSTANCE_REMOVE." WHERE id = ".$instanceid.";");
|
| | | $app->db->query("UPDATE aps_instances SET instance_status = ".INSTANCE_REMOVE." WHERE id = ".$instanceid.";");
|
| | |
|
| | | $webserver_id = $this->getInstanceDataForDatalog($instanceid);
|
| | | if($webserver_id == '') return;
|
| | |
|
| | | // Create a sys_datalog entry for deletion
|
| | | $datalog = array('Instance_id' => $instanceid, 'server_id' => $webserver_id);
|
| | | $this->db->datalogSave('aps', 'DELETE', 'id', $instanceid, array(), $datalog);
|
| | | $app->db->datalogSave('aps', 'DELETE', 'id', $instanceid, array(), $datalog);
|
| | | */
|
| | |
|
| | | $sql = "SELECT web_database.database_id as database_id, web_database.database_user_id as `database_user_id` FROM aps_instances_settings, web_database WHERE aps_instances_settings.value = web_database.database_name AND aps_instances_settings.value = aps_instances_settings.name = 'main_database_name' AND aps_instances_settings.instance_id = ".$instanceid." LIMIT 0,1";
|
| | | $tmp = $this->db->queryOneRecord($sql);
|
| | | if($tmp['database_id'] > 0) $this->db->datalogDelete('web_database', 'database_id', $tmp['database_id']);
|
| | | $tmp = $app->db->queryOneRecord($sql);
|
| | | if($tmp['database_id'] > 0) $app->db->datalogDelete('web_database', 'database_id', $tmp['database_id']);
|
| | |
|
| | | $database_user = $tmp['database_user_id'];
|
| | | $tmp = $this->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_database` WHERE `database_user_id` = '" . $app->functions->intval($database_user) . "' OR `database_ro_user_id` = '" . $app->functions->intval($database_user) . "'");
|
| | | if($tmp['cnt'] < 1) $this->db->datalogDelete('web_database_user', 'database_user_id', $database_user);
|
| | | $tmp = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_database` WHERE `database_user_id` = '" . $app->functions->intval($database_user) . "' OR `database_ro_user_id` = '" . $app->functions->intval($database_user) . "'");
|
| | | if($tmp['cnt'] < 1) $app->db->datalogDelete('web_database_user', 'database_user_id', $database_user);
|
| | |
|
| | | $app->db->datalogUpdate('aps_instances', "instance_status = ".INSTANCE_REMOVE, 'id', $instanceid);
|
| | |
|
| | |
| | | */
|
| | | public function reinstallInstance($instanceid)
|
| | | {
|
| | | global $app;
|
| | | |
| | | /*
|
| | | $this->db->query("UPDATE aps_instances SET instance_status = ".INSTANCE_INSTALL." WHERE id = ".$instanceid.";");
|
| | | $app->db->query("UPDATE aps_instances SET instance_status = ".INSTANCE_INSTALL." WHERE id = ".$instanceid.";");
|
| | |
|
| | | $webserver_id = $this->getInstanceDataForDatalog($instanceid);
|
| | | if($webserver_id == '') return;
|
| | |
|
| | | // Create a sys_datalog entry for re-installation
|
| | | $datalog = array('instance_id' => $instanceid, 'server_id' => $webserver_id);
|
| | | $this->db->datalogSave('aps', 'INSERT', 'id', $instanceid, array(), $datalog);
|
| | | $app->db->datalogSave('aps', 'INSERT', 'id', $instanceid, array(), $datalog);
|
| | | */
|
| | |
|
| | | $sql = "SELECT web_database.database_id as database_id FROM aps_instances_settings, web_database WHERE aps_instances_settings.value = web_database.database_name AND aps_instances_settings.value = aps_instances_settings.name = 'main_database_name' AND aps_instances_settings.instance_id = ".$instanceid." LIMIT 0,1";
|
| | | $tmp = $this->db->queryOneRecord($sql);
|
| | | if($tmp['database_id'] > 0) $this->db->datalogDelete('web_database', 'database_id', $tmp['database_id']);
|
| | | $tmp = $app->db->queryOneRecord($sql);
|
| | | if($tmp['database_id'] > 0) $app->db->datalogDelete('web_database', 'database_id', $tmp['database_id']);
|
| | |
|
| | | $this->db->datalogUpdate('aps_instances', "instance_status = ".INSTANCE_INSTALL, 'id', $instanceid);
|
| | | $app->db->datalogUpdate('aps_instances', "instance_status = ".INSTANCE_INSTALL, 'id', $instanceid);
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | */
|
| | | public function getPackageSettings($id)
|
| | | {
|
| | | $pkg = $this->db->queryOneRecord('SELECT * FROM aps_packages WHERE id = '.$this->db->quote($id).';');
|
| | | global $app;
|
| | | |
| | | $pkg = $app->db->queryOneRecord('SELECT * FROM aps_packages WHERE id = '.$app->db->quote($id).';');
|
| | |
|
| | | // Load in meta file if existing and register its namespaces
|
| | | $metafile = $this->interface_pkg_dir.'/'.$pkg['path'].'/APP-META.xml';
|
| | |
| | | // Main domain (obligatory)
|
| | | if(isset($postinput['main_domain']))
|
| | | {
|
| | | if(!in_array($postinput['main_domain'], $domains)) $error[] = $this->app->lng('error_main_domain');
|
| | | if(!in_array($postinput['main_domain'], $domains)) $error[] = $app->lng('error_main_domain');
|
| | | else $input['main_domain'] = $postinput['main_domain'];
|
| | | }
|
| | | else $error[] = $this->app->lng('error_main_domain'); |
| | | else $error[] = $app->lng('error_main_domain'); |
| | |
|
| | | // Main location (not obligatory but must be supplied)
|
| | | if(isset($postinput['main_location']))
|
| | |
| | | $main_location = $this->secureLocation($main_location);
|
| | | // Only allow digits, words, / and -
|
| | | $main_location = preg_replace("/[^\d\w\/\-]/i", "", $main_location);
|
| | | if($userinput && (strlen($main_location) == 0)) $temp_errstr = $this->app->lng('error_inv_main_location');
|
| | | if($userinput && (strlen($main_location) == 0)) $temp_errstr = $app->lng('error_inv_main_location');
|
| | |
|
| | | // Find out document_root and make sure no apps are installed twice to one location
|
| | | if(in_array($postinput['main_domain'], $domains))
|
| | | {
|
| | | $docroot = $this->db->queryOneRecord("SELECT document_root FROM web_domain |
| | | WHERE domain = '".$this->db->quote($postinput['main_domain'])."';");
|
| | | $docroot = $app->db->queryOneRecord("SELECT document_root FROM web_domain |
| | | WHERE domain = '".$app->db->quote($postinput['main_domain'])."';");
|
| | | $new_path = $docroot['document_root'];
|
| | | if(substr($new_path, -1) != '/') $new_path .= '/';
|
| | | $new_path .= $main_location;
|
| | |
| | | // and get the corresponding document roots as well as the defined
|
| | | // locations. If an existing doc_root + location matches with the
|
| | | // new one -> error
|
| | | $instance_domains = $this->db->queryAllRecords("SELECT instance_id, s.value AS domain |
| | | $instance_domains = $app->db->queryAllRecords("SELECT instance_id, s.value AS domain |
| | | FROM aps_instances AS i, aps_instances_settings AS s
|
| | | WHERE i.id = s.instance_id AND s.name = 'main_domain'
|
| | | AND i.customer_id = '".$this->db->quote($customerid)."';");
|
| | | AND i.customer_id = '".$app->db->quote($customerid)."';");
|
| | | for($i = 0; $i < count($instance_domains); $i++)
|
| | | {
|
| | | $used_path = '';
|
| | |
|
| | | $doc_root = $this->db->queryOneRecord("SELECT document_root FROM web_domain |
| | | WHERE domain = '".$this->db->quote($instance_domains[$i]['domain'])."';");
|
| | | $doc_root = $app->db->queryOneRecord("SELECT document_root FROM web_domain |
| | | WHERE domain = '".$app->db->quote($instance_domains[$i]['domain'])."';");
|
| | |
|
| | | // Probably the domain settings were changed later, so make sure the doc_root
|
| | | // is not empty for further validation
|
| | |
| | | $used_path = $docroot['document_root'];
|
| | | if(substr($used_path, -1) != '/') $used_path .= '/';
|
| | |
|
| | | $location_for_domain = $this->db->queryOneRecord("SELECT value |
| | | $location_for_domain = $app->db->queryOneRecord("SELECT value |
| | | FROM aps_instances_settings WHERE name = 'main_location'
|
| | | AND instance_id = '".$this->db->quote($instance_domains[$i]['instance_id'])."';");
|
| | | AND instance_id = '".$app->db->quote($instance_domains[$i]['instance_id'])."';");
|
| | |
|
| | | // The location might be empty but the DB return must not be false!
|
| | | if($location_for_domain) $used_path .= $location_for_domain['value'];
|
| | |
|
| | | if($new_path == $used_path)
|
| | | {
|
| | | $temp_errstr = $this->app->lng('error_used_location');
|
| | | $temp_errstr = $app->lng('error_used_location');
|
| | | break;
|
| | | }
|
| | | }
|
| | | }
|
| | | }
|
| | | else $temp_errstr = $this->app->lng('error_main_domain');
|
| | | else $temp_errstr = $app->lng('error_main_domain');
|
| | |
|
| | | if($temp_errstr == '') $input['main_location'] = htmlspecialchars($main_location);
|
| | | else $error[] = $temp_errstr;
|
| | | }
|
| | | else $error[] = $this->app->lng('error_no_main_location');
|
| | | else $error[] = $app->lng('error_no_main_location');
|
| | |
|
| | | // License (the checkbox must be set)
|
| | | if(isset($pkg_details['License need agree'])
|
| | | && $pkg_details['License need agree'] == 'true')
|
| | | {
|
| | | if(isset($postinput['license']) && $postinput['license'] == 'on') $input['license'] = 'true';
|
| | | else $error[] = $this->app->lng('error_license_agreement');
|
| | | else $error[] = $app->lng('error_license_agreement');
|
| | | }
|
| | |
|
| | | // Database
|
| | |
| | | {
|
| | | if(isset($postinput['main_database_password']))
|
| | | {
|
| | | if($postinput['main_database_password'] == '') $error[] = $this->app->lng('error_no_database_pw');
|
| | | if($postinput['main_database_password'] == '') $error[] = $app->lng('error_no_database_pw');
|
| | | else if(strlen($postinput['main_database_password']) > 8)
|
| | | $input['main_database_password'] = htmlspecialchars($postinput['main_database_password']);
|
| | | else $error[] = $this->app->lng('error_short_database_pw');
|
| | | else $error[] = $app->lng('error_short_database_pw');
|
| | | }
|
| | | else $error[] = $this->app->lng('error_no_database_pw');
|
| | | else $error[] = $app->lng('error_no_database_pw');
|
| | | }
|
| | |
|
| | | // Validate the package settings
|
| | |
| | | {
|
| | | if($app->functions->intval($setting['SettingMinLength'], true) != 0
|
| | | && strlen($postinput[$setting_id]) < $app->functions->intval($setting['SettingMinLength'], true))
|
| | | $temp_errstr = sprintf($this->app->lng('error_short_value_for'), $setting['setting_name']);
|
| | | $temp_errstr = sprintf($app->lng('error_short_value_for'), $setting['setting_name']);
|
| | |
|
| | | if($app->functions->intval($setting['SettingMaxLength'], true) != 0
|
| | | && strlen($postinput[$setting_id]) > $app->functions->intval($setting['SettingMaxLength'], true))
|
| | | $temp_errstr = sprintf($this->app->lng('error_long_value_for'), $setting['setting_name']);
|
| | | $temp_errstr = sprintf($app->lng('error_long_value_for'), $setting['setting_name']);
|
| | |
|
| | | if(isset($setting['SettingRegex'])
|
| | | && !preg_match("/".$setting['SettingRegex']."/", $postinput[$setting_id]))
|
| | | $temp_errstr = sprintf($this->app->lng('error_inv_value_for'), $setting['setting_name']);
|
| | | $temp_errstr = sprintf($app->lng('error_inv_value_for'), $setting['setting_name']);
|
| | | }
|
| | | else if($setting['SettingType'] == 'email')
|
| | | {
|
| | | if(filter_var(strtolower($postinput[$setting_id]), FILTER_VALIDATE_EMAIL) === false)
|
| | | $temp_errstr = sprintf($this->app->lng('error_inv_email_for'), $setting['setting_name']);
|
| | | $temp_errstr = sprintf($app->lng('error_inv_email_for'), $setting['setting_name']);
|
| | | }
|
| | | else if($setting['SettingType'] == 'domain-name')
|
| | | {
|
| | | if(!preg_match("^(http|https)\://([a-zA-Z0-9\.\-]+(\:[a-zA-Z0-9\.&%\$\-]+)*@)*((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])|localhost|([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9\-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\?\'\\\+&%\$#\=~_\-]+))*$",
|
| | | $postinput[$setting_id]))
|
| | | $temp_errstr = sprintf($this->app->lng('error_inv_domain_for'), $setting['setting_name']); |
| | | $temp_errstr = sprintf($app->lng('error_inv_domain_for'), $setting['setting_name']); |
| | | }
|
| | | else if($setting['SettingType'] == 'integer')
|
| | | {
|
| | | if(filter_var($postinput[$setting_id], FILTER_VALIDATE_INT) === false)
|
| | | $temp_errstr = sprintf($this->app->lng('error_inv_integer_for'), $setting['setting_name']);
|
| | | $temp_errstr = sprintf($app->lng('error_inv_integer_for'), $setting['setting_name']);
|
| | | }
|
| | | else if($setting['SettingType'] == 'float')
|
| | | {
|
| | | if(filter_var($postinput[$setting_id], FILTER_VALIDATE_FLOAT) === false)
|
| | | $temp_errstr = sprintf($this->app->lng('error_inv_float_for'), $setting['setting_name']);
|
| | | $temp_errstr = sprintf($app->lng('error_inv_float_for'), $setting['setting_name']);
|
| | | }
|
| | | else if($setting['SettingType'] == 'boolean')
|
| | | {
|
| | |
| | | if($setting['SettingChoices'][$i]['EnumID'] == $postinput[$setting_id])
|
| | | $found = true;
|
| | | }
|
| | | if(!$found) $temp_errstr = sprintf($this->app->lng('error_inv_value_for'), $setting['SettingName']);
|
| | | if(!$found) $temp_errstr = sprintf($app->lng('error_inv_value_for'), $setting['SettingName']);
|
| | | }
|
| | |
|
| | | if($temp_errstr == '') $input[$setting_id] = $postinput[$setting_id];
|
| | | else $error[] = $temp_errstr;
|
| | | }
|
| | | else $error[] = sprintf($this->app->lng('error_no_value_for'), $setting['SettingName']);
|
| | | else $error[] = sprintf($app->lng('error_no_value_for'), $setting['SettingName']);
|
| | | }
|
| | |
|
| | | $ret['input'] = $input;
|
| | |
| | | */
|
| | | public function getPackageDetails($id)
|
| | | {
|
| | | $pkg = $this->db->queryOneRecord('SELECT * FROM aps_packages WHERE id = '.$this->db->quote($id).';');
|
| | | global $app;
|
| | | |
| | | $pkg = $app->db->queryOneRecord('SELECT * FROM aps_packages WHERE id = '.$app->db->quote($id).';');
|
| | |
|
| | | // Load in meta file if existing and register its namespaces
|
| | | $metafile = $this->interface_pkg_dir.'/'.$pkg['path'].'/APP-META.xml';
|
| | |
| | | } |
| | | |
| | | public function query($queryString) { |
| | | $this->queryId = parent::query($queryString); |
| | | parent::ping(); |
| | | $this->queryId = parent::query($queryString); |
| | | $this->updateError('DB::query('.$queryString.') -> mysqli_query'); |
| | | if($this->errorNumber) debug_print_backtrace(); |
| | | if(!$this->queryId) { |
| | |
| | | |
| | | return true; |
| | | } |
| | | |
| | | //* get the current datalog status for the specified login (or currently logged in user) |
| | | public function datalogStatus($login = '') { |
| | | global $app; |
| | | |
| | | $return = array('count' => 0, 'entries' => array()); |
| | | if($_SESSION['s']['user']['typ'] == 'admin') return $return; // these information should not be displayed to admin users |
| | | |
| | | if($login == '' && isset($_SESSION['s']['user'])) { |
| | | $login = $_SESSION['s']['user']['username']; |
| | | } |
| | | |
| | | $result = $this->queryAllRecords("SELECT COUNT( * ) AS cnt, sys_datalog.action, sys_datalog.dbtable FROM sys_datalog, server WHERE server.server_id = sys_datalog.server_id AND sys_datalog.user = '" . $this->quote($login) . "' AND sys_datalog.datalog_id > server.updated GROUP BY sys_datalog.dbtable, sys_datalog.action"); |
| | | foreach($result as $row) { |
| | | if(!$row['dbtable'] || in_array($row['dbtable'], array('aps_instances', 'aps_instances_settings', 'mail_access', 'mail_content_filter'))) continue; // ignore some entries, maybe more to come |
| | | $return['entries'][] = array('table' => $row['dbtable'], 'action' => $row['action'], 'count' => $row['cnt'], 'text' => $app->lng('datalog_status_' . $row['action'] . '_' . $row['dbtable'])); |
| | | $return['count'] += $row['cnt']; |
| | | } |
| | | unset($result); |
| | | |
| | | return $return; |
| | | } |
| | | |
| | | |
| | | public function freeResult($query) |
| | |
| | | |
| | | if($rows = $app->db->queryAllRecords('SHOW FIELDS FROM '.$table_name)){ |
| | | foreach($rows as $row) { |
| | | /* |
| | | $name = $row[0]; |
| | | $default = $row[4]; |
| | | $key = $row[3]; |
| | | $extra = $row[5]; |
| | | $isnull = $row[2]; |
| | | $type = $row[1]; |
| | | */ |
| | | |
| | | $name = $row['Field']; |
| | | $default = $row['Default']; |
| | | $key = $row['Key']; |
| | | $extra = $row['Extra']; |
| | | $isnull = $row['Null']; |
| | | $type = $row['Type']; |
| | | |
| | | |
| | | $column = array(); |
| | |
| | | } |
| | | |
| | | |
| | | //* dodanie uzytkownika email |
| | | //* Add mail domain |
| | | public function mail_user_add($session_id, $client_id, $params){ |
| | | global $app; |
| | | |
| | | if (!$this->checkPerm($session_id, 'mail_user_add')){ |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | |
| | | //* Check if mail domain exists |
| | | $email_parts = explode('@',$params['email']); |
| | | $tmp = $app->db->queryOneRecord("SELECT domain FROM mail_domain WHERE domain = '".$app->db->quote($email_parts[1])."'"); |
| | | if($tmp['domain'] != $email_parts[1]) { |
| | | $this->server->fault('mail_domain_does_not_exist','Mail domain - '.$email_parts[1].' - does not exist.'); |
| | | return false; |
| | | } |
| | | |
| | | $affected_rows = $this->insertQuery('../mail/form/mail_user.tform.php', $client_id, $params); |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* edycja uzytkownika email |
| | | //* Update mail user |
| | | public function mail_user_update($session_id, $client_id, $primary_id, $params) |
| | | { |
| | | global $app; |
| | | |
| | | if (!$this->checkPerm($session_id, 'mail_user_update')) |
| | | { |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | |
| | | //* Check if mail domain exists |
| | | $email_parts = explode('@',$params['email']); |
| | | $tmp = $app->db->queryOneRecord("SELECT domain FROM mail_domain WHERE domain = '".$app->db->quote($email_parts[1])."'"); |
| | | if($tmp['domain'] != $email_parts[1]) { |
| | | $this->server->fault('mail_domain_does_not_exist','Mail domain - '.$email_parts[1].' - does not exist.'); |
| | | return false; |
| | | } |
| | | |
| | | $affected_rows = $this->updateQuery('../mail/form/mail_user.tform.php', $client_id, $primary_id, $params); |
| | | return $affected_rows; |
| | | } |
| | | |
| | | |
| | | //*usuniecie uzytkownika emial |
| | | //* Delete mail user |
| | | public function mail_user_delete($session_id, $primary_id) |
| | | { |
| | | if (!$this->checkPerm($session_id, 'mail_user_delete')) |
| | |
| | | public function client_delete_everything($session_id, $client_id) |
| | | { |
| | | global $app, $conf; |
| | | |
| | | if(!$this->checkPerm($session_id, 'client_delete_everything')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $client_id = $app->functions->intval($client_id); |
| | | $client_group = $app->db->queryOneRecord("SELECT groupid FROM sys_group WHERE client_id = $client_id"); |
| | | |
| | | $client_id = $app->functions->intval($client_id); |
| | | |
| | | $tables = 'client,dns_rr,dns_soa,dns_slave,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_database_user,web_domain,web_traffic'; |
| | | $tables_array = explode(',',$tables); |
| | | $client_group_id = $app->functions->intval($client_group['groupid']); |
| | | |
| | | $table_list = array(); |
| | | if($client_group_id > 1) { |
| | | foreach($tables_array as $table) { |
| | | if($table != '') { |
| | | $records = $app->db->queryAllRecords("SELECT * FROM $table WHERE sys_groupid = ".$client_group_id); |
| | | $number = count($records); |
| | | if($number > 0) $table_list[] = array('table' => $table."(".$number.")"); |
| | | } |
| | | } |
| | | } |
| | | |
| | | |
| | | if($client_id > 0) { |
| | | // remove the group of the client from the resellers group |
| | | if($client_id > 0) { |
| | | //* remove the group of the client from the resellers group |
| | | $parent_client_id = $app->functions->intval($this->dataRecord['parent_client_id']); |
| | | $parent_user = $app->db->queryOneRecord("SELECT userid FROM sys_user WHERE client_id = $parent_client_id"); |
| | | $client_group = $app->db->queryOneRecord("SELECT groupid FROM sys_group WHERE client_id = $client_id"); |
| | | $app->auth->remove_group_from_user($parent_user['userid'],$client_group['groupid']); |
| | | |
| | | // delete the group of the client |
| | | //* delete the group of the client |
| | | $app->db->query("DELETE FROM sys_group WHERE client_id = $client_id"); |
| | | |
| | | // delete the sys user(s) of the client |
| | | //* delete the sys user(s) of the client |
| | | $app->db->query("DELETE FROM sys_user WHERE client_id = $client_id"); |
| | | |
| | | // Delete all records (sub-clients, mail, web, etc....) of this client. |
| | | //* Delete all records (sub-clients, mail, web, etc....) of this client. |
| | | $tables = 'client,dns_rr,dns_soa,dns_slave,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_database_user,web_domain,web_traffic'; |
| | | $tables_array = explode(',',$tables); |
| | | $client_group_id = $app->functions->intval($client_group['groupid']); |
| | | |
| | | if($client_group_id > 1) { |
| | | foreach($tables_array as $table) { |
| | | if($table != '') { |
| | | $records = $app->db->queryAllRecords("SELECT * FROM $table WHERE sys_groupid = ".$client_group_id); |
| | | // find the primary ID of the table |
| | | //* find the primary ID of the table |
| | | $table_info = $app->db->tableInfo($table); |
| | | $index_field = ''; |
| | | foreach($table_info as $tmp) { |
| | | if($tmp['option'] == 'primary') $index_field = $tmp['name']; |
| | | } |
| | | // Delete the records |
| | | |
| | | //* Delete the records |
| | | if($index_field != '') { |
| | | if(is_array($records)) { |
| | | foreach($records as $rec) { |
| | | $app->db->datalogDelete($table, $index_field, $rec[$index_field]); |
| | | //* Delete traffic records that dont have a sys_groupid column |
| | | if($table == 'web_domain') { |
| | | $app->db->query("DELETE FROM web_traffic WHERE hostname = '".$app->db->quote($rec['domain'])."'"); |
| | | } |
| | | //* Delete mail_traffic records that dont have a sys_groupid |
| | | if($table == 'mail_user') { |
| | | $app->db->query("DELETE FROM mail_traffic WHERE mailuser_id = '".$app->db->quote($rec['mailuser_id'])."'"); |
| | | } |
| | | } |
| | | } |
| | | } |
| | |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | } |
| | | |
| | | if (!$this->checkPerm($session_id, 'client_delete')) |
| | | { |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $affected_rows = $this->deleteQuery('../client/form/client.tform.php',$client_id); |
| | | |
| | | // $app->remoting_lib->ispconfig_sysuser_delete($client_id); |
| | | if (!$this->checkPerm($session_id, 'client_delete')) { |
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $affected_rows = $this->deleteQuery('../client/form/client.tform.php',$client_id); |
| | | |
| | | |
| | | return false; |
| | | return $affected_rows; |
| | | } |
| | | |
| | | // Website functions --------------------------------------------------------------------------------------- |
| | |
| | | $this->id = $insert_id; |
| | | $this->dataRecord = $params; |
| | | |
| | | $app->plugin->raiseEvent('client:' . ($reseller_id ? 'reseller' : 'client') . ':on_after_insert',$this); |
| | | $app->plugin->raiseEvent('client:' . (isset($params['limit_client']) && $params['limit_client'] > 0 ? 'reseller' : 'client') . ':on_after_insert',$this); |
| | | |
| | | /* |
| | | if($app->db->errorMessage != '') { |
| | |
| | | } |
| | | }*/ |
| | | |
| | | $user = $app->db->queryOneRecord("SELECT * FROM sys_user WHERE client_id = $client_id"); |
| | | $user = $app->db->queryOneRecord("SELECT * FROM sys_user WHERE client_id = $this->client_id"); |
| | | $this->sys_username = $user['username']; |
| | | $this->sys_userid = $user['userid']; |
| | | $this->sys_default_group = $user['default_group']; |
| | |
| | | if($action == "INSERT") { |
| | | if($field['formtype'] == 'PASSWORD') { |
| | | $sql_insert_key .= "`$key`, "; |
| | | if($field['encryption'] == 'CRYPT') { |
| | | if ((isset($field['encryption']) && $field['encryption'] == 'CLEARTEXT') || (isset($record['_ispconfig_pw_crypted']) && $record['_ispconfig_pw_crypted'] == 1)) { |
| | | $sql_insert_val .= "'".$app->db->quote($record[$key])."', "; |
| | | } elseif(isset($field['encryption']) && $field['encryption'] == 'CRYPT') { |
| | | $record[$key] = $app->auth->crypt_password(stripslashes($record[$key])); |
| | | $sql_insert_val .= "'".$app->db->quote($record[$key])."', "; |
| | | } elseif ($field['encryption'] == 'MYSQL') { |
| | | } elseif (isset($field['encryption']) && $field['encryption'] == 'MYSQL') { |
| | | $sql_insert_val .= "PASSWORD('".$app->db->quote($record[$key])."'), "; |
| | | } elseif ($field['encryption'] == 'CLEARTEXT') { |
| | | $sql_insert_val .= "'".$app->db->quote($record[$key])."', "; |
| | | } else { |
| | | $record[$key] = md5(stripslashes($record[$key])); |
| | | $sql_insert_val .= "'".$app->db->quote($record[$key])."', "; |
| | |
| | | } |
| | | } else { |
| | | if($field['formtype'] == 'PASSWORD') { |
| | | if(isset($field['encryption']) && $field['encryption'] == 'CRYPT') { |
| | | if ((isset($field['encryption']) && $field['encryption'] == 'CLEARTEXT') || (isset($record['_ispconfig_pw_crypted']) && $record['_ispconfig_pw_crypted'] == 1)) { |
| | | $sql_update .= "`$key` = '".$app->db->quote($record[$key])."', "; |
| | | } elseif(isset($field['encryption']) && $field['encryption'] == 'CRYPT') { |
| | | $record[$key] = $app->auth->crypt_password(stripslashes($record[$key])); |
| | | $sql_update .= "`$key` = '".$app->db->quote($record[$key])."', "; |
| | | } elseif (isset($field['encryption']) && $field['encryption'] == 'MYSQL') { |
| | | $sql_update .= "`$key` = PASSWORD('".$app->db->quote($record[$key])."'), "; |
| | | } elseif (isset($field['encryption']) && $field['encryption'] == 'CLEARTEXT') { |
| | | $sql_update .= "`$key` = '".$app->db->quote($record[$key])."', "; |
| | | } else { |
| | | } else { |
| | | $record[$key] = md5(stripslashes($record[$key])); |
| | | $sql_update .= "`$key` = '".$app->db->quote($record[$key])."', "; |
| | | } |
| | |
| | | } else { |
| | | $modules = $app->db->quote($params['modules']); |
| | | } |
| | | if(isset($params['limit_client']) && $params['limit_client'] > 0) { |
| | | $modules .= ',client'; |
| | | } |
| | | |
| | | if(!isset($params['startmodule'])) { |
| | | $startmodule = 'dashboard'; |
| | | } else { |
| | |
| | | // Get the group-id from the data itself |
| | | if(isset($dataRecord['client_group_id'])) { |
| | | $client_group_id = $dataRecord['client_group_id']; |
| | | } elseif (isset($dataRecord['parent_domain_id'])) { |
| | | } elseif (isset($dataRecord['parent_domain_id']) && $dataRecord['parent_domain_id'] != 0) { |
| | | $tmp = $app->db->queryOneRecord("SELECT sys_groupid FROM web_domain WHERE domain_id = " . $dataRecord['parent_domain_id']); |
| | | $client_group_id = $tmp['sys_groupid']; |
| | | } elseif(isset($dataRecord['sys_groupid'])) { |
| | |
| | | { |
| | | function start_date($field_name, $field_value, $validator) |
| | | { |
| | | # save field value for later use in end_date() |
| | | $this->start_date = $field_value; |
| | | |
| | | if ($this->_datetime_selected($field_value)) { |
| | | return $this->is_future($field_name, $field_value, $validator); |
| | | # We just require a start date be set |
| | | return; |
| | | } |
| | | if($_POST['autoresponder'] == 'y') { |
| | | return "No start date selected"; |
| | | } |
| | | } |
| | | |
| | |
| | | { |
| | | global $app; |
| | | |
| | | $start_date = $app->tform_actions->dataRecord['autoresponder_start_date']; |
| | | $start_date = $this->start_date; |
| | | //$start_date = $app->tform_actions->dataRecord['autoresponder_start_date']; |
| | | |
| | | $_msg = $this->not_empty('autoresponder_start_date', $start_date, $validator); |
| | | if (!$_msg) // Start date set |
| | |
| | | $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['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['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['btn_save_txt'] = 'Uložit'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | $wb['top_menu_system'] = 'Systém'; |
| | | $wb['top_menu_client'] = 'Klient'; |
| | | $wb['top_menu_email'] = 'Email'; |
| | | $wb['top_menu_client'] = 'Klienti'; |
| | | $wb['top_menu_email'] = 'E-mail'; |
| | | $wb['top_menu_monitor'] = 'Monitor'; |
| | | $wb['top_menu_sites'] = 'Stránky'; |
| | | $wb['top_menu_dns'] = 'DNS'; |
| | |
| | | $wb['top_menu_billing'] = 'Fakturace'; |
| | | $wb['top_menu_domain'] = 'Doména'; |
| | | $wb['top_menu_dashboard'] = 'Nástěnka'; |
| | | $wb['latest_news_txt'] = 'Nejnovější novinky'; |
| | | $wb['latest_news_txt'] = 'Poslední novinky'; |
| | | $wb['top_menu_vm'] = 'VServer'; |
| | | $wb['daynamesmin_su'] = 'Su'; |
| | | $wb['daynamesmin_mo'] = 'Mo'; |
| | | $wb['daynamesmin_tu'] = 'Tu'; |
| | | $wb['daynamesmin_we'] = 'We'; |
| | | $wb['daynamesmin_th'] = 'Th'; |
| | | $wb['daynamesmin_fr'] = 'Fr'; |
| | | $wb['daynamesmin_sa'] = 'Sa'; |
| | | $wb['daynames_sunday'] = 'Sunday'; |
| | | $wb['daynames_monday'] = 'Monday'; |
| | | $wb['daynames_tuesday'] = 'Tuesday'; |
| | | $wb['daynames_wednesday'] = 'Wednesday'; |
| | | $wb['daynames_thursday'] = 'Thursday'; |
| | | $wb['daynames_friday'] = 'Friday'; |
| | | $wb['daynames_saturday'] = 'Saturday'; |
| | | $wb['monthnamesshort_jan'] = 'Jan'; |
| | | $wb['monthnamesshort_feb'] = 'Feb'; |
| | | $wb['monthnamesshort_mar'] = 'Mar'; |
| | | $wb['monthnamesshort_apr'] = 'Apr'; |
| | | $wb['monthnamesshort_may'] = 'May'; |
| | | $wb['daynamesmin_su'] = 'Ne'; |
| | | $wb['daynamesmin_mo'] = 'Po'; |
| | | $wb['daynamesmin_tu'] = 'Út'; |
| | | $wb['daynamesmin_we'] = 'St'; |
| | | $wb['daynamesmin_th'] = 'Čt'; |
| | | $wb['daynamesmin_fr'] = 'Pá'; |
| | | $wb['daynamesmin_sa'] = 'So'; |
| | | $wb['daynames_sunday'] = 'Neděle'; |
| | | $wb['daynames_monday'] = 'Pondělí'; |
| | | $wb['daynames_tuesday'] = 'Úterý'; |
| | | $wb['daynames_wednesday'] = 'Středa'; |
| | | $wb['daynames_thursday'] = 'Čtvrtek'; |
| | | $wb['daynames_friday'] = 'Pátek'; |
| | | $wb['daynames_saturday'] = 'Sobota'; |
| | | $wb['monthnamesshort_jan'] = 'Led'; |
| | | $wb['monthnamesshort_feb'] = 'Úno'; |
| | | $wb['monthnamesshort_mar'] = 'Bře'; |
| | | $wb['monthnamesshort_apr'] = 'Dub'; |
| | | $wb['monthnamesshort_may'] = 'Kvě'; |
| | | $wb['monthnamesshort_jun'] = 'Jun'; |
| | | $wb['monthnamesshort_jul'] = 'Jul'; |
| | | $wb['monthnamesshort_aug'] = 'Aug'; |
| | | $wb['monthnamesshort_sep'] = 'Sep'; |
| | | $wb['monthnamesshort_oct'] = 'Oct'; |
| | | $wb['monthnamesshort_nov'] = 'Nov'; |
| | | $wb['monthnamesshort_dec'] = 'Dec'; |
| | | $wb['datepicker_nextText'] = 'Next'; |
| | | $wb['datepicker_prevText'] = 'Prev'; |
| | | $wb['logout_txt'] = 'Logout'; |
| | | $wb['monthnamesshort_aug'] = 'Srp'; |
| | | $wb['monthnamesshort_sep'] = 'Zář'; |
| | | $wb['monthnamesshort_oct'] = 'Říj'; |
| | | $wb['monthnamesshort_nov'] = 'Lis'; |
| | | $wb['monthnamesshort_dec'] = 'Pro'; |
| | | $wb['datepicker_nextText'] = 'Další'; |
| | | $wb['datepicker_prevText'] = 'Předchozí'; |
| | | $wb['logout_txt'] = 'Odhlášení'; |
| | | $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['submit_confirmation'] = 'Opravdu chcete provést tuto akci ?'; |
| | | $wb['top_menu_mailuser'] = 'E-malový uživatel'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'výsledky'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'Žádné výsledky.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 výsledků'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Vyhledávání'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Návrhy'; |
| | | $wb['global_tabchange_warning_txt'] = 'Změněné údaje v této záložce se změní, pokud stisknete tlačítko OK. Pokud zmáčknete tlačítko zrušit, změny nebudou provedeny.'; |
| | | $wb['global_tabchange_discard_txt'] = 'Máte neuložené změny v této záložce. Změny budou zahozeny, pokud budete pokračovat.'; |
| | | $wb['datalog_changes_txt'] = 'The following changes are not yet populated to all servers:'; |
| | | $wb['datalog_changes_end_txt'] = 'Storing updates can take up to one minute. Please be patient.'; |
| | | $wb['datalog_status_i_web_database'] = 'Create new database'; |
| | | $wb['datalog_status_u_web_database'] = 'Update database'; |
| | | $wb['datalog_status_d_web_database'] = 'Delete database'; |
| | | $wb['datalog_status_i_web_database_user'] = 'Create database user for database'; |
| | | $wb['datalog_status_u_web_database_user'] = 'Update database user'; |
| | | $wb['datalog_status_d_web_database_user'] = 'Delete database user'; |
| | | $wb['datalog_status_i_web_domain'] = 'Create new website'; |
| | | $wb['datalog_status_u_web_domain'] = 'Update website settings'; |
| | | $wb['datalog_status_d_web_domain'] = 'Delete website'; |
| | | $wb['datalog_status_i_ftp_user'] = 'Create FTP user'; |
| | | $wb['datalog_status_u_ftp_user'] = 'Update FTP user'; |
| | | $wb['datalog_status_d_ftp_user'] = 'Delete FTP user'; |
| | | $wb['datalog_status_i_mail_domain'] = 'Create email domain'; |
| | | $wb['datalog_status_u_mail_domain'] = 'Update email domain'; |
| | | $wb['datalog_status_d_mail_domain'] = 'Delete email domain'; |
| | | $wb['datalog_status_i_mail_user'] = 'Create email user'; |
| | | $wb['datalog_status_u_mail_user'] = 'Update email user'; |
| | | $wb['datalog_status_d_mail_user'] = 'Delete email user'; |
| | | $wb['datalog_status_i_mail_forwarding'] = 'Create email address'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'Update email address'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'Delete email address'; |
| | | $wb['datalog_status_i_dns_rr'] = 'Create DNS record'; |
| | | $wb['datalog_status_u_dns_rr'] = 'Update DNS record'; |
| | | $wb['datalog_status_d_dns_rr'] = 'Delete DNS record'; |
| | | $wb['datalog_status_i_dns_soa'] = 'Create DNS zone'; |
| | | $wb['datalog_status_u_dns_soa'] = 'Update DNS zone'; |
| | | $wb['datalog_status_d_dns_soa'] = 'Delete DNS zone'; |
| | | $wb['datalog_status_i_cron'] = 'Create cron job'; |
| | | $wb['datalog_status_u_cron'] = 'Update cron job'; |
| | | $wb['datalog_status_d_cron'] = 'Delete cron job'; |
| | | $wb['datalog_status_i_mail_get'] = 'Create mail fetcher account'; |
| | | $wb['datalog_status_u_mail_get'] = 'Update mail fetcher account'; |
| | | $wb['datalog_status_d_mail_get'] = 'Delete mail fetcher account'; |
| | | $wb['datalog_status_i_mail_mailinglist'] = 'Create mailing list'; |
| | | $wb['datalog_status_u_mail_mailinglist'] = 'Update mailing list'; |
| | | $wb['datalog_status_d_mail_mailinglist'] = 'Delete mailing list'; |
| | | $wb['datalog_status_i_shell_user'] = 'Create shell user'; |
| | | $wb['datalog_status_u_shell_user'] = 'Update shell user'; |
| | | $wb['datalog_status_d_shell_user'] = 'Delete shell user'; |
| | | $wb['datalog_status_i_web_folder'] = 'Create folder protection'; |
| | | $wb['datalog_status_u_web_folder'] = 'Update folder protection'; |
| | | $wb['datalog_status_d_web_folder'] = 'Delete folder protection'; |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['conf_format_dateshort'] = "d.m.Y"; |
| | | $wb['conf_format_dateshort_human_readable'] = "tt.mm.jjjj"; |
| | | $wb['conf_format_datelong'] = "l, d. F Y"; |
| | | $wb['conf_format_timeshort'] = "H:i"; |
| | | $wb['conf_format_timelong'] = "H:i:s"; |
| | | $wb['conf_format_datetime'] = "d.m.Y H:i"; |
| | | $wb['number_format_decimals'] = "4"; |
| | | $wb['number_format_decimals_client'] = "2"; |
| | | $wb['number_format_dec_point'] = ","; |
| | | $wb['number_format_thousands_sep'] = ""; |
| | | $wb['error_301'] = "Modul für Benutzer nicht erlaubt."; |
| | | $wb['error_302'] = "Modul ungültig."; |
| | | $wb['error_1001'] = "Der Benutzername und das Passwort dürfen nicht leer sein!"; |
| | | $wb['error_1002'] = "Der Benutzername und/oder das Passwort sind nicht korrekt!"; |
| | | $wb['error_1003'] = "Der Benutzername ist deaktiviert!"; |
| | | $wb['delete_confirmation'] = "Wollen Sie diesen Datensatz wirklich löschen?"; |
| | | $wb['error_no_view_permission'] = "Sie haben nicht die Berechtigung, diesen Datensatz zu lesen, oder dieser Datensatz existiert nicht!"; |
| | | $wb['error_no_delete_permission'] = "Sie haben nicht die Berechtigung, diesen Datensatz zu löschen!"; |
| | | $wb['page_txt'] = "Seite"; |
| | | $wb['page_of_txt'] = "von"; |
| | | $wb['page_next_txt'] = "Weiter"; |
| | | $wb['page_back_txt'] = "Zurück"; |
| | | $wb['delete_txt'] = "Löschen"; |
| | | $wb['filter_txt'] = "Filter"; |
| | | $wb['add_new_record_txt'] = "Neuen Datensatz hinzufügen"; |
| | | $wb['btn_save_txt'] = "Speichern"; |
| | | $wb['btn_cancel_txt'] = "Abbrechen"; |
| | | $wb['toolsarea_head_txt'] = "Einstellungen"; |
| | | $wb['page_and_txt'] = "und"; |
| | | $wb['top_menu_system'] = "System"; |
| | | $wb['top_menu_client'] = "Kunden"; |
| | | $wb['top_menu_email'] = "E-Mail"; |
| | | $wb['top_menu_monitor'] = "Überwachung"; |
| | | $wb['top_menu_sites'] = "Webseiten"; |
| | | $wb['top_menu_dns'] = "DNS"; |
| | | $wb['top_menu_tools'] = "Einstellungen"; |
| | | $wb['top_menu_help'] = "Support"; |
| | | $wb['top_menu_billing'] = "Fakturierung"; |
| | | $wb['top_menu_mailuser'] = "E-Mail Benutzer"; |
| | | $wb['top_menu_domain'] = "Domains"; |
| | | $wb['top_menu_dashboard'] = "Home"; |
| | | $wb['latest_news_txt'] = "Neuigkeiten"; |
| | | $wb['top_menu_vm'] = "VServer"; |
| | | $wb['daynamesmin_su'] = "So"; |
| | | $wb['daynamesmin_mo'] = "Mo"; |
| | | $wb['daynamesmin_tu'] = "Di"; |
| | | $wb['daynamesmin_we'] = "Mi"; |
| | | $wb['daynamesmin_th'] = "Do"; |
| | | $wb['daynamesmin_fr'] = "Fr"; |
| | | $wb['daynamesmin_sa'] = "Sa"; |
| | | $wb['daynames_sunday'] = "Sonntag"; |
| | | $wb['daynames_monday'] = "Montag"; |
| | | $wb['daynames_tuesday'] = "Dienstag"; |
| | | $wb['daynames_wednesday'] = "Mittwoch"; |
| | | $wb['daynames_thursday'] = "Donnerstag"; |
| | | $wb['daynames_friday'] = "Freitag"; |
| | | $wb['daynames_saturday'] = "Samstag"; |
| | | $wb['monthnamesshort_jan'] = "Jan"; |
| | | $wb['monthnamesshort_feb'] = "Feb"; |
| | | $wb['monthnamesshort_mar'] = "Mär"; |
| | | $wb['monthnamesshort_apr'] = "Apr"; |
| | | $wb['monthnamesshort_may'] = "Mai"; |
| | | $wb['monthnamesshort_jun'] = "Jun"; |
| | | $wb['monthnamesshort_jul'] = "Jul"; |
| | | $wb['monthnamesshort_aug'] = "Aug"; |
| | | $wb['monthnamesshort_sep'] = "Sep"; |
| | | $wb['monthnamesshort_oct'] = "Okt"; |
| | | $wb['monthnamesshort_nov'] = "Nov"; |
| | | $wb['monthnamesshort_dec'] = "Dez"; |
| | | $wb['datepicker_nextText'] = "Vor"; |
| | | $wb['datepicker_prevText'] = "Zurück"; |
| | | $wb['logout_txt'] = "Abmelden"; |
| | | $wb['submit_confirmation'] = "Wollen Sie diese Aktion wirlich ausführen?"; |
| | | $wb['globalsearch_resultslimit_of_txt'] = "von"; |
| | | $wb['globalsearch_resultslimit_results_txt'] = "Treffern"; |
| | | $wb['globalsearch_noresults_text_txt'] = "Keine Treffer."; |
| | | $wb['globalsearch_noresults_limit_txt'] = "0 Treffer"; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = "Suche"; |
| | | $wb['globalsearch_suggestions_text_txt'] = "Vorschläge"; |
| | | $wb['global_tabchange_warning_txt'] = "Die Eingaben in diesem Tab werden gespeichert, wenn Sie OK klicken, bei Abbrechen werden die Änderungen verworfen."; |
| | | $wb['global_tabchange_discard_txt'] = "Achtung, Sie haben ungespeicherte Änderungen in diesem Tab. Wenn Sie fortfahren werden die Änderungen verworfen."; |
| | | $wb['conf_format_dateshort'] = 'd.m.Y'; |
| | | $wb['conf_format_dateshort_human_readable'] = 'tt.mm.jjjj'; |
| | | $wb['conf_format_datelong'] = 'l, d. F Y'; |
| | | $wb['conf_format_timeshort'] = 'H:i'; |
| | | $wb['conf_format_timelong'] = 'H:i:s'; |
| | | $wb['conf_format_datetime'] = 'd.m.Y H:i'; |
| | | $wb['number_format_decimals'] = '4'; |
| | | $wb['number_format_decimals_client'] = '2'; |
| | | $wb['number_format_dec_point'] = ','; |
| | | $wb['number_format_thousands_sep'] = ''; |
| | | $wb['error_301'] = 'Modul für Benutzer nicht erlaubt.'; |
| | | $wb['error_302'] = 'Modul ungültig.'; |
| | | $wb['error_1001'] = 'Der Benutzername und das Passwort dürfen nicht leer sein!'; |
| | | $wb['error_1002'] = 'Der Benutzername und/oder das Passwort sind nicht korrekt!'; |
| | | $wb['error_1003'] = 'Der Benutzername ist deaktiviert!'; |
| | | $wb['delete_confirmation'] = 'Wollen Sie diesen Datensatz wirklich löschen?'; |
| | | $wb['error_no_view_permission'] = 'Sie haben nicht die Berechtigung, diesen Datensatz zu lesen, oder dieser Datensatz existiert nicht!'; |
| | | $wb['error_no_delete_permission'] = 'Sie haben nicht die Berechtigung, diesen Datensatz zu löschen!'; |
| | | $wb['page_txt'] = 'Seite'; |
| | | $wb['page_of_txt'] = 'von'; |
| | | $wb['page_next_txt'] = 'Weiter'; |
| | | $wb['page_back_txt'] = 'Zurück'; |
| | | $wb['delete_txt'] = 'Löschen'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['add_new_record_txt'] = 'Neuen Datensatz hinzufügen'; |
| | | $wb['btn_save_txt'] = 'Speichern'; |
| | | $wb['btn_cancel_txt'] = 'Abbrechen'; |
| | | $wb['toolsarea_head_txt'] = 'Einstellungen'; |
| | | $wb['page_and_txt'] = 'und'; |
| | | $wb['top_menu_system'] = 'System'; |
| | | $wb['top_menu_client'] = 'Kunden'; |
| | | $wb['top_menu_email'] = 'E-Mail'; |
| | | $wb['top_menu_monitor'] = 'Überwachung'; |
| | | $wb['top_menu_sites'] = 'Webseiten'; |
| | | $wb['top_menu_dns'] = 'DNS'; |
| | | $wb['top_menu_tools'] = 'Einstellungen'; |
| | | $wb['top_menu_help'] = 'Support'; |
| | | $wb['top_menu_billing'] = 'Fakturierung'; |
| | | $wb['top_menu_mailuser'] = 'E-Mail Benutzer'; |
| | | $wb['top_menu_domain'] = 'Domains'; |
| | | $wb['top_menu_dashboard'] = 'Home'; |
| | | $wb['latest_news_txt'] = 'Neuigkeiten'; |
| | | $wb['top_menu_vm'] = 'VServer'; |
| | | $wb['daynamesmin_su'] = 'So'; |
| | | $wb['daynamesmin_mo'] = 'Mo'; |
| | | $wb['daynamesmin_tu'] = 'Di'; |
| | | $wb['daynamesmin_we'] = 'Mi'; |
| | | $wb['daynamesmin_th'] = 'Do'; |
| | | $wb['daynamesmin_fr'] = 'Fr'; |
| | | $wb['daynamesmin_sa'] = 'Sa'; |
| | | $wb['daynames_sunday'] = 'Sonntag'; |
| | | $wb['daynames_monday'] = 'Montag'; |
| | | $wb['daynames_tuesday'] = 'Dienstag'; |
| | | $wb['daynames_wednesday'] = 'Mittwoch'; |
| | | $wb['daynames_thursday'] = 'Donnerstag'; |
| | | $wb['daynames_friday'] = 'Freitag'; |
| | | $wb['daynames_saturday'] = 'Samstag'; |
| | | $wb['monthnamesshort_jan'] = 'Jan'; |
| | | $wb['monthnamesshort_feb'] = 'Feb'; |
| | | $wb['monthnamesshort_mar'] = 'Mär'; |
| | | $wb['monthnamesshort_apr'] = 'Apr'; |
| | | $wb['monthnamesshort_may'] = 'Mai'; |
| | | $wb['monthnamesshort_jun'] = 'Jun'; |
| | | $wb['monthnamesshort_jul'] = 'Jul'; |
| | | $wb['monthnamesshort_aug'] = 'Aug'; |
| | | $wb['monthnamesshort_sep'] = 'Sep'; |
| | | $wb['monthnamesshort_oct'] = 'Okt'; |
| | | $wb['monthnamesshort_nov'] = 'Nov'; |
| | | $wb['monthnamesshort_dec'] = 'Dez'; |
| | | $wb['datepicker_nextText'] = 'Vor'; |
| | | $wb['datepicker_prevText'] = 'Zurück'; |
| | | $wb['logout_txt'] = 'Abmelden'; |
| | | $wb['submit_confirmation'] = 'Wollen Sie diese Aktion wirlich ausführen?'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'von'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'Treffern'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'Keine Treffer.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 Treffer'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Suche'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Vorschläge'; |
| | | $wb['global_tabchange_warning_txt'] = 'Die Eingaben in diesem Tab werden gespeichert, wenn Sie OK klicken, bei Abbrechen werden die Änderungen verworfen.'; |
| | | $wb['global_tabchange_discard_txt'] = 'Achtung, Sie haben ungespeicherte Änderungen in diesem Tab. Wenn Sie fortfahren werden die Änderungen verworfen.'; |
| | | $wb['datalog_changes_txt'] = 'Folgende Änderungen wurden noch nicht auf alle Server übernommen:'; |
| | | $wb['datalog_changes_end_txt'] = 'Die Übernahme der Änderungen kann bis zu 1 Minute in Anspruch nehmen.'; |
| | | $wb['datalog_status_i_web_database'] = 'Neue Datenbank anlegen'; |
| | | $wb['datalog_status_u_web_database'] = 'Datenbank ändern'; |
| | | $wb['datalog_status_d_web_database'] = 'Datenbank löschen'; |
| | | $wb['datalog_status_i_web_database_user'] = 'Datenbank-Benutzer für Datenbank anlegen'; |
| | | $wb['datalog_status_u_web_database_user'] = 'Datenbank-Benutzer ändern'; |
| | | $wb['datalog_status_d_web_database_user'] = 'Datenbank-Benutzer löschen'; |
| | | $wb['datalog_status_i_web_domain'] = 'Neue Webseite anlegen'; |
| | | $wb['datalog_status_u_web_domain'] = 'Webseiten-Einstellungen ändern'; |
| | | $wb['datalog_status_d_web_domain'] = 'Webseite löschen'; |
| | | $wb['datalog_status_i_ftp_user'] = 'FTP-Benutzer anlegen'; |
| | | $wb['datalog_status_u_ftp_user'] = 'FTP-Benutzer ändern'; |
| | | $wb['datalog_status_d_ftp_user'] = 'FTP-Benutzer löschen'; |
| | | $wb['datalog_status_i_mail_domain'] = 'Neue E-Mail Domain anlegen'; |
| | | $wb['datalog_status_u_mail_domain'] = 'E-Mail Domain ändern'; |
| | | $wb['datalog_status_d_mail_domain'] = 'E-Mail Domain löschen'; |
| | | $wb['datalog_status_i_mail_user'] = 'Neues E-Mail Konto anlegen'; |
| | | $wb['datalog_status_u_mail_user'] = 'E-Mail Konto ändern'; |
| | | $wb['datalog_status_d_mail_user'] = 'E-Mail Konto löschen'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Spamfilter-Einstellungen anlegen'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Spamfilter-Einstellungen ändern'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Spamfilter-Einstellungen löschen'; |
| | | $wb['datalog_status_i_mail_forwarding'] = 'Neue E-Mail Adresse anlegen'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'E-Mail Adresse ändern'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'E-Mail Adresse löschen'; |
| | | $wb['datalog_status_i_dns_rr'] = 'DNS Record anlegen'; |
| | | $wb['datalog_status_u_dns_rr'] = 'DNS Record ändern'; |
| | | $wb['datalog_status_d_dns_rr'] = 'DNS Record löschen'; |
| | | $wb['datalog_status_i_dns_soa'] = 'DNS Zone anlegen'; |
| | | $wb['datalog_status_u_dns_soa'] = 'DNS Zone ändern'; |
| | | $wb['datalog_status_d_dns_soa'] = 'DNS Zone löschen'; |
| | | $wb['datalog_status_i_cron'] = 'Cronjob anlegen'; |
| | | $wb['datalog_status_u_cron'] = 'Cronjob ändern'; |
| | | $wb['datalog_status_d_cron'] = 'Cronjob löschen'; |
| | | $wb['datalog_status_i_mail_get'] = 'Mailabruf anlegen'; |
| | | $wb['datalog_status_u_mail_get'] = 'Mailabruf ändern'; |
| | | $wb['datalog_status_d_mail_get'] = 'Mailabruf löschen'; |
| | | $wb['datalog_status_i_mail_mailinglist'] = 'Mailingliste anlegen'; |
| | | $wb['datalog_status_u_mail_mailinglist'] = 'Mailingliste ändern'; |
| | | $wb['datalog_status_d_mail_mailinglist'] = 'Mailingliste löschen'; |
| | | $wb['datalog_status_i_shell_user'] = 'Shell User anlegen'; |
| | | $wb['datalog_status_u_shell_user'] = 'Shell User ändern'; |
| | | $wb['datalog_status_d_shell_user'] = 'Shell User löschen'; |
| | | $wb['datalog_status_i_web_folder'] = 'Verzeichnisschutz anlegen'; |
| | | $wb['datalog_status_u_web_folder'] = 'Verzeichnisschutz ändern'; |
| | | $wb['datalog_status_d_web_folder'] = 'Verzeichnisschutz löschen'; |
| | | $wb['datalog_status_i_web_folder_user'] = 'Verzeichnisschutz Benutzer anlegen'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Verzeichnisschutz Benutzer ändern'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Verzeichnisschutz Benutzer löschen'; |
| | | ?> |
| | | |
| | |
| | | $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['globalsearch_suggestions_text_txt'] = "Suggestions"; |
| | | $wb['global_tabchange_warning_txt'] = 'Changed data in this tab will be changed if you press OK. On cancel they will be discarded.'; |
| | | $wb['global_tabchange_discard_txt'] = 'You have unsaved changes in this tab. Changes will be discarded if you continue.'; |
| | | |
| | | $wb['datalog_changes_txt'] = 'The following changes are not yet populated to all servers:'; |
| | | $wb['datalog_changes_end_txt'] = 'Storing updates can take up to one minute. Please be patient.'; |
| | | $wb['datalog_status_i_web_database'] = 'Create new database'; |
| | | $wb['datalog_status_u_web_database'] = 'Update database'; |
| | | $wb['datalog_status_d_web_database'] = 'Delete database'; |
| | | $wb['datalog_status_i_web_database_user'] = 'Create database user for database'; |
| | | $wb['datalog_status_u_web_database_user'] = 'Update database user'; |
| | | $wb['datalog_status_d_web_database_user'] = 'Delete database user'; |
| | | $wb['datalog_status_i_web_domain'] = 'Create new website'; |
| | | $wb['datalog_status_u_web_domain'] = 'Update website settings'; |
| | | $wb['datalog_status_d_web_domain'] = 'Delete website'; |
| | | $wb['datalog_status_i_ftp_user'] = 'Create FTP user'; |
| | | $wb['datalog_status_u_ftp_user'] = 'Update FTP user'; |
| | | $wb['datalog_status_d_ftp_user'] = 'Delete FTP user'; |
| | | $wb['datalog_status_i_mail_domain'] = 'Create email domain'; |
| | | $wb['datalog_status_u_mail_domain'] = 'Update email domain'; |
| | | $wb['datalog_status_d_mail_domain'] = 'Delete email domain'; |
| | | $wb['datalog_status_i_mail_user'] = 'Create email user'; |
| | | $wb['datalog_status_u_mail_user'] = 'Update email user'; |
| | | $wb['datalog_status_d_mail_user'] = 'Delete email user'; |
| | | $wb['datalog_status_i_spamfilter_users'] = 'Create spam filter settings'; |
| | | $wb['datalog_status_u_spamfilter_users'] = 'Update spam filter settings'; |
| | | $wb['datalog_status_d_spamfilter_users'] = 'Delete spam filter settings'; |
| | | $wb['datalog_status_i_mail_forwarding'] = 'Create email address'; |
| | | $wb['datalog_status_u_mail_forwarding'] = 'Update email address'; |
| | | $wb['datalog_status_d_mail_forwarding'] = 'Delete email address'; |
| | | $wb['datalog_status_i_dns_rr'] = 'Create DNS record'; |
| | | $wb['datalog_status_u_dns_rr'] = 'Update DNS record'; |
| | | $wb['datalog_status_d_dns_rr'] = 'Delete DNS record'; |
| | | $wb['datalog_status_i_dns_soa'] = 'Create DNS zone'; |
| | | $wb['datalog_status_u_dns_soa'] = 'Update DNS zone'; |
| | | $wb['datalog_status_d_dns_soa'] = 'Delete DNS zone'; |
| | | $wb['datalog_status_i_cron'] = 'Create cron job'; |
| | | $wb['datalog_status_u_cron'] = 'Update cron job'; |
| | | $wb['datalog_status_d_cron'] = 'Delete cron job'; |
| | | $wb['datalog_status_i_mail_get'] = 'Create mail fetcher account'; |
| | | $wb['datalog_status_u_mail_get'] = 'Update mail fetcher account'; |
| | | $wb['datalog_status_d_mail_get'] = 'Delete mail fetcher account'; |
| | | $wb['datalog_status_i_mail_mailinglist'] = 'Create mailing list'; |
| | | $wb['datalog_status_u_mail_mailinglist'] = 'Update mailing list'; |
| | | $wb['datalog_status_d_mail_mailinglist'] = 'Delete mailing list'; |
| | | $wb['datalog_status_i_shell_user'] = 'Create shell user'; |
| | | $wb['datalog_status_u_shell_user'] = 'Update shell user'; |
| | | $wb['datalog_status_d_shell_user'] = 'Delete shell user'; |
| | | $wb['datalog_status_i_web_folder'] = 'Create folder protection'; |
| | | $wb['datalog_status_u_web_folder'] = 'Update folder protection'; |
| | | $wb['datalog_status_d_web_folder'] = 'Delete folder protection'; |
| | | $wb['datalog_status_i_web_folder_user'] = 'Create folder protection user'; |
| | | $wb['datalog_status_u_web_folder_user'] = 'Update folder protection user'; |
| | | $wb['datalog_status_d_web_folder_user'] = 'Delete folder protection user'; |
| | | ?> |
| | |
| | | $wb['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['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['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['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['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['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['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['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['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['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['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['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['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['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['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'; |
| | | ?> |
| | |
| | | $content .= 'if header :regex ["'.strtolower($page_form->dataRecord["source"]).'"] ["'; |
| | | |
| | | $searchterm = preg_quote($page_form->dataRecord["searchterm"]); |
| | | $searchterm = str_replace('\\[','\\\\[',$searchterm); |
| | | $searchterm = str_replace('\\]','\\\\]',$searchterm); |
| | | |
| | | if($page_form->dataRecord["op"] == 'contains') { |
| | | $content .= ".*".$searchterm; |
| | |
| | | |
| | | // Get configuration for the web system |
| | | $app->uses("getconf"); |
| | | $web_rec = $app->tform->getDataRecord($page_form->id); |
| | | $web_config = $app->getconf->get_server_config($app->functions->intval($web_rec['server_id']),'web'); |
| | | $web_config = $app->getconf->get_server_config($app->functions->intval($page_form->dataRecord['server_id']),'web'); |
| | | |
| | | $parent_domain = $app->db->queryOneRecord("SELECT * FROM `web_domain` WHERE `domain_id` = '" . $app->functions->intval($web_rec['parent_domain_id']) . "'"); |
| | | $parent_domain = $app->db->queryOneRecord("SELECT * FROM `web_domain` WHERE `domain_id` = '" . $app->functions->intval($page_form->dataRecord['parent_domain_id']) . "'"); |
| | | |
| | | // Set the values for document_root, system_user and system_group |
| | | $system_user = $app->db->quote($parent_domain['system_user']); |
| | | $system_group = $app->db->quote($parent_domain['system_group']); |
| | | $document_root = $app->db->quote($parent_domain['document_root']); |
| | | $php_open_basedir = str_replace("[website_path]/web",$document_root.'/'.$web_rec['web_folder'],$web_config["php_open_basedir"]); |
| | | $php_open_basedir = str_replace("[website_domain]/web",$web_rec['domain'].'/'.$web_rec['web_folder'],$php_open_basedir); |
| | | $php_open_basedir = str_replace("[website_path]/web",$document_root.'/'.$page_form->dataRecord['web_folder'],$web_config["php_open_basedir"]); |
| | | $php_open_basedir = str_replace("[website_domain]/web",$page_form->dataRecord['domain'].'/'.$page_form->dataRecord['web_folder'],$php_open_basedir); |
| | | $php_open_basedir = str_replace("[website_path]",$document_root,$php_open_basedir); |
| | | $php_open_basedir = $app->db->quote(str_replace("[website_domain]",$web_rec['domain'],$php_open_basedir)); |
| | | $php_open_basedir = $app->db->quote(str_replace("[website_domain]",$page_form->dataRecord['domain'],$php_open_basedir)); |
| | | $htaccess_allow_override = $app->db->quote($parent_domain['allow_override']); |
| | | |
| | | $sql = "UPDATE web_domain SET sys_groupid = ".$app->functions->intval($parent_domain['sys_groupid']).",system_user = '$system_user', system_group = '$system_group', document_root = '$document_root', allow_override = '$htaccess_allow_override', php_open_basedir = '$php_open_basedir' WHERE domain_id = ".$page_form->id; |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'SELECT', |
| | | 'default' => '', |
| | | 'value' => array('apache' => 'Apache','nginx' => 'nginx','php' => 'PHP'), |
| | | 'value' => array('apache' => 'Apache','nginx' => 'nginx','php' => 'PHP','proxy' => 'Proxy'), |
| | | 'searchable' => 2 |
| | | ), |
| | | 'snippet' => array ( |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'validators' => array(0 => array('type' => 'NOTEMPTY', |
| | | 'errmsg' => 'fastcgi_max_requests_error_empty'), |
| | | 'validators' => array( 0 => array( 'type' => 'ISINT', |
| | | 'errmsg' => 'fastcgi_max_requests_error_empty'), |
| | | 1 => array( 'type' => 'RANGE', |
| | | 'range' => '0:', |
| | | 'errmsg' => 'fastcgi_max_requests_error_empty'), |
| | | ), |
| | | 'value' => '', |
| | | 'width' => '40', |
| | |
| | | $wb['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sections"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted applications"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applications"; |
| | | $wb['website_path_txt'] = "Website path"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['website_basedir_txt'] = "Website basedir"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost config enabled dir"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter path"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter script"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini Path"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. Requests"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Module"; |
| | | $wb['maildir_path_txt'] = "Maildir Path"; |
| | | $wb['homedir_path_txt'] = "Homedir Path"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Mailuser Name"; |
| | | $wb['mailuser_group_txt'] = "Mailuser Group"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost User"; |
| | | $wb['relayhost_password_txt'] = "Relayhost Password"; |
| | | $wb['mailbox_size_limit_txt'] = "Mailbox Size Limit"; |
| | | $wb['message_size_limit_txt'] = "Message Size Limit"; |
| | | $wb['ip_address_txt'] = "IP Address"; |
| | | $wb['netmask_txt'] = "Netmask"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameservers"; |
| | | $wb['auto_network_configuration_txt'] = "Network Configuration"; |
| | | $wb['ip_address_error_wrong'] = "Invalid IP address format."; |
| | | $wb['netmask_error_wrong'] = "Invalid Netmask format."; |
| | | $wb['gateway_error_wrong'] = "Invalid Gateway format."; |
| | | $wb['hostname_error_empty'] = "Hostname is empty."; |
| | | $wb['nameservers_error_empty'] = "Nameserver is empty."; |
| | | $wb['config_dir_txt'] = "Config directory"; |
| | | $wb['init_script_txt'] = "Cron init script name"; |
| | | $wb['crontab_dir_txt'] = "Path for individual crontabs"; |
| | | $wb['wget_txt'] = "Path to wget program"; |
| | | $wb['web_user_txt'] = "Apache user"; |
| | | $wb['web_group_txt'] = "Apache group"; |
| | | $wb['security_level_txt'] = "Security level"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "BIND User"; |
| | | $wb['bind_group_txt'] = "BIND Group"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sections'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted applications'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applications'; |
| | | $wb['website_path_txt'] = 'Website path'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'Website basedir'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled dir'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter path'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter script'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini Path'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. Requests'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Module'; |
| | | $wb['maildir_path_txt'] = 'Maildir Path'; |
| | | $wb['homedir_path_txt'] = 'Homedir Path'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailuser Name'; |
| | | $wb['mailuser_group_txt'] = 'Mailuser Group'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost User'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Password'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mailbox Size Limit'; |
| | | $wb['message_size_limit_txt'] = 'Message Size Limit'; |
| | | $wb['ip_address_txt'] = 'IP Address'; |
| | | $wb['netmask_txt'] = 'Netmask'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameservers'; |
| | | $wb['auto_network_configuration_txt'] = 'Network Configuration'; |
| | | $wb['ip_address_error_wrong'] = 'Invalid IP address format.'; |
| | | $wb['netmask_error_wrong'] = 'Invalid Netmask format.'; |
| | | $wb['gateway_error_wrong'] = 'Invalid Gateway format.'; |
| | | $wb['hostname_error_empty'] = 'Hostname is empty.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver is empty.'; |
| | | $wb['config_dir_txt'] = 'Config directory'; |
| | | $wb['init_script_txt'] = 'Cron init script name'; |
| | | $wb['crontab_dir_txt'] = 'Path for individual crontabs'; |
| | | $wb['wget_txt'] = 'Path to wget program'; |
| | | $wb['web_user_txt'] = 'Apache user'; |
| | | $wb['web_group_txt'] = 'Apache group'; |
| | | $wb['security_level_txt'] = 'Security level'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Interface'] = 'Interface'; |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['Misc'] = 'Misc'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sections"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted applications"; |
| | | $wb['website_path_txt'] = "Website path"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost config enabled dir"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter path"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter script"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini Path"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. Requests"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Модул"; |
| | | $wb['maildir_path_txt'] = "Maildir Path"; |
| | | $wb['homedir_path_txt'] = "Homedir Path"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Mailuser Name"; |
| | | $wb['mailuser_group_txt'] = "Mailuser Group"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost User"; |
| | | $wb['relayhost_password_txt'] = "Relayhost Password"; |
| | | $wb['mailbox_size_limit_txt'] = "Mailbox Size Limit"; |
| | | $wb['message_size_limit_txt'] = "Message Size Limit"; |
| | | $wb['ip_address_txt'] = "IP адрес"; |
| | | $wb['netmask_txt'] = "Нет маска"; |
| | | $wb['gateway_txt'] = "Шлюз"; |
| | | $wb['hostname_txt'] = "Хост име"; |
| | | $wb['nameservers_txt'] = "Nameservers"; |
| | | $wb['auto_network_configuration_txt'] = "Мрежова конфигурация"; |
| | | $wb['website_basedir_txt'] = "Базова директория на сайта"; |
| | | $wb['ip_address_error_wrong'] = "Грешен формат за IP адрес."; |
| | | $wb['netmask_error_wrong'] = "Грешен формат за НЕТ маска."; |
| | | $wb['gateway_error_wrong'] = "Грешен формат за Шлюз."; |
| | | $wb['hostname_error_empty'] = "Хост името е празно."; |
| | | $wb['nameservers_error_empty'] = "Nameserver is empty."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applications"; |
| | | $wb['config_dir_txt'] = "Config directory"; |
| | | $wb['init_script_txt'] = "Cron init script name"; |
| | | $wb['crontab_dir_txt'] = "Path for individual crontabs"; |
| | | $wb['wget_txt'] = "Path to wget program"; |
| | | $wb['security_level_txt'] = "Security level"; |
| | | $wb['web_user_txt'] = "Apache потребител"; |
| | | $wb['web_group_txt'] = "Apache група"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost порт"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost домейн"; |
| | | $wb['bind_user_txt'] = "BIND Потребител"; |
| | | $wb['bind_group_txt'] = "BIND Група"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Директория за бекъп"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "Опцията за мрежова конфигурация е възможна само за сървъри на Debian и Ubuntu. Не разрашавай тази опция ако твоя интерфейс за връзка към интернет не е eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Сървър тип"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Бекъп директорията е празна."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path е празна."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path е празна."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID е празна."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID е празна."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name е празен."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group е празна."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Забрани MySQL мониторинга"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Забрани Email мониторинга"; |
| | | $wb['rescue_description_txt'] = "<b>ИНФОРМАЦИЯ:</b> Ако искате да изключвате MySQL, вие трябва да изберете Забрани MySQL монитор кутийката и след това изчакайте 2-3 минути.<br>ако не изчакайте 2-3 минути, MySQL ще се опита да рестартира !"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sections'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted applications'; |
| | | $wb['website_path_txt'] = 'Website path'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled dir'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter path'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter script'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini Path'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. Requests'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Модул'; |
| | | $wb['maildir_path_txt'] = 'Maildir Path'; |
| | | $wb['homedir_path_txt'] = 'Homedir Path'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailuser Name'; |
| | | $wb['mailuser_group_txt'] = 'Mailuser Group'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost User'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Password'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mailbox Size Limit'; |
| | | $wb['message_size_limit_txt'] = 'Message Size Limit'; |
| | | $wb['ip_address_txt'] = 'IP адрес'; |
| | | $wb['netmask_txt'] = 'Нет маска'; |
| | | $wb['gateway_txt'] = 'Шлюз'; |
| | | $wb['hostname_txt'] = 'Хост име'; |
| | | $wb['nameservers_txt'] = 'Nameservers'; |
| | | $wb['auto_network_configuration_txt'] = 'Мрежова конфигурация'; |
| | | $wb['website_basedir_txt'] = 'Базова директория на сайта'; |
| | | $wb['ip_address_error_wrong'] = 'Грешен формат за IP адрес.'; |
| | | $wb['netmask_error_wrong'] = 'Грешен формат за НЕТ маска.'; |
| | | $wb['gateway_error_wrong'] = 'Грешен формат за Шлюз.'; |
| | | $wb['hostname_error_empty'] = 'Хост името е празно.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applications'; |
| | | $wb['config_dir_txt'] = 'Config directory'; |
| | | $wb['init_script_txt'] = 'Cron init script name'; |
| | | $wb['crontab_dir_txt'] = 'Path for individual crontabs'; |
| | | $wb['wget_txt'] = 'Path to wget program'; |
| | | $wb['security_level_txt'] = 'Security level'; |
| | | $wb['web_user_txt'] = 'Apache потребител'; |
| | | $wb['web_group_txt'] = 'Apache група'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost порт'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost домейн'; |
| | | $wb['bind_user_txt'] = 'BIND Потребител'; |
| | | $wb['bind_group_txt'] = 'BIND Група'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Директория за бекъп'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'Опцията за мрежова конфигурация е възможна само за сървъри на Debian и Ubuntu. Не разрашавай тази опция ако твоя интерфейс за връзка към интернет не е eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Сървър тип'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Бекъп директорията е празна.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path е празна.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path е празна.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID е празна.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID е празна.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name е празен.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group е празна.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Забрани MySQL мониторинга'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Забрани Email мониторинга'; |
| | | $wb['rescue_description_txt'] = '<b>ИНФОРМАЦИЯ:</b> Ако искате да изключвате MySQL, вие трябва да изберете Забрани MySQL монитор кутийката и след това изчакайте 2-3 минути.<br>ако не изчакайте 2-3 минути, MySQL ще се опита да рестартира !'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Ações Remotas'; |
| | | $wb['Do OS-Update'] = 'Fazer Atualização do SO'; |
| | | $wb['Do ISPConfig-Update'] = 'Fazer Atualização do ISPConfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Raiz do Chroot Jailkit"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Aplicações Jailkit chroot (Sessões)"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Aplicações Jailkit em ambiente chroot"; |
| | | $wb['website_path_txt'] = "Caminho do Website"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks: link simbólico"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['website_basedir_txt'] = "Website basedir: Diretório base "; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost diretório de configuração ativo"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI: Caminho diretório inicial"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI: Script inicial"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI: Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI: Caminho do php.ini "; |
| | | $wb['fastcgi_children_txt'] = "FastCGI: Filhos"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI: Requisições máximas"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Módulo"; |
| | | $wb['maildir_path_txt'] = "Caminho do diretório Maildir"; |
| | | $wb['homedir_path_txt'] = "Caminho do diretório Home"; |
| | | $wb['mailuser_uid_txt'] = "UID usuário de email"; |
| | | $wb['mailuser_gid_txt'] = "GID usuário de email"; |
| | | $wb['mailuser_name_txt'] = "Nome usuário de email"; |
| | | $wb['mailuser_group_txt'] = "Grupo usuário de email"; |
| | | $wb['relayhost_txt'] = "Host Relay"; |
| | | $wb['relayhost_user_txt'] = "Usuário do Host Relay"; |
| | | $wb['relayhost_password_txt'] = "Senha do Host Relay"; |
| | | $wb['mailbox_size_limit_txt'] = "Tamanho máximo da Caixa Postal"; |
| | | $wb['message_size_limit_txt'] = "Tamanho máximo de mensagem"; |
| | | $wb['ip_address_txt'] = "Endereço IP"; |
| | | $wb['netmask_txt'] = "Máscara de Rede"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Nome do Host"; |
| | | $wb['nameservers_txt'] = "Servidores DNS"; |
| | | $wb['auto_network_configuration_txt'] = "Configuração de Rede"; |
| | | $wb['ip_address_error_wrong'] = "Formato do Endereço IP inválido!"; |
| | | $wb['netmask_error_wrong'] = "Formato da Máscara de Rede inválio!"; |
| | | $wb['gateway_error_wrong'] = "Gateway inválido!"; |
| | | $wb['hostname_error_empty'] = "Por favor, entre com o nome do Host."; |
| | | $wb['nameservers_error_empty'] = "Por favor, entre com o Servidor DNS."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Cron de aplicações Jailkit em ambiente chroot"; |
| | | $wb['config_dir_txt'] = "Diretório de configuração"; |
| | | $wb['init_script_txt'] = "Cron init nome do script"; |
| | | $wb['crontab_dir_txt'] = "Caminho para crontabs individuais"; |
| | | $wb['wget_txt'] = "Caminho para o wget"; |
| | | $wb['web_user_txt'] = "Usuário Apache"; |
| | | $wb['web_group_txt'] = "Grupo Apache"; |
| | | $wb['security_level_txt'] = "Nível de Segurança"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "Usuário BIND"; |
| | | $wb['bind_group_txt'] = "Grupo BIND"; |
| | | $wb['bind_zonefiles_dir_txt'] = "Diretório de arquivos de zona do BIND"; |
| | | $wb['named_conf_path_txt'] = "Caminho do BIND named.conf"; |
| | | $wb['bind_user_error_empty'] = "Usuário do BIND está em branco."; |
| | | $wb['bind_group_error_empty'] = "Grupo do BIND está em branco."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "Diretório de arquivos de zona está em branco."; |
| | | $wb['named_conf_path_error_empty'] = "Caminho do BIND named.conf."; |
| | | $wb['named_conf_local_path_error_empty'] = "Caminho do BIND named.conf.local está em branco."; |
| | | $wb['mail_filter_syntax_txt'] = "Sintaxe do Mailfilter"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir está em branco."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride está em branco."; |
| | | $wb['awstats_conf_dir_txt'] = "Diretório de configuração do awstats"; |
| | | $wb['awstats_data_dir_txt'] = "Diretório de dados do awstats"; |
| | | $wb['awstats_pl_txt'] = "script awstats.pl"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "script awstats_buildstaticpages.pl"; |
| | | $wb['backup_dir_txt'] = "Diretório de Backup"; |
| | | $wb['named_conf_local_path_txt'] = "Caminho do named.conf.local do BIND"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Caminho do php.ini do Apache"; |
| | | $wb['check_apache_config_txt'] = "Testar a configuração do Apache ao reiniciar"; |
| | | $wb['network_config_warning_txt'] = "A configuração de rede só está disponível para servidores Debian e Ubuntu. Não ative esta configuração de a sua placa de rede não for eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Raiz do Chroot Jailkit'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Aplicações Jailkit chroot (Sessões)'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Aplicações Jailkit em ambiente chroot'; |
| | | $wb['website_path_txt'] = 'Caminho do Website'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks: link simbólico'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'Website basedir: Diretório base '; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost diretório de configuração ativo'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI: Caminho diretório inicial'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI: Script inicial'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI: Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI: Caminho do php.ini '; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI: Filhos'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI: Requisições máximas'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Módulo'; |
| | | $wb['maildir_path_txt'] = 'Caminho do diretório Maildir'; |
| | | $wb['homedir_path_txt'] = 'Caminho do diretório Home'; |
| | | $wb['mailuser_uid_txt'] = 'UID usuário de email'; |
| | | $wb['mailuser_gid_txt'] = 'GID usuário de email'; |
| | | $wb['mailuser_name_txt'] = 'Nome usuário de email'; |
| | | $wb['mailuser_group_txt'] = 'Grupo usuário de email'; |
| | | $wb['relayhost_txt'] = 'Host Relay'; |
| | | $wb['relayhost_user_txt'] = 'Usuário do Host Relay'; |
| | | $wb['relayhost_password_txt'] = 'Senha do Host Relay'; |
| | | $wb['mailbox_size_limit_txt'] = 'Tamanho máximo da Caixa Postal'; |
| | | $wb['message_size_limit_txt'] = 'Tamanho máximo de mensagem'; |
| | | $wb['ip_address_txt'] = 'Endereço IP'; |
| | | $wb['netmask_txt'] = 'Máscara de Rede'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Nome do Host'; |
| | | $wb['nameservers_txt'] = 'Servidores DNS'; |
| | | $wb['auto_network_configuration_txt'] = 'Configuração de Rede'; |
| | | $wb['ip_address_error_wrong'] = 'Formato do Endereço IP inválido!'; |
| | | $wb['netmask_error_wrong'] = 'Formato da Máscara de Rede inválio!'; |
| | | $wb['gateway_error_wrong'] = 'Gateway inválido!'; |
| | | $wb['hostname_error_empty'] = 'Por favor, entre com o nome do Host.'; |
| | | $wb['nameservers_error_empty'] = 'Por favor, entre com o Servidor DNS.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Cron de aplicações Jailkit em ambiente chroot'; |
| | | $wb['config_dir_txt'] = 'Diretório de configuração'; |
| | | $wb['init_script_txt'] = 'Cron init nome do script'; |
| | | $wb['crontab_dir_txt'] = 'Caminho para crontabs individuais'; |
| | | $wb['wget_txt'] = 'Caminho para o wget'; |
| | | $wb['web_user_txt'] = 'Usuário Apache'; |
| | | $wb['web_group_txt'] = 'Grupo Apache'; |
| | | $wb['security_level_txt'] = 'Nível de Segurança'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'Usuário BIND'; |
| | | $wb['bind_group_txt'] = 'Grupo BIND'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'Diretório de arquivos de zona do BIND'; |
| | | $wb['named_conf_path_txt'] = 'Caminho do BIND named.conf'; |
| | | $wb['bind_user_error_empty'] = 'Usuário do BIND está em branco.'; |
| | | $wb['bind_group_error_empty'] = 'Grupo do BIND está em branco.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'Diretório de arquivos de zona está em branco.'; |
| | | $wb['named_conf_path_error_empty'] = 'Caminho do BIND named.conf.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'Caminho do BIND named.conf.local está em branco.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Sintaxe do Mailfilter'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir está em branco.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride está em branco.'; |
| | | $wb['awstats_conf_dir_txt'] = 'Diretório de configuração do awstats'; |
| | | $wb['awstats_data_dir_txt'] = 'Diretório de dados do awstats'; |
| | | $wb['awstats_pl_txt'] = 'script awstats.pl'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'script awstats_buildstaticpages.pl'; |
| | | $wb['backup_dir_txt'] = 'Diretório de Backup'; |
| | | $wb['named_conf_local_path_txt'] = 'Caminho do named.conf.local do BIND'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Caminho do php.ini do Apache'; |
| | | $wb['check_apache_config_txt'] = 'Testar a configuração do Apache ao reiniciar'; |
| | | $wb['network_config_warning_txt'] = 'A configuração de rede só está disponível para servidores Debian e Ubuntu. Não ative esta configuração de a sua placa de rede não for eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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!'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['1001'] = 'Username or password is empty.'; |
| | | $wb['1002'] = 'Username or password is wrong.'; |
| | | $wb['1001'] = 'Uživatelské jméno nebo heslo je prázdné.'; |
| | | $wb['1002'] = 'Uživatelské jméno nebo heslo je nesprávné.'; |
| | | $wb['Groups'] = 'Skupiny'; |
| | | $wb['groups_description'] = 'Úprava skupin systémových uživatelů.'; |
| | | $wb['Servers'] = 'Servery'; |
| | |
| | | $wb['Edit server'] = 'Upravit server'; |
| | | $wb['Sync. Now'] = 'Synch. nyní'; |
| | | $wb['DB Sync.'] = 'DB synch.'; |
| | | $wb['User Management'] = 'User Management'; |
| | | $wb['User Management'] = 'Správa uživatelů'; |
| | | $wb['CP Users'] = 'CP uživatelé'; |
| | | $wb['Remote Users'] = 'Vzdálení uživatelé'; |
| | | $wb['System'] = 'Systém'; |
| | |
| | | $wb['Services'] = 'Služby'; |
| | | $wb['Server Config'] = 'Konfigurace serveru'; |
| | | $wb['Server'] = 'Server'; |
| | | $wb['Mail'] = 'Mail'; |
| | | $wb['Mail'] = 'E-mail'; |
| | | $wb['Getmail'] = 'Getmail'; |
| | | $wb['Web'] = 'Web'; |
| | | $wb['FastCGI'] = 'FastCGI'; |
| | | $wb['Jailkit'] = 'Jailkit'; |
| | | $wb['Rescue'] = 'Rescue'; |
| | | $wb['Server IP addresses'] = 'IP adresy server'; |
| | | $wb['Additional PHP Versions'] = 'Additional PHP Versions'; |
| | | $wb['Rescue'] = 'Zachrána'; |
| | | $wb['Server IP addresses'] = 'IP adresy serveru'; |
| | | $wb['Additional PHP Versions'] = 'Další PHP verze'; |
| | | $wb['Firewall'] = 'Firewall'; |
| | | $wb['Interface'] = 'Interface'; |
| | | $wb['Interface Config'] = 'Main Config'; |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['Misc'] = 'Misc'; |
| | | $wb['Interface'] = 'Rozhraní'; |
| | | $wb['Interface Config'] = 'Hlavní konfigurace'; |
| | | $wb['Domains'] = 'Domény'; |
| | | $wb['Misc'] = 'Různé'; |
| | | $wb['Software'] = 'Software'; |
| | | $wb['Repositories'] = 'Repozitáře'; |
| | | $wb['Packages'] = 'Balíčky'; |
| | | $wb['Updates'] = 'Aktualizace'; |
| | | $wb['Language Editor'] = 'Editor jazyků'; |
| | | $wb['Languages'] = 'Jazyky'; |
| | | $wb['New Language'] = 'Nový jazyk'; |
| | | $wb['Merge'] = 'Sloučit'; |
| | | $wb['Export'] = 'Exportovat'; |
| | | $wb['Import'] = 'Importovat'; |
| | | $wb['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Language Editor'] = 'Jazykový editor'; |
| | | $wb['Languages'] = 'Výběr jazyka - přímá editace'; |
| | | $wb['New Language'] = 'Vytvořit nový jazyk'; |
| | | $wb['Merge'] = 'Sloučit jazykový soubor'; |
| | | $wb['Export'] = 'Uložit jazyk do souboru'; |
| | | $wb['Import'] = 'Nahrát jazykový soubor'; |
| | | $wb['Remote Actions'] = 'Vzdálené akce'; |
| | | $wb['Do OS-Update'] = 'Aktualizovat operační systém'; |
| | | $wb['Do ISPConfig-Update'] = 'Aktualizovat ISPConfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['destination_ip_txt'] = 'Destination Address'; |
| | | $wb['source_ip_txt'] = 'Source Address'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['iptables_error_unique'] = 'There is already a firewall record for this server.'; |
| | | ?> |
| | |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['destination_ip_txt'] = 'Destination Address'; |
| | | $wb['source_ip_txt'] = 'Source Address'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['iptables_error_unique'] = 'There is already a firewall record for this server.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Přidat jazyk'; |
| | | $wb['list_head_txt'] = 'Přidat nový jazyk'; |
| | | $wb['language_select_txt'] = 'Vybrat jazykový základ'; |
| | | $wb['language_new_txt'] = 'Nový jazyk'; |
| | | $wb['language_new_hint_txt'] = '2 znakové ISO 639-1 jazykiové kódy (viz http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)'; |
| | | $wb['btn_save_txt'] = 'Vytvořit nový jazykový soubor'; |
| | | $wb['language_new_txt'] = 'Název nového jazyka'; |
| | | $wb['language_new_hint_txt'] = '2 znakové ISO 639-1 jazykové kódy (Viz: http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)'; |
| | | $wb['btn_save_txt'] = 'Vytvořit novou jazykovou sadu souborů'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Sloučit jazyk'; |
| | | $wb['list_desc_txt'] = 'Sloučit vybraný jazykový soubor s hlavním anglickým jazykovým souborem. <br />Toto přidá chybějící řetězce z anglického hlavního souboru do vybraného souboru.'; |
| | | $wb['language_select_txt'] = 'Vybrat jazyk'; |
| | | $wb['btn_save_txt'] = 'Sloučit soubory'; |
| | | $wb['list_head_txt'] = 'Sloučit jazykový soubor'; |
| | | $wb['list_desc_txt'] = 'Sloučit vybraný jazykový soubor s hlavním anglickým jazykovým souborem. <br />Toto přidá chybějící řetězce z anglického hlavního souboru do vybraného jazykového souboru. <br /> V nových verzích ISPConfigu vznikají nové moduly a položky, které chybějí ve starších jazykových souborech a takto je doplníte k překladu.'; |
| | | $wb['language_select_txt'] = 'Vybrat jazyk k doplnění'; |
| | | $wb['btn_save_txt'] = 'Sloučit / doplnit jazykový soubor'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Exportovat jazykové soubory'; |
| | | $wb['language_select_txt'] = 'Vybrat jazyk'; |
| | | $wb['btn_save_txt'] = 'Exportovat vybraný jazykový soubor'; |
| | | $wb['language_select_txt'] = 'Vybrat jazykovou sadu'; |
| | | $wb['btn_save_txt'] = 'Uložit vybranou jazykovou sadu do souboru'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Importovat jazykový soubor'; |
| | | $wb['list_head_txt'] = 'Nahrát vybraný jazykový soubor'; |
| | | $wb['language_import_txt'] = 'Vybrat jazykový soubor'; |
| | | $wb['btn_save_txt'] = 'Importovat vybraný jazykový soubor'; |
| | | $wb['btn_save_txt'] = 'Nahrát vybraný jazykový soubor'; |
| | | $wb['language_overwrite_txt'] = 'Přepsat soubor, pokud existuje.'; |
| | | $wb['btn_cancel_txt'] = 'Zpět'; |
| | | $wb['ignore_version_txt'] = 'Přeskočit kontrolu verze ISPConfigu'; |
| | | $wb['ignore_version_txt'] = 'Přeskočit kontrolu verze ISPConfigu.'; |
| | | ?> |
| | |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | $wb['repo_username_txt'] = 'User (optional)'; |
| | | $wb['repo_password_txt'] = 'Password (optional)'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['select_server_txt'] = 'Select Server'; |
| | | $wb['btn_do_txt'] = 'Execute action'; |
| | | $wb['do_osupdate_caption'] = 'Do OS-Update at remote server'; |
| | | $wb['do_osupdate_desc'] = 'This Action does a aptitude -y upgrade at your selected server.<br><br><strong>USE THIS AT YOUR OWN RISK!</strong>'; |
| | | $wb['do_ispcupdate_caption'] = 'Do ISPConfig 3 - Update at remote server'; |
| | | $wb['do_ispcupdate_desc'] = 'This action does a ISPConfig3 update at your selected server.<br><br><strong>USE THIS AT YOUR OWN RISK!</strong>'; |
| | | $wb['action_scheduled'] = 'The action is scheduled for execution'; |
| | | $wb['select_all_server'] = 'All server'; |
| | | $wb['ispconfig_update_title'] = 'ISPConfig update instructions'; |
| | | $wb['ispconfig_update_text'] = 'Login as root user on the shell of your server and execute the command<br /><br /> <strong>ispconfig_update.sh</strong><br /><br />to start the ISPConfig update.<br /><br /><a href=http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-update-ispconfig-3/ target=_blank>Click here for detailed update instructins</a>'; |
| | | $wb['select_server_txt'] = '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_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['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['DNS srv functions'] = 'Funkce DNS SRV'; |
| | | $wb['DNS txt functions'] = 'Funkce DNS TXT'; |
| | | $wb['Mail mailing list functions'] = 'Mail mailinglist functions'; |
| | | $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'] = 'Generovat heslo'; |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot adresář"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sekce"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrootované aplikace"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrootované aplikace"; |
| | | $wb['website_path_txt'] = "Website cesta"; |
| | | $wb['website_symlinks_txt'] = "Website symlinky"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['website_basedir_txt'] = "Website config adresář"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config adresář"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost config enabled adresář"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config adresář"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter cesta"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter skript"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini cesta"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI děti"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. požadavků"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI bin"; |
| | | $wb['module_txt'] = "Modul"; |
| | | $wb['maildir_path_txt'] = "Cesta k mail adresáři"; |
| | | $wb['homedir_path_txt'] = "Cesta k domácímu adresáři"; |
| | | $wb['mailuser_uid_txt'] = "Mail uživatel UID"; |
| | | $wb['mailuser_gid_txt'] = "Mail uživatel GID"; |
| | | $wb['mailuser_name_txt'] = "Mail uživatel jméno"; |
| | | $wb['mailuser_group_txt'] = "Mail uživatel skupina"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost uživatel"; |
| | | $wb['relayhost_password_txt'] = "Relayhost heslo"; |
| | | $wb['mailbox_size_limit_txt'] = "Limit velikosti mailboxu"; |
| | | $wb['message_size_limit_txt'] = "Limit velikosti zprávy"; |
| | | $wb['ip_address_txt'] = "IP adresa"; |
| | | $wb['netmask_txt'] = "Maska"; |
| | | $wb['gateway_txt'] = "Brána"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Jmenné servery"; |
| | | $wb['auto_network_configuration_txt'] = "Konfigurace sítě"; |
| | | $wb['ip_address_error_wrong'] = "Neplatný formát IP adresy."; |
| | | $wb['netmask_error_wrong'] = "Neplatný formát síťové masky."; |
| | | $wb['gateway_error_wrong'] = "Neplatný formát brány."; |
| | | $wb['hostname_error_empty'] = "Hostname je prázdný."; |
| | | $wb['nameservers_error_empty'] = "Jmenný server je prázdný."; |
| | | $wb['config_dir_txt'] = "Konfigurační adresář"; |
| | | $wb['init_script_txt'] = "Název cron init skriptu"; |
| | | $wb['crontab_dir_txt'] = "Cesta k individuálním cron tabulkám"; |
| | | $wb['wget_txt'] = "Cesta k wget programu"; |
| | | $wb['web_user_txt'] = "Apache uživatel"; |
| | | $wb['web_group_txt'] = "Apache skupina"; |
| | | $wb['security_level_txt'] = "Úroveň bezpečnosti"; |
| | | $wb['loglevel_txt'] = "Úroveň logování"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost doména"; |
| | | $wb['bind_user_txt'] = "BIND uživatel"; |
| | | $wb['bind_group_txt'] = "BIND skupina"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND adresář se zónovými soubory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf cesta"; |
| | | $wb['bind_user_error_empty'] = "BIND uživatel je prázdný."; |
| | | $wb['bind_group_error_empty'] = "BIND skupina je prázdná."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND adresář se zónovými soubory je prázdný."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf cesta je prázdná."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local cesta je prázdná."; |
| | | $wb['mail_filter_syntax_txt'] = "Syntaxe mailového filtru"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP démon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir ije prázdný."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride je prázdný."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot adresář'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sekce'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrootované aplikace'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrootované aplikace'; |
| | | $wb['website_path_txt'] = 'Website cesta'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinky'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'Website config adresář'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config adresář'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled adresář'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config adresář'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter cesta'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter skript'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini cesta'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI děti'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. požadavků'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI bin'; |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['maildir_path_txt'] = 'Cesta k mail adresáři'; |
| | | $wb['homedir_path_txt'] = 'Cesta k domácímu adresáři'; |
| | | $wb['mailuser_uid_txt'] = 'Mail uživatel UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mail uživatel GID'; |
| | | $wb['mailuser_name_txt'] = 'Mail uživatel jméno'; |
| | | $wb['mailuser_group_txt'] = 'Mail uživatel skupina'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost uživatel'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost heslo'; |
| | | $wb['mailbox_size_limit_txt'] = 'Limit velikosti mailboxu'; |
| | | $wb['message_size_limit_txt'] = 'Limit velikosti zprávy'; |
| | | $wb['ip_address_txt'] = 'IP adresa'; |
| | | $wb['netmask_txt'] = 'Maska'; |
| | | $wb['gateway_txt'] = 'Brána'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Jmenné servery'; |
| | | $wb['auto_network_configuration_txt'] = 'Konfigurace sítě'; |
| | | $wb['ip_address_error_wrong'] = 'Neplatný formát IP adresy.'; |
| | | $wb['netmask_error_wrong'] = 'Neplatný formát síťové masky.'; |
| | | $wb['gateway_error_wrong'] = 'Neplatný formát brány.'; |
| | | $wb['hostname_error_empty'] = 'Hostname je prázdný.'; |
| | | $wb['nameservers_error_empty'] = 'Jmenný server je prázdný.'; |
| | | $wb['config_dir_txt'] = 'Vlogger config adresář'; |
| | | $wb['init_script_txt'] = 'Název cron init skriptu'; |
| | | $wb['crontab_dir_txt'] = 'Cesta k individuálním cron tabulkám'; |
| | | $wb['wget_txt'] = 'Cesta k wget programu'; |
| | | $wb['web_user_txt'] = 'Apache uživatel'; |
| | | $wb['web_group_txt'] = 'Apache skupina'; |
| | | $wb['security_level_txt'] = 'Úroveň bezpečnosti'; |
| | | $wb['loglevel_txt'] = 'Úroveň logování'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost doména'; |
| | | $wb['bind_user_txt'] = 'BIND uživatel'; |
| | | $wb['bind_group_txt'] = 'BIND skupina'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND adresář se zónovými soubory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf cesta'; |
| | | $wb['bind_user_error_empty'] = 'BIND uživatel je prázdný.'; |
| | | $wb['bind_group_error_empty'] = 'BIND skupina je prázdná.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND adresář se zónovými soubory je prázdný.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf cesta je prázdná.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local cesta je prázdná.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Syntaxe mailového filtru'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP démon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir ije prázdný.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride je prázdný.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Adresář pro zálohy'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'Možnost konfigurace sítě je k dispozici pouze pro Debian a Ubuntu servery. Nepoužívejte tuto volbu, pokud vaše síťové rozhraní není eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Povolit monitorování služeb a restartovat při selhání'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Zakázat MySQL sledování'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Zakázat E-mail sledování'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Zakázat HTTPD sledování'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Režim zálohování'; |
| | | $wb['backup_mode_userzip'] = 'Zálohování všech souborů v adresáři web jako uživatel vlastnící web adresář do souboru zip'; |
| | | $wb['backup_mode_rootgz'] = 'Zálohování všech souborů v adresáři web jako uživatel root'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Samostatná RBL se odděluje čárkou)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Statistika kvóty poštovní schránky'; |
| | | $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['virtualhost_txt'] = 'HTTP NameVirtualHost'; |
| | | $wb['ip_error_wrong'] = 'IP adresa je neplatná'; |
| | | $wb['ip_error_unique'] = 'IP adresa musí být unikátní'; |
| | | $wb['client_id_txt'] = 'Client'; |
| | | $wb['ip_type_txt'] = 'Type'; |
| | | $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['dbuser_prefix_error_regex'] = 'Znak není povolen v prefixu databázového uživatele.'; |
| | | $wb['ftpuser_prefix_error_regex'] = 'Znak není povolen v prefixu FTP uživatele.'; |
| | | $wb['shelluser_prefix_error_regex'] = 'Znak není povolen v prefixu shell uživatele.'; |
| | | $wb['dblist_phpmyadmin_link_txt'] = 'Odkaz na apolikaci PHPMyAdmin v DB seznamu'; |
| | | $wb['dblist_phpmyadmin_link_txt'] = 'Odkaz na aplikaci PHPMyAdmin v DB seznamu'; |
| | | $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['webdavuser_prefix_txt'] = 'Webdav user prefix'; |
| | | $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'] = 'Use the domain-module to add new domains'; |
| | | $wb['use_domain_module_txt'] = 'Použijte modul-domény pro přidání nových domén'; |
| | | $wb['use_domain_module_hint'] = 'If you use this module, your customers can only select one of the domains the admin creates for them. They can not free edit the domain-field.You have to re-login after changing this value, to make the changes visible.'; |
| | | $wb['new_domain_txt'] = 'HTML to create a new domain'; |
| | | $wb['new_domain_txt'] = 'HTML vytvořit novou doménu'; |
| | | $wb['webftp_url_txt'] = 'WebFTP URL'; |
| | | $wb['admin_mail_txt'] = 'E-mail Administrátora'; |
| | | $wb['admin_name_txt'] = 'Jméno Administrátora'; |
| | | $wb['enable_custom_login_txt'] = 'Allow custom login name'; |
| | | $wb['mailmailinglist_link_txt'] = 'Link to mailing list in Mailing list list'; |
| | | $wb['mailmailinglist_url_txt'] = 'Mailing list URL'; |
| | | $wb['enable_custom_login_txt'] = 'Povolit vlastní přihlašovací jméno'; |
| | | $wb['mailmailinglist_link_txt'] = 'Odkaz na aplikaci mailing seznam e-mailových konferencí'; |
| | | $wb['mailmailinglist_url_txt'] = 'Mailing seznam URL'; |
| | | $wb['monitor_key_txt'] = 'Monitor keyword'; |
| | | $wb['maintenance_mode_txt'] = 'Maintenance Mode'; |
| | | $wb['smtp_enabled_txt'] = 'Use SMTP to send system mails'; |
| | | $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_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_user_txt'] = 'SMTP uživatel'; |
| | | $wb['smtp_pass_txt'] = 'SMTP heslo'; |
| | | $wb['smtp_crypt_txt'] = 'Použít SSL/TLS šifrované spojení pro SMTP'; |
| | | $wb['smtp_missing_admin_mail_txt'] = 'Please enter the admin name and admin mail address if you want to use smtp mail sending.'; |
| | | $wb['tab_change_discard_txt'] = 'Discard changes on tab change'; |
| | | $wb['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_note_txt'] = 'You cannot disable this as long as vhost subdomains exist in the system!'; |
| | | ?> |
| | |
| | | $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['Additional PHP Versions'] = 'Další PHP verze'; |
| | | $wb['Form to edit additional PHP versions'] = 'Formulář pro úpravu další PHP verzí'; |
| | | $wb['server_php_name_error_empty'] = 'The Name field must not be empty.'; |
| | | $wb['php_fastcgi_binary_txt'] = 'Path to the PHP FastCGI binary'; |
| | | $wb['php_fastcgi_ini_dir_txt'] = 'Path to the php.ini directory'; |
| | |
| | | $wb['groups_txt'] = 'Skupiny'; |
| | | $wb['default_group_txt'] = 'Výchozí skupina'; |
| | | $wb['startmodule_err'] = 'Výchozí modul nenalezen v modulech.'; |
| | | $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'] = 'Generovat heslo'; |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | |
| | | $wb['list_head_txt'] = 'Uživatelé'; |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['client_id_txt'] = 'Client ID'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['add_new_record_txt'] = 'Přidat uživatele'; |
| | | $wb['warning_txt'] = '<b>VAROVÁNÍ:</b> Zde neupravujte uživatelská nastavení. Užijte klientská a distributorská nastavení v klientském modulu. Úprava uživatelý nebo skupin zde může způsobit ztrátu dat!'; |
| | | $wb['groups_txt'] = 'Groups'; |
| | |
| | | <?php |
| | | $wb['1001'] = "Benutzername oder Passwort ist leer."; |
| | | $wb['1002'] = "Benutzername oder Passwort ist falsch."; |
| | | $wb['Groups'] = "Gruppen"; |
| | | $wb['groups_description'] = "Formular zur Bearbeitung von Systembenutzer Gruppen."; |
| | | $wb['Servers'] = "Server"; |
| | | $wb['Config'] = "Konfiguration"; |
| | | $wb['Add user'] = "Benutzer hinzufügen"; |
| | | $wb['Edit user'] = "Benutzer bearbeiten"; |
| | | $wb['Add group'] = "Gruppe hinzufügen"; |
| | | $wb['Edit group'] = "Gruppe bearbeiten"; |
| | | $wb['Edit server'] = "Server bearbeiten"; |
| | | $wb['Sync. Now'] = "Jetzt synchronisieren"; |
| | | $wb['DB Sync.'] = "Datenbank Synchronisation"; |
| | | $wb['User Management'] = "Benutzerverwaltung"; |
| | | $wb['CP Users'] = "CP Benutzer"; |
| | | $wb['Remote Users'] = "Remote Benutzer"; |
| | | $wb['System'] = "System"; |
| | | $wb['Server Services'] = "Server Dienste"; |
| | | $wb['Services'] = "Dienste"; |
| | | $wb['Server Config'] = "Serverkonfiguration"; |
| | | $wb['Server'] = "Server"; |
| | | $wb['Mail'] = "E-Mail"; |
| | | $wb['Getmail'] = "Getmail"; |
| | | $wb['Web'] = "Web"; |
| | | $wb['FastCGI'] = "FastCGI"; |
| | | $wb['Jailkit'] = "Jailkit"; |
| | | $wb['Rescue'] = "Überwachung"; |
| | | $wb['Server IP addresses'] = "Server IP Adressen"; |
| | | $wb['Additional PHP Versions'] = "Zusätzliche PHP Versionen"; |
| | | $wb['Directive Snippets'] = "Direktiven Schnipsel"; |
| | | $wb['Firewall'] = "Firewall"; |
| | | $wb['Interface'] = "Benutzeroberfläche"; |
| | | $wb['Interface Config'] = "Einstellungen"; |
| | | $wb['Domains'] = "Domains"; |
| | | $wb['Misc'] = "Diverses"; |
| | | $wb['Software'] = "Apps & Add-Ons"; |
| | | $wb['Repositories'] = "Bibliotheken"; |
| | | $wb['Packages'] = "Pakete"; |
| | | $wb['Updates'] = "Updates"; |
| | | $wb['Language Editor'] = "Sprachen Editor"; |
| | | $wb['Languages'] = "Sprachen"; |
| | | $wb['New Language'] = "Neue Sprache"; |
| | | $wb['Merge'] = "Zusammenführen"; |
| | | $wb['Export'] = "Exportieren"; |
| | | $wb['Import'] = "Importieren"; |
| | | $wb['Remote Actions'] = "Wartung"; |
| | | $wb['Do OS-Update'] = "Betriebssystem Update"; |
| | | $wb['Do ISPConfig-Update'] = "ISPConfig Update"; |
| | | $wb['1001'] = 'Benutzername oder Passwort ist leer.'; |
| | | $wb['1002'] = 'Benutzername oder Passwort ist falsch.'; |
| | | $wb['Groups'] = 'Gruppen'; |
| | | $wb['groups_description'] = 'Formular zur Bearbeitung von Systembenutzer Gruppen.'; |
| | | $wb['Servers'] = 'Server'; |
| | | $wb['Config'] = 'Konfiguration'; |
| | | $wb['Add user'] = 'Benutzer hinzufügen'; |
| | | $wb['Edit user'] = 'Benutzer bearbeiten'; |
| | | $wb['Add group'] = 'Gruppe hinzufügen'; |
| | | $wb['Edit group'] = 'Gruppe bearbeiten'; |
| | | $wb['Edit server'] = 'Server bearbeiten'; |
| | | $wb['Sync. Now'] = 'Jetzt synchronisieren'; |
| | | $wb['DB Sync.'] = 'Datenbank Synchronisation'; |
| | | $wb['User Management'] = 'Benutzerverwaltung'; |
| | | $wb['CP Users'] = 'CP Benutzer'; |
| | | $wb['Remote Users'] = 'Remote Benutzer'; |
| | | $wb['System'] = 'System'; |
| | | $wb['Server Services'] = 'Server Dienste'; |
| | | $wb['Services'] = 'Dienste'; |
| | | $wb['Server Config'] = 'Serverkonfiguration'; |
| | | $wb['Server'] = 'Server'; |
| | | $wb['Mail'] = 'E-Mail'; |
| | | $wb['Getmail'] = 'Getmail'; |
| | | $wb['Web'] = 'Web'; |
| | | $wb['FastCGI'] = 'FastCGI'; |
| | | $wb['Jailkit'] = 'Jailkit'; |
| | | $wb['Rescue'] = 'Überwachung'; |
| | | $wb['Server IP addresses'] = 'Server IP Adressen'; |
| | | $wb['Additional PHP Versions'] = 'Zusätzliche PHP Versionen'; |
| | | $wb['Directive Snippets'] = 'Direktiven Schnipsel'; |
| | | $wb['Firewall'] = 'Firewall'; |
| | | $wb['Interface'] = 'Benutzeroberfläche'; |
| | | $wb['Interface Config'] = 'Einstellungen'; |
| | | $wb['Domains'] = 'Domains'; |
| | | $wb['Misc'] = 'Diverses'; |
| | | $wb['Software'] = 'Apps & Add-Ons'; |
| | | $wb['Repositories'] = 'Bibliotheken'; |
| | | $wb['Packages'] = 'Pakete'; |
| | | $wb['Updates'] = 'Updates'; |
| | | $wb['Language Editor'] = 'Sprachen Editor'; |
| | | $wb['Languages'] = 'Sprachen'; |
| | | $wb['New Language'] = 'Neue Sprache'; |
| | | $wb['Merge'] = 'Zusammenführen'; |
| | | $wb['Export'] = 'Exportieren'; |
| | | $wb['Import'] = 'Importieren'; |
| | | $wb['Remote Actions'] = 'Wartung'; |
| | | $wb['Do OS-Update'] = 'Betriebssystem Update'; |
| | | $wb['Do ISPConfig-Update'] = 'ISPConfig Update'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['Directive Snippets'] = "Direktiven Schnipsel"; |
| | | $wb['name_txt'] = "Name des Schnipsels"; |
| | | $wb['type_txt'] = "Typ"; |
| | | $wb['snippet_txt'] = "Schnipsel"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['directive_snippets_name_empty'] = "Bitte geben Sie einen Namen für den Schnipsel an."; |
| | | $wb['directive_snippets_name_error_unique'] = "Es existiert schon ein Direktiven-Schnipsel mit diesem Namen."; |
| | | $wb['Directive Snippets'] = 'Direktiven Schnipsel'; |
| | | $wb['name_txt'] = 'Name des Schnipsels'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['snippet_txt'] = 'Schnipsel'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['directive_snippets_name_empty'] = 'Bitte geben Sie einen Namen für den Schnipsel an.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'Es existiert schon ein Direktiven-Schnipsel mit diesem Namen.'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['add_new_record_txt'] = 'Direcktiven Schnipsel hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | $wb['tcp_ports_error_regex'] = 'Zeichen nicht erlaubt in TCP Port Definition. Erlaubte Zeichen sind Nummern, : und ,.'; |
| | | $wb['udp_ports_error_regex'] = 'Zeichen nicht erlaubt in UDP Port Definition. Erlaubte Zeichen sind Nummern, : und ,.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Firewall"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['tcp_port_txt'] = "Offene TCP Ports"; |
| | | $wb['udp_port_txt'] = "Offene UD Ports"; |
| | | $wb['add_new_record_txt'] = "Firewalleintrag hinzufügen"; |
| | | $wb['list_head_txt'] = 'Firewall'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['tcp_port_txt'] = 'Offene TCP Ports'; |
| | | $wb['udp_port_txt'] = 'Offene UD Ports'; |
| | | $wb['add_new_record_txt'] = 'Firewalleintrag hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Gruppe'; |
| | | $wb['name_err'] = 'Der Gruppenname muss min. 1, max. 30 Zeichen lang sein.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Neue Gruppe hinzufügen'; |
| | | $wb['warning_txt'] = '<b>WARNUNG:</b> Bitte hier keine Benutzereinstellungen verändern. Benutzen Sie die Kunden- und Resellereinstellungen im Kundenmodul. Modifizieren der Benutzer oder Gruppen hier könnte zum Datenverlust führen!'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['multiport_txt'] = "Multi Port"; |
| | | $wb['singleport_txt'] = "Single Port"; |
| | | $wb['protocol_txt'] = "Protokoll"; |
| | | $wb['table_txt'] = "Table"; |
| | | $wb['target_txt'] = "Ziel"; |
| | | $wb['state_txt'] = "Status"; |
| | | $wb['destination_ip_txt'] = "Ziel Address"; |
| | | $wb['source_ip_txt'] = "Ausgangs Adresse"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['iptables_error_unique'] = "Es besteht bereits eine Firewall Regel für diesen Server."; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['multiport_txt'] = 'Multi Port'; |
| | | $wb['singleport_txt'] = 'Single Port'; |
| | | $wb['protocol_txt'] = 'Protokoll'; |
| | | $wb['table_txt'] = 'Table'; |
| | | $wb['target_txt'] = 'Ziel'; |
| | | $wb['state_txt'] = 'Status'; |
| | | $wb['destination_ip_txt'] = 'Ziel Address'; |
| | | $wb['source_ip_txt'] = 'Ausgangs Adresse'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['iptables_error_unique'] = 'Es besteht bereits eine Firewall Regel für diesen Server.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "IPTables"; |
| | | $wb['add_new_rule_txt'] = "Neue IPTables Regel hinzufügen"; |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['multiport_txt'] = "Multi Port"; |
| | | $wb['singleport_txt'] = "Single Port"; |
| | | $wb['protocol_txt'] = "Protokoll"; |
| | | $wb['table_txt'] = "Table"; |
| | | $wb['target_txt'] = "Ziel"; |
| | | $wb['state_txt'] = "Status"; |
| | | $wb['destination_ip_txt'] = "Ziel Adresse"; |
| | | $wb['source_ip_txt'] = "Ausgangs Adresse"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['iptables_error_unique'] = "Es besteht bereits eine Firewall Regel für diesen Server."; |
| | | $wb['list_head_txt'] = 'IPTables'; |
| | | $wb['add_new_rule_txt'] = 'Neue IPTables Regel hinzufügen'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['multiport_txt'] = 'Multi Port'; |
| | | $wb['singleport_txt'] = 'Single Port'; |
| | | $wb['protocol_txt'] = 'Protokoll'; |
| | | $wb['table_txt'] = 'Table'; |
| | | $wb['target_txt'] = 'Ziel'; |
| | | $wb['state_txt'] = 'Status'; |
| | | $wb['destination_ip_txt'] = 'Ziel Adresse'; |
| | | $wb['source_ip_txt'] = 'Ausgangs Adresse'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['iptables_error_unique'] = 'Es besteht bereits eine Firewall Regel für diesen Server.'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Neues Sprachdateiset erstellen'; |
| | | $wb['btn_cancel_txt'] = 'Zurück'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Dateien jetzt zusammenführen'; |
| | | $wb['btn_cancel_txt'] = 'Zurück'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Speichern'; |
| | | $wb['btn_cancel_txt'] = 'Zurück'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Ausgewähltes Sprachdateiset exportieren'; |
| | | $wb['btn_cancel_txt'] = 'Zurück'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_cancel_txt'] = 'Zurück'; |
| | | $wb['ignore_version_txt'] = 'ISPConfig Versionsüberprüfung überspringen'; |
| | | ?> |
| | | |
| | |
| | | $wb['lang_file_txt'] = 'Sprachdatei'; |
| | | $wb['lang_file_date_txt'] = 'Letzte Änderung'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_password_txt'] = 'Passwort (optional)'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | ?> |
| | | |
| | |
| | | $wb['ispconfig_update_title'] = 'ISPConfig 3 Update Anweisungen'; |
| | | $wb['ispconfig_update_text'] = 'Login as root user on the shell of your server and execute the command<br /><br /> <strong>ispconfig_update.sh</strong><br /><br />to start the ISPConfig update.<br /><br /><a href=http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-update-ispconfig-3/ target=_blank>Click here for detailed update instructins</a>'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['username_txt'] = "Benutzername"; |
| | | $wb['password_txt'] = "Passwort"; |
| | | $wb['function_txt'] = "Funktionen"; |
| | | $wb['username_error_unique'] = "Benutzername muss einzigartig sein"; |
| | | $wb['username_error_empty'] = "Benutzername darf nicht leer sein"; |
| | | $wb['password_error_empty'] = "Passwort darf nicht leer sein"; |
| | | $wb['password_strength_txt'] = "Passwortstärke:"; |
| | | $wb['Mail domain functions'] = "Mail Domain Funktionen"; |
| | | $wb['Mail user functions'] = "Mail Benutzer Funktionen"; |
| | | $wb['Mail alias functions'] = "Mail Alias Funktionen"; |
| | | $wb['Mail forward functions'] = "Mail Weiterleitung Funktionen"; |
| | | $wb['Mail catchall functions'] = "Mail Catchall Funktionen"; |
| | | $wb['Mail transport functions'] = "Mail Transport Funktionen"; |
| | | $wb['Mail whitelist functions'] = "Mail Whitelist Funktionen"; |
| | | $wb['Mail blacklist functions'] = "Mail Blacklist Funktionen"; |
| | | $wb['Mail spamfilter user functions'] = "Mail Spamfilter Benutzer Funktionen"; |
| | | $wb['Mail spamfilter policy functions'] = "Mail Spamfilter Richtlinien Funktionen"; |
| | | $wb['Mail fetchmail functions'] = "Mail Fetchmail Funktionen"; |
| | | $wb['Mail user filter functions'] = "Mail Benutzer Filter Funktionen"; |
| | | $wb['Mail filter functions'] = "Mail Filter Funktionen"; |
| | | $wb['Client functions'] = "Kunden Funktionen"; |
| | | $wb['Sites cron functions'] = "Webseiten Cron Funktionen"; |
| | | $wb['Sites database functions'] = "Webseiten Datenbanken Funktionen"; |
| | | $wb['Sites FTP-User functions'] = "Webseiten FTP Benutzer Funktionen"; |
| | | $wb['Sites Shell-User functions'] = "Webseiten Shell Benutzer Funktionen"; |
| | | $wb['Sites Domain functions'] = "Webseiten Domain Funktionen"; |
| | | $wb['Sites Aliasdomain functions'] = "Webseiten Aliasdomain Funktionen"; |
| | | $wb['Sites Subdomain functions'] = "Webseiten Subdomain Funktionen"; |
| | | $wb['DNS zone functions'] = "DNS Zone Funktionen"; |
| | | $wb['DNS a functions'] = "DNS a Funktionen"; |
| | | $wb['DNS aaaa functions'] = "DNS aaaa Funktionen"; |
| | | $wb['DNS alias functions'] = "DNS Alias Funktionen"; |
| | | $wb['DNS cname functions'] = "DNS cname Funktionen"; |
| | | $wb['DNS hinfo functions'] = "DNS hinfo Funktionen"; |
| | | $wb['DNS mx functions'] = "DNS mx Funktionen"; |
| | | $wb['DNS ns functions'] = "DNS ns Funktionen"; |
| | | $wb['DNS ptr functions'] = "DNS ptr Funktionen"; |
| | | $wb['DNS rp functions'] = "DNS rp Funktionen"; |
| | | $wb['DNS srv functions'] = "DNS srv Funktionen"; |
| | | $wb['DNS txt functions'] = "DNS txt Funktionen"; |
| | | $wb['Mail mailing list functions'] = "Mail Mailinglisten Funktionen"; |
| | | $wb['generate_password_txt'] = "Passwort erzeugen"; |
| | | $wb['repeat_password_txt'] = "Passwort wiederholen"; |
| | | $wb['password_mismatch_txt'] = "Die Passwörter stimmen nicht überein."; |
| | | $wb['password_match_txt'] = "Die Passwörter stimmen überein."; |
| | | $wb['username_txt'] = 'Benutzername'; |
| | | $wb['password_txt'] = 'Passwort'; |
| | | $wb['function_txt'] = 'Funktionen'; |
| | | $wb['username_error_unique'] = 'Benutzername muss einzigartig sein'; |
| | | $wb['username_error_empty'] = 'Benutzername darf nicht leer sein'; |
| | | $wb['password_error_empty'] = 'Passwort darf nicht leer sein'; |
| | | $wb['password_strength_txt'] = 'Passwortstärke:'; |
| | | $wb['Mail domain functions'] = 'Mail Domain Funktionen'; |
| | | $wb['Mail user functions'] = 'Mail Benutzer Funktionen'; |
| | | $wb['Mail alias functions'] = 'Mail Alias Funktionen'; |
| | | $wb['Mail forward functions'] = 'Mail Weiterleitung Funktionen'; |
| | | $wb['Mail catchall functions'] = 'Mail Catchall Funktionen'; |
| | | $wb['Mail transport functions'] = 'Mail Transport Funktionen'; |
| | | $wb['Mail whitelist functions'] = 'Mail Whitelist Funktionen'; |
| | | $wb['Mail blacklist functions'] = 'Mail Blacklist Funktionen'; |
| | | $wb['Mail spamfilter user functions'] = 'Mail Spamfilter Benutzer Funktionen'; |
| | | $wb['Mail spamfilter policy functions'] = 'Mail Spamfilter Richtlinien Funktionen'; |
| | | $wb['Mail fetchmail functions'] = 'Mail Fetchmail Funktionen'; |
| | | $wb['Mail user filter functions'] = 'Mail Benutzer Filter Funktionen'; |
| | | $wb['Mail filter functions'] = 'Mail Filter Funktionen'; |
| | | $wb['Client functions'] = 'Kunden Funktionen'; |
| | | $wb['Sites cron functions'] = 'Webseiten Cron Funktionen'; |
| | | $wb['Sites database functions'] = 'Webseiten Datenbanken Funktionen'; |
| | | $wb['Sites FTP-User functions'] = 'Webseiten FTP Benutzer Funktionen'; |
| | | $wb['Sites Shell-User functions'] = 'Webseiten Shell Benutzer Funktionen'; |
| | | $wb['Sites Domain functions'] = 'Webseiten Domain Funktionen'; |
| | | $wb['Sites Aliasdomain functions'] = 'Webseiten Aliasdomain Funktionen'; |
| | | $wb['Sites Subdomain functions'] = 'Webseiten Subdomain Funktionen'; |
| | | $wb['DNS zone functions'] = 'DNS Zone Funktionen'; |
| | | $wb['DNS a functions'] = 'DNS a Funktionen'; |
| | | $wb['DNS aaaa functions'] = 'DNS aaaa Funktionen'; |
| | | $wb['DNS alias functions'] = 'DNS Alias Funktionen'; |
| | | $wb['DNS cname functions'] = 'DNS cname Funktionen'; |
| | | $wb['DNS hinfo functions'] = 'DNS hinfo Funktionen'; |
| | | $wb['DNS mx functions'] = 'DNS mx Funktionen'; |
| | | $wb['DNS ns functions'] = 'DNS ns Funktionen'; |
| | | $wb['DNS ptr functions'] = 'DNS ptr Funktionen'; |
| | | $wb['DNS rp functions'] = 'DNS rp Funktionen'; |
| | | $wb['DNS srv functions'] = 'DNS srv Funktionen'; |
| | | $wb['DNS txt functions'] = 'DNS txt Funktionen'; |
| | | $wb['Mail mailing list functions'] = 'Mail Mailinglisten Funktionen'; |
| | | $wb['generate_password_txt'] = 'Passwort erzeugen'; |
| | | $wb['repeat_password_txt'] = 'Passwort wiederholen'; |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Remote Benutzer"; |
| | | $wb['list_desc_txt'] = "Remote Benutzer hinzufügen"; |
| | | $wb['add_new_record_txt'] = "Neuen Benutzer hinzufügen"; |
| | | $wb['parent_remote_userid_txt'] = "Benutzer ID"; |
| | | $wb['username_txt'] = "Benutzername"; |
| | | $wb['list_head_txt'] = 'Remote Benutzer'; |
| | | $wb['list_desc_txt'] = 'Remote Benutzer hinzufügen'; |
| | | $wb['add_new_record_txt'] = 'Neuen Benutzer hinzufügen'; |
| | | $wb['parent_remote_userid_txt'] = 'Benutzer ID'; |
| | | $wb['username_txt'] = 'Benutzername'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['config_txt'] = "Konfiguration"; |
| | | $wb['server_name_txt'] = "Servername"; |
| | | $wb['mail_server_txt'] = "Mailserver"; |
| | | $wb['web_server_txt'] = "Webserver"; |
| | | $wb['dns_server_txt'] = "DNS Server"; |
| | | $wb['file_server_txt'] = "Dateiserver"; |
| | | $wb['db_server_txt'] = "Datenbankserver"; |
| | | $wb['vserver_server_txt'] = "VServer Server"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['mirror_server_id_txt'] = "Ist Mirror von Server"; |
| | | $wb['- None -'] = "- Nichts -"; |
| | | $wb['proxy_server_txt'] = "Proxy Server"; |
| | | $wb['firewall_server_txt'] = "Firewall Server"; |
| | | $wb['config_txt'] = 'Konfiguration'; |
| | | $wb['server_name_txt'] = 'Servername'; |
| | | $wb['mail_server_txt'] = 'Mailserver'; |
| | | $wb['web_server_txt'] = 'Webserver'; |
| | | $wb['dns_server_txt'] = 'DNS Server'; |
| | | $wb['file_server_txt'] = 'Dateiserver'; |
| | | $wb['db_server_txt'] = 'Datenbankserver'; |
| | | $wb['vserver_server_txt'] = 'VServer Server'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['mirror_server_id_txt'] = 'Ist Mirror von Server'; |
| | | $wb['- None -'] = '- Nichts -'; |
| | | $wb['proxy_server_txt'] = 'Proxy Server'; |
| | | $wb['firewall_server_txt'] = 'Firewall Server'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit Chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit Chroot Anwendungsbereiche"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit Chrooted Anwendungen"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit Cron Chrooted Anwendungen"; |
| | | $wb['website_path_txt'] = "Webseiten Pfad"; |
| | | $wb['website_symlinks_txt'] = "Webseiten Symlinks"; |
| | | $wb['website_symlinks_rel_txt'] = "Erstelle relative Symlinks"; |
| | | $wb['vhost_conf_dir_txt'] = "vHost Konfigurationsverzeichnis"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "vHost config enabled dir"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail Konfigurationsverzeichnis"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI Starter Pfad"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI Starter Script"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini Pfad"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. Anfragen"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Modul"; |
| | | $wb['maildir_path_txt'] = "Maildir Pfad"; |
| | | $wb['homedir_path_txt'] = "Homedir Pfad"; |
| | | $wb['mailuser_uid_txt'] = "Mailbenutzer UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailbenutzer GID"; |
| | | $wb['mailuser_name_txt'] = "Mailbenutzer Name"; |
| | | $wb['mailuser_group_txt'] = "Mailbenutzer Gruppe"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost Benutzer"; |
| | | $wb['relayhost_password_txt'] = "Relayhost Passwort"; |
| | | $wb['mailbox_size_limit_txt'] = "Mailboxgrößen Limit"; |
| | | $wb['message_size_limit_txt'] = "Nachrichtengrößen Limit"; |
| | | $wb['ip_address_txt'] = "IP Adresse"; |
| | | $wb['netmask_txt'] = "Netzmaske"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameserver"; |
| | | $wb['auto_network_configuration_txt'] = "Netzwerkkonfiguration"; |
| | | $wb['website_basedir_txt'] = "Webseiten basedir"; |
| | | $wb['website_autoalias_txt'] = "Webseiten Autoalias"; |
| | | $wb['website_autoalias_note_txt'] = "Platzhalter:"; |
| | | $wb['ip_address_error_wrong'] = "Ungültiges IP Adressen Format."; |
| | | $wb['netmask_error_wrong'] = "Ungültiges Netzmasken Format."; |
| | | $wb['gateway_error_wrong'] = "Ungültiges Gateway Format."; |
| | | $wb['hostname_error_empty'] = "Hostname ist leer."; |
| | | $wb['nameservers_error_empty'] = "Nameserver ist leer."; |
| | | $wb['config_dir_txt'] = "Konfigurationsverzeichnis"; |
| | | $wb['init_script_txt'] = "Cron init Script Name"; |
| | | $wb['crontab_dir_txt'] = "Pfad für individuelle Crontabs"; |
| | | $wb['wget_txt'] = "Pfad zum wget Programm"; |
| | | $wb['web_user_txt'] = "Apache Benutzer"; |
| | | $wb['web_group_txt'] = "Apache Gruppe"; |
| | | $wb['security_level_txt'] = "Sicherheitslevel"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps vHost Port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps vHost IP Adresse"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps vHost Domain"; |
| | | $wb['bind_user_txt'] = "BIND Benutzer"; |
| | | $wb['bind_group_txt'] = "BIND Gruppe"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND Zonefiles Verzeichnis"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf Pfad"; |
| | | $wb['bind_user_error_empty'] = "BIND Benutzer ist leer."; |
| | | $wb['bind_group_error_empty'] = "BIND Gruppe ist leer."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND Zonefiles Verzeichnis ist leer."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf Pfad ist leer."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local Pfad ist leer."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Dämon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir ist leer."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride ist leer."; |
| | | $wb['awstats_conf_dir_txt'] = "AWStats Konfigurationsverzeichnis"; |
| | | $wb['awstats_data_dir_txt'] = "AWStats Datenverzeichnis"; |
| | | $wb['awstats_pl_txt'] = "AWStats awstats.pl Script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "AWStats awstats_buildstaticpages.pl Script"; |
| | | $wb['backup_dir_txt'] = "Backupverzeichnis"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local Pfad"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini Pfad"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini Pfad"; |
| | | $wb['check_apache_config_txt'] = "Teste Apache Konfiguration beim Neustart"; |
| | | $wb['CA_path_txt'] = "CA Pfad"; |
| | | $wb['CA_pass_txt'] = "CA Passwort"; |
| | | $wb['ufw_enable_txt'] = "Aktivieren"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Aktiviere IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Loglevel"; |
| | | $wb['network_config_warning_txt'] = "Die Netzwerk Konfiguration Option ist nur auf Debian- und Ubuntu Servern verfügbar. Aktivieren Sie diese Option nicht, falls Ihr Netzwerk Interface nicht eth0 heißt."; |
| | | $wb['server_type_txt'] = "Server Typ"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx vHost Konfigurations Verzeichnis"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx Benutzer"; |
| | | $wb['nginx_group_txt'] = "Nginx Gruppe"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup Verzeichnis ist leer."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Pfad ist leer."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Pfad ist leer."; |
| | | $wb['mailuser_uid_error_empty'] = "Mail Benutzer UID ist leer."; |
| | | $wb['mailuser_gid_error_empty'] = "Mail Benutzer GID ist leer."; |
| | | $wb['mailuser_name_error_empty'] = "Mail Benutzer Name ist leer."; |
| | | $wb['mailuser_group_error_empty'] = "Mail Benutzer Gruppe ist leer."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir ist leer."; |
| | | $wb['website_basedir_error_empty'] = "Webseiten basedir ist leer."; |
| | | $wb['website_path_error_empty'] = "Webseiten Pfad ist leer."; |
| | | $wb['website_symlinks_error_empty'] = "Webseiten Symlinks ist leer."; |
| | | $wb['vhost_conf_dir_error_empty'] = "vHost config dir ist leer."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "vHost config enabled dir ist leer."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx vHost config dir ist leer."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx vHost config enabled dir ist leer."; |
| | | $wb['apache_user_error_empty'] = "Apache Benutzer ist leer."; |
| | | $wb['apache_group_error_empty'] = "Apache Grupp ist leer."; |
| | | $wb['nginx_user_error_empty'] = "Nginx Benutzer ist leer."; |
| | | $wb['nginx_group_error_empty'] = "Nginx Gruppe ist leer."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini Pfad ist leer."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini Pfad ist leer."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket ist leer."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps vHost Port ist leer."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps vHost IP Adresse ist leer."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI Starter Pfad ist leer."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI Starter Script ist leer."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias ist leer."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Pfad ist leer."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children ist leer."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests ist leer."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin ist leer."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit Chroot home ist leer."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit Chroot Anwendungsbereiche ist leer."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit Chrooted Anwendungen ist leer."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit Cron Chrooted Anwendungen ist leer."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config Verzeichnis ist leer."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init Script Name ist leer."; |
| | | $wb['crontab_dir_error_empty'] = "Pfad für individuelle Crontabs ist leer."; |
| | | $wb['cron_wget_error_empty'] = "Pfad zum wget Programm ist leer."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM Init Script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM Init Script ist leer."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini Pfad"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini Pfad ist leer."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM Pool Verzeichnis"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM Pool Verzeichnis ist leer."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM Start Port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM Start Port ist leer."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM Socket Verzeichnis"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM Socket Verzeichnis ist leer."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI Konfigurations Syntax"; |
| | | $wb['try_rescue_txt'] = "Aktiviere Service Monitoring und Neustart bei Unerreichbarkeit"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Deaktiviere HTTPD Monitoring"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Deaktiviere MySQL Monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Deaktiviere E-Mail Monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> Falls Sie MySQL stoppen möchten, wählen Sie die "; |
| | | $wb['enable_sni_txt'] = "Aktiviere SNI"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Verzeichnisberechtigungen beim Update setzen"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Webbenutzer zur -sshusers- hinzufügen"; |
| | | $wb['connect_userid_to_webid_txt'] = "Linux Userid mit webid verknüpfen"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID für userid/webid Verknüpfung"; |
| | | $wb['realtime_blackhole_list_txt'] = "Realtime Blackhole Liste"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(RBL's mit Kommas trennen)"; |
| | | $wb['ssl_settings_txt'] = "SSL Einstellungen"; |
| | | $wb['permissions_txt'] = "Berechtigungen"; |
| | | $wb['php_settings_txt'] = "PHP Einstellungen"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps vHost Einstellungen"; |
| | | $wb['awstats_settings_txt'] = "AWStats Einstellungen"; |
| | | $wb['backup_mode_txt'] = "Backupmodus"; |
| | | $wb['backup_mode_userzip'] = "Backup Dateien gehören dem Web Benutzer (ZIP-Datei)"; |
| | | $wb['backup_mode_rootgz'] = "Backup aller Dateien des Webverzeichnisses als Root Benutzer"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailboxbeschränkung Statistiken"; |
| | | $wb['enable_ip_wildcard_txt'] = "IP Adressen Wildcard (*) aktivieren"; |
| | | $wb['web_folder_protection_txt'] = "Webverzeichnis unveränderlich machen (erweiterte Attribute)"; |
| | | $wb['overtraffic_notify_admin_txt'] = "Überschreiten des Transfer Limits an den Administrator senden"; |
| | | $wb['overtraffic_notify_client_txt'] = "Überschreiten des Transfer Limits an den Kunden senden"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit Chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit Chroot Anwendungsbereiche'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit Chrooted Anwendungen'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit Cron Chrooted Anwendungen'; |
| | | $wb['website_path_txt'] = 'Webseiten Pfad'; |
| | | $wb['website_symlinks_txt'] = 'Webseiten Symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Erstelle relative Symlinks'; |
| | | $wb['vhost_conf_dir_txt'] = 'vHost Konfigurationsverzeichnis'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'vHost config enabled dir'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail Konfigurationsverzeichnis'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI Starter Pfad'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI Starter Script'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini Pfad'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. Anfragen'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['maildir_path_txt'] = 'Maildir Pfad'; |
| | | $wb['homedir_path_txt'] = 'Homedir Pfad'; |
| | | $wb['mailuser_uid_txt'] = 'Mailbenutzer UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailbenutzer GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailbenutzer Name'; |
| | | $wb['mailuser_group_txt'] = 'Mailbenutzer Gruppe'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost Benutzer'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Passwort'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mailboxgrößen Limit'; |
| | | $wb['message_size_limit_txt'] = 'Nachrichtengrößen Limit'; |
| | | $wb['ip_address_txt'] = 'IP Adresse'; |
| | | $wb['netmask_txt'] = 'Netzmaske'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameserver'; |
| | | $wb['auto_network_configuration_txt'] = 'Netzwerkkonfiguration'; |
| | | $wb['website_basedir_txt'] = 'Webseiten basedir'; |
| | | $wb['website_autoalias_txt'] = 'Webseiten Autoalias'; |
| | | $wb['website_autoalias_note_txt'] = 'Platzhalter:'; |
| | | $wb['ip_address_error_wrong'] = 'Ungültiges IP Adressen Format.'; |
| | | $wb['netmask_error_wrong'] = 'Ungültiges Netzmasken Format.'; |
| | | $wb['gateway_error_wrong'] = 'Ungültiges Gateway Format.'; |
| | | $wb['hostname_error_empty'] = 'Hostname ist leer.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver ist leer.'; |
| | | $wb['config_dir_txt'] = 'Konfigurationsverzeichnis'; |
| | | $wb['init_script_txt'] = 'Cron init Script Name'; |
| | | $wb['crontab_dir_txt'] = 'Pfad für individuelle Crontabs'; |
| | | $wb['wget_txt'] = 'Pfad zum wget Programm'; |
| | | $wb['web_user_txt'] = 'Apache Benutzer'; |
| | | $wb['web_group_txt'] = 'Apache Gruppe'; |
| | | $wb['security_level_txt'] = 'Sicherheitslevel'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps vHost Port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps vHost IP Adresse'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps vHost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND Benutzer'; |
| | | $wb['bind_group_txt'] = 'BIND Gruppe'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND Zonefiles Verzeichnis'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf Pfad'; |
| | | $wb['bind_user_error_empty'] = 'BIND Benutzer ist leer.'; |
| | | $wb['bind_group_error_empty'] = 'BIND Gruppe ist leer.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND Zonefiles Verzeichnis ist leer.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf Pfad ist leer.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local Pfad ist leer.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Dämon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir ist leer.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride ist leer.'; |
| | | $wb['awstats_conf_dir_txt'] = 'AWStats Konfigurationsverzeichnis'; |
| | | $wb['awstats_data_dir_txt'] = 'AWStats Datenverzeichnis'; |
| | | $wb['awstats_pl_txt'] = 'AWStats awstats.pl Script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'AWStats awstats_buildstaticpages.pl Script'; |
| | | $wb['backup_dir_txt'] = 'Backupverzeichnis'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local Pfad'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini Pfad'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini Pfad'; |
| | | $wb['check_apache_config_txt'] = 'Teste Apache Konfiguration beim Neustart'; |
| | | $wb['CA_path_txt'] = 'CA Pfad'; |
| | | $wb['CA_pass_txt'] = 'CA Passwort'; |
| | | $wb['ufw_enable_txt'] = 'Aktivieren'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Aktiviere IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Loglevel'; |
| | | $wb['network_config_warning_txt'] = 'Die Netzwerk Konfiguration Option ist nur auf Debian- und Ubuntu Servern verfügbar. Aktivieren Sie diese Option nicht, falls Ihr Netzwerk Interface nicht eth0 heißt.'; |
| | | $wb['server_type_txt'] = 'Server Typ'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx vHost Konfigurations Verzeichnis'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx Benutzer'; |
| | | $wb['nginx_group_txt'] = 'Nginx Gruppe'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup Verzeichnis ist leer.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Pfad ist leer.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Pfad ist leer.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mail Benutzer UID ist leer.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mail Benutzer GID ist leer.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mail Benutzer Name ist leer.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mail Benutzer Gruppe ist leer.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir ist leer.'; |
| | | $wb['website_basedir_error_empty'] = 'Webseiten basedir ist leer.'; |
| | | $wb['website_path_error_empty'] = 'Webseiten Pfad ist leer.'; |
| | | $wb['website_symlinks_error_empty'] = 'Webseiten Symlinks ist leer.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'vHost config dir ist leer.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'vHost config enabled dir ist leer.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx vHost config dir ist leer.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx vHost config enabled dir ist leer.'; |
| | | $wb['apache_user_error_empty'] = 'Apache Benutzer ist leer.'; |
| | | $wb['apache_group_error_empty'] = 'Apache Grupp ist leer.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx Benutzer ist leer.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx Gruppe ist leer.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini Pfad ist leer.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini Pfad ist leer.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket ist leer.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps vHost Port ist leer.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps vHost IP Adresse ist leer.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI Starter Pfad ist leer.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI Starter Script ist leer.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias ist leer.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Pfad ist leer.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children ist leer.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests ist leer.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin ist leer.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit Chroot home ist leer.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit Chroot Anwendungsbereiche ist leer.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit Chrooted Anwendungen ist leer.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit Cron Chrooted Anwendungen ist leer.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config Verzeichnis ist leer.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init Script Name ist leer.'; |
| | | $wb['crontab_dir_error_empty'] = 'Pfad für individuelle Crontabs ist leer.'; |
| | | $wb['cron_wget_error_empty'] = 'Pfad zum wget Programm ist leer.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM Init Script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM Init Script ist leer.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini Pfad'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini Pfad ist leer.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM Pool Verzeichnis'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM Pool Verzeichnis ist leer.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM Start Port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM Start Port ist leer.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM Socket Verzeichnis'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM Socket Verzeichnis ist leer.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI Konfigurations Syntax'; |
| | | $wb['try_rescue_txt'] = 'Aktiviere Service Monitoring und Neustart bei Unerreichbarkeit'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Deaktiviere HTTPD Monitoring'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Deaktiviere MySQL Monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Deaktiviere E-Mail Monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> Falls Sie MySQL stoppen möchten, wählen Sie die '; |
| | | $wb['enable_sni_txt'] = 'Aktiviere SNI'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Verzeichnisberechtigungen beim Update setzen'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Webbenutzer zur -sshusers- hinzufügen'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Linux Userid mit webid verknüpfen'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID für userid/webid Verknüpfung'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Realtime Blackhole Liste'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(RBL\'s mit Kommas trennen)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Einstellungen'; |
| | | $wb['permissions_txt'] = 'Berechtigungen'; |
| | | $wb['php_settings_txt'] = 'PHP Einstellungen'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps vHost Einstellungen'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Einstellungen'; |
| | | $wb['backup_mode_txt'] = 'Backupmodus'; |
| | | $wb['backup_mode_userzip'] = 'Backup Dateien gehören dem Web Benutzer (ZIP-Datei)'; |
| | | $wb['backup_mode_rootgz'] = 'Backup aller Dateien des Webverzeichnisses als Root Benutzer'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailboxbeschränkung Statistiken'; |
| | | $wb['enable_ip_wildcard_txt'] = 'IP Adressen Wildcard (*) aktivieren'; |
| | | $wb['web_folder_protection_txt'] = 'Webverzeichnis unveränderlich machen (erweiterte Attribute)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Überschreiten des Transfer Limits an den Administrator senden'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Überschreiten des Transfer Limits an den Kunden senden'; |
| | | ?> |
| | | |
| | |
| | | $wb['list_head_txt'] = 'Serverkonfiguration'; |
| | | $wb['server_name_txt'] = 'Server'; |
| | | ?> |
| | | |
| | |
| | | $wb['virtualhost_port_txt'] = 'HTTP Ports'; |
| | | $wb['error_port_syntax'] = 'Ungültige Zeichen im Ports Feld. Bitte geben Sie nur komma-separierte Nummern an. Beispiel: 80,443'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "IP Adressen"; |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['ip_address_txt'] = "IP Adresse"; |
| | | $wb['add_new_record_txt'] = "Neue IP Adresse hinzufügen"; |
| | | $wb['client_id_txt'] = "Kunde"; |
| | | $wb['virtualhost_txt'] = "HTTP vHost"; |
| | | $wb['virtualhost_port_txt'] = "HTTP Ports"; |
| | | $wb['ip_type_txt'] = "Typ"; |
| | | $wb['list_head_txt'] = 'IP Adressen'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP Adresse'; |
| | | $wb['add_new_record_txt'] = 'Neue IP Adresse hinzufügen'; |
| | | $wb['client_id_txt'] = 'Kunde'; |
| | | $wb['virtualhost_txt'] = 'HTTP vHost'; |
| | | $wb['virtualhost_port_txt'] = 'HTTP Ports'; |
| | | $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'] = "Kunde"; |
| | | $wb['name_txt'] = "PHP Name"; |
| | | $wb['Name'] = "Name"; |
| | | $wb['FastCGI Settings'] = "FastCGI Einstellungen"; |
| | | $wb['PHP-FPM Settings'] = "PHP-FPM Einstellungen"; |
| | | $wb['Additional PHP Versions'] = "Zusätzliche PHP Versionen"; |
| | | $wb['Form to edit additional PHP versions'] = "Formular, um zusätzliche PHP Versionen hinzuzufügen"; |
| | | $wb['server_php_name_error_empty'] = "Das Name Feld darf nicht leer sein."; |
| | | $wb['php_fastcgi_binary_txt'] = "Pfad zum PHP FastCGI Binary"; |
| | | $wb['php_fastcgi_ini_dir_txt'] = "Pfad zum php.ini Verzeichnis"; |
| | | $wb['php_fpm_init_script_txt'] = "Pfad zum PHP-FPM Init Script"; |
| | | $wb['php_fpm_ini_dir_txt'] = "Pfad zum php.ini Verzeichnis"; |
| | | $wb['php_fpm_pool_dir_txt'] = "Pfad zum PHP-FPM Pool Verzeichnis"; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['client_id_txt'] = 'Kunde'; |
| | | $wb['name_txt'] = 'PHP Name'; |
| | | $wb['Name'] = 'Name'; |
| | | $wb['FastCGI Settings'] = 'FastCGI Einstellungen'; |
| | | $wb['PHP-FPM Settings'] = 'PHP-FPM Einstellungen'; |
| | | $wb['Additional PHP Versions'] = 'Zusätzliche PHP Versionen'; |
| | | $wb['Form to edit additional PHP versions'] = 'Formular, um zusätzliche PHP Versionen hinzuzufügen'; |
| | | $wb['server_php_name_error_empty'] = 'Das Name Feld darf nicht leer sein.'; |
| | | $wb['php_fastcgi_binary_txt'] = 'Pfad zum PHP FastCGI Binary'; |
| | | $wb['php_fastcgi_ini_dir_txt'] = 'Pfad zum php.ini Verzeichnis'; |
| | | $wb['php_fpm_init_script_txt'] = 'Pfad zum PHP-FPM Init Script'; |
| | | $wb['php_fpm_ini_dir_txt'] = 'Pfad zum php.ini Verzeichnis'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Pfad zum PHP-FPM Pool Verzeichnis'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Zusätzliche PHP Versionen"; |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['add_new_record_txt'] = "Neue PHP Version hinzufügen"; |
| | | $wb['client_id_txt'] = "Kunde"; |
| | | $wb['name_txt'] = "PHP Name"; |
| | | $wb['list_head_txt'] = 'Zusätzliche PHP Versionen'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['add_new_record_txt'] = 'Neue PHP Version hinzufügen'; |
| | | $wb['client_id_txt'] = 'Kunde'; |
| | | $wb['name_txt'] = 'PHP Name'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Installation starten'; |
| | | $wb['btn_cancel_txt'] = 'Abbrechen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Softwarepakete"; |
| | | $wb['installed_txt'] = "Status"; |
| | | $wb['package_title_txt'] = "Paket"; |
| | | $wb['package_description_txt'] = "Beschreibung"; |
| | | $wb['action_txt'] = "Aktion"; |
| | | $wb['toolsarea_head_txt'] = "Pakete"; |
| | | $wb['repoupdate_txt'] = "Softwarepakete Liste updaten"; |
| | | $wb['package_id_txt'] = "Lokale App ID"; |
| | | $wb['list_head_txt'] = 'Softwarepakete'; |
| | | $wb['installed_txt'] = 'Status'; |
| | | $wb['package_title_txt'] = 'Paket'; |
| | | $wb['package_description_txt'] = 'Beschreibung'; |
| | | $wb['action_txt'] = 'Aktion'; |
| | | $wb['toolsarea_head_txt'] = 'Pakete'; |
| | | $wb['repoupdate_txt'] = 'Softwarepakete Liste updaten'; |
| | | $wb['package_id_txt'] = 'Lokale App ID'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_password_txt'] = 'Passwort (optional)'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_name_txt'] = 'Bibliothek'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | ?> |
| | | |
| | |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['action_txt'] = 'Aktion'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['system_config_desc_txt'] = "Systemkonfiguration"; |
| | | $wb['smtp_missing_admin_mail_txt'] = "Bitte geben Sie die Administrator E-Mail und den Namen ein, wenn Sie SMTP Versand nutzen wollen."; |
| | | $wb['warning'] = "Bearbeiten Sie diese Werte sorgfältig! Entfernen Sie die Prefixe nicht auf Systemen mit mehr als einem Client."; |
| | | $wb['tab_change_warning_txt'] = "Tab Wechsel Warnung"; |
| | | $wb['tab_change_discard_txt'] = "Verwerfe Änderungen bei Tab Wechsel"; |
| | | $wb['tab_change_warning_note_txt'] = "Zeigt eine Warnung an, wenn der Tab in einem Formular gewechselt wird und Daten geändert wurden."; |
| | | $wb['dbname_prefix_txt'] = "Datenbank Namen Präfix"; |
| | | $wb['dbuser_prefix_txt'] = "Datenbank Benutzer Präfix"; |
| | | $wb['shelluser_prefix_txt'] = "Shell Benutzer Präfix"; |
| | | $wb['ftpuser_prefix_txt'] = "FTP Benutzer Präfix"; |
| | | $wb['vhost_subdomains_txt'] = "Subdomains als Webseite anlegen"; |
| | | $wb['vhost_subdomains_note_txt'] = "Diese Einstellung kann nicht wieder deaktiviert werden, wenn Vhost Subdomains im System vorhanden sind!"; |
| | | $wb['dbname_prefix_error_regex'] = "Zeichen nicht erlaubt in Datenbank Namen Präfix."; |
| | | $wb['dbuser_prefix_error_regex'] = "Zeichen nicht erlaubt in Datenbank Benutzer Präfix."; |
| | | $wb['ftpuser_prefix_error_regex'] = "Zeichen nicht erlaubt in FTP Benutzer Präfix."; |
| | | $wb['shelluser_prefix_error_regex'] = "Zeichen nicht erlaubt in Shell Benutzer Präfix."; |
| | | $wb['dblist_phpmyadmin_link_txt'] = "Link zu phpMyAdmin in der Datenbankliste"; |
| | | $wb['mailboxlist_webmail_link_txt'] = "Link zu Webmail in der Mailboxliste"; |
| | | $wb['webmail_url_txt'] = "Webmail URL"; |
| | | $wb['phpmyadmin_url_txt'] = "phpMyAdmin URL"; |
| | | $wb['dashboard_atom_url_admin_txt'] = "Dashboard atom feed URL (für Admins)"; |
| | | $wb['dashboard_atom_url_reseller_txt'] = "Dashboard atom feed URL (für Reseller)"; |
| | | $wb['dashboard_atom_url_client_txt'] = "Dashboard atom feed URL (für Kunden)"; |
| | | $wb['webdavuser_prefix_txt'] = "WebDAV Benutzer Präfix"; |
| | | $wb['webdavuser_prefix_error_regex'] = "Zeichen nicht zulässig im WebDAV Benutzer Präfix."; |
| | | $wb['use_domain_module_txt'] = "Das Domain Modul benutzen, um neue Domains hinzuzufügen"; |
| | | $wb['use_domain_module_hint'] = "Falls Sie dieses Modul benutzen, können Ihre Kunden nur eine der Domains auswählen, die der Admin für sie angelegt hat. Die Kunden können das Domain-Feld nicht frei editieren. Sie müssen sich neu einloggen, wenn Sie diesen Wert ändern."; |
| | | $wb['new_domain_txt'] = "HTML Text zum Anlegen einer neuen Domain"; |
| | | $wb['webftp_url_txt'] = "WebFTP URL"; |
| | | $wb['enable_custom_login_txt'] = "Abweichenden Login Namen erlauben"; |
| | | $wb['mailmailinglist_link_txt'] = "Link zur Mailingliste in der Mailinglisten Übersicht"; |
| | | $wb['mailmailinglist_url_txt'] = "Mailinglisten URL"; |
| | | $wb['admin_mail_txt'] = "Administrator E-Mail"; |
| | | $wb['monitor_key_txt'] = "ISPConfig Monitor App Passwort"; |
| | | $wb['admin_name_txt'] = "Name des Administrators"; |
| | | $wb['maintenance_mode_txt'] = "Wartungsmodus"; |
| | | $wb['smtp_enabled_txt'] = "SMTP zum System Mailversand nutzen"; |
| | | $wb['smtp_host_txt'] = "SMTP Server"; |
| | | $wb['smtp_port_txt'] = "SMTP Port"; |
| | | $wb['smtp_user_txt'] = "SMTP Benutzer"; |
| | | $wb['smtp_pass_txt'] = "SMTP Passwort"; |
| | | $wb['smtp_crypt_txt'] = "SSL/TLS verschlüsselte Verbindung für SMTP"; |
| | | $wb['system_config_desc_txt'] = 'Systemkonfiguration'; |
| | | $wb['smtp_missing_admin_mail_txt'] = 'Bitte geben Sie die Administrator E-Mail und den Namen ein, wenn Sie SMTP Versand nutzen wollen.'; |
| | | $wb['warning'] = 'Bearbeiten Sie diese Werte sorgfältig! Entfernen Sie die Prefixe nicht auf Systemen mit mehr als einem Client.'; |
| | | $wb['tab_change_warning_txt'] = 'Tab Wechsel Warnung'; |
| | | $wb['tab_change_discard_txt'] = 'Verwerfe Änderungen bei Tab Wechsel'; |
| | | $wb['tab_change_warning_note_txt'] = 'Zeigt eine Warnung an, wenn der Tab in einem Formular gewechselt wird und Daten geändert wurden.'; |
| | | $wb['dbname_prefix_txt'] = 'Datenbank Namen Präfix'; |
| | | $wb['dbuser_prefix_txt'] = 'Datenbank Benutzer Präfix'; |
| | | $wb['shelluser_prefix_txt'] = 'Shell Benutzer Präfix'; |
| | | $wb['ftpuser_prefix_txt'] = 'FTP Benutzer Präfix'; |
| | | $wb['vhost_subdomains_txt'] = 'Subdomains als Webseite anlegen'; |
| | | $wb['vhost_subdomains_note_txt'] = 'Diese Einstellung kann nicht wieder deaktiviert werden, wenn Vhost Subdomains im System vorhanden sind!'; |
| | | $wb['dbname_prefix_error_regex'] = 'Zeichen nicht erlaubt in Datenbank Namen Präfix.'; |
| | | $wb['dbuser_prefix_error_regex'] = 'Zeichen nicht erlaubt in Datenbank Benutzer Präfix.'; |
| | | $wb['ftpuser_prefix_error_regex'] = 'Zeichen nicht erlaubt in FTP Benutzer Präfix.'; |
| | | $wb['shelluser_prefix_error_regex'] = 'Zeichen nicht erlaubt in Shell Benutzer Präfix.'; |
| | | $wb['dblist_phpmyadmin_link_txt'] = 'Link zu phpMyAdmin in der Datenbankliste'; |
| | | $wb['mailboxlist_webmail_link_txt'] = 'Link zu Webmail in der Mailboxliste'; |
| | | $wb['webmail_url_txt'] = 'Webmail URL'; |
| | | $wb['phpmyadmin_url_txt'] = 'phpMyAdmin URL'; |
| | | $wb['dashboard_atom_url_admin_txt'] = 'Dashboard atom feed URL (für Admins)'; |
| | | $wb['dashboard_atom_url_reseller_txt'] = 'Dashboard atom feed URL (für Reseller)'; |
| | | $wb['dashboard_atom_url_client_txt'] = 'Dashboard atom feed URL (für Kunden)'; |
| | | $wb['webdavuser_prefix_txt'] = 'WebDAV Benutzer Präfix'; |
| | | $wb['webdavuser_prefix_error_regex'] = 'Zeichen nicht zulässig im WebDAV Benutzer Präfix.'; |
| | | $wb['use_domain_module_txt'] = 'Das Domain Modul benutzen, um neue Domains hinzuzufügen'; |
| | | $wb['use_domain_module_hint'] = 'Falls Sie dieses Modul benutzen, können Ihre Kunden nur eine der Domains auswählen, die der Admin für sie angelegt hat. Die Kunden können das Domain-Feld nicht frei editieren. Sie müssen sich neu einloggen, wenn Sie diesen Wert ändern.'; |
| | | $wb['new_domain_txt'] = 'HTML Text zum Anlegen einer neuen Domain'; |
| | | $wb['webftp_url_txt'] = 'WebFTP URL'; |
| | | $wb['enable_custom_login_txt'] = 'Abweichenden Login Namen erlauben'; |
| | | $wb['mailmailinglist_link_txt'] = 'Link zur Mailingliste in der Mailinglisten Übersicht'; |
| | | $wb['mailmailinglist_url_txt'] = 'Mailinglisten URL'; |
| | | $wb['admin_mail_txt'] = 'Administrator E-Mail'; |
| | | $wb['monitor_key_txt'] = 'ISPConfig Monitor App Passwort'; |
| | | $wb['admin_name_txt'] = 'Name des Administrators'; |
| | | $wb['maintenance_mode_txt'] = 'Wartungsmodus'; |
| | | $wb['smtp_enabled_txt'] = 'SMTP zum System Mailversand nutzen'; |
| | | $wb['smtp_host_txt'] = 'SMTP Server'; |
| | | $wb['smtp_port_txt'] = 'SMTP Port'; |
| | | $wb['smtp_user_txt'] = 'SMTP Benutzer'; |
| | | $wb['smtp_pass_txt'] = 'SMTP Passwort'; |
| | | $wb['smtp_crypt_txt'] = 'SSL/TLS verschlüsselte Verbindung für SMTP'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['tpl_default_admin_head_txt'] = "Globale Standard Template Einstellungen"; |
| | | $wb['tpl_default_admin_desc_txt'] = "Globale Standard Template Einstellungen für Kunden"; |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['client_id_txt'] = "Kunde"; |
| | | $wb['name_txt'] = "PHP Name"; |
| | | $wb['Name'] = "Name"; |
| | | $wb['FastCGI Settings'] = "FastCGI Einstellungen"; |
| | | $wb['PHP-FPM Settings'] = "PHP-FPM Einstellungen"; |
| | | $wb['Additional PHP Versions'] = "Zusätzliche PHP Versionen"; |
| | | $wb['Form to edit additional PHP versions'] = "Formular, um zusätzliche PHP Versionen hinzuzufügen"; |
| | | $wb['server_php_name_error_empty'] = "Das Name Feld darf nicht leer sein."; |
| | | $wb['php_fastcgi_binary_txt'] = "Pfad zum PHP FastCGI Binary"; |
| | | $wb['php_fastcgi_ini_dir_txt'] = "Pfad zum php.ini Verzeichnis"; |
| | | $wb['php_fpm_init_script_txt'] = "Pfad zum PHP-FPM Init Script"; |
| | | $wb['php_fpm_ini_dir_txt'] = "Pfad zum php.ini Verzeichnis"; |
| | | $wb['php_fpm_pool_dir_txt'] = "Pfad zum PHP-FPM Pool Verzeichnis"; |
| | | $wb['tpl_default_admin_head_txt'] = 'Globale Standard Template Einstellungen'; |
| | | $wb['tpl_default_admin_desc_txt'] = 'Globale Standard Template Einstellungen für Kunden'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['client_id_txt'] = 'Kunde'; |
| | | $wb['name_txt'] = 'PHP Name'; |
| | | $wb['Name'] = 'Name'; |
| | | $wb['FastCGI Settings'] = 'FastCGI Einstellungen'; |
| | | $wb['PHP-FPM Settings'] = 'PHP-FPM Einstellungen'; |
| | | $wb['Additional PHP Versions'] = 'Zusätzliche PHP Versionen'; |
| | | $wb['Form to edit additional PHP versions'] = 'Formular, um zusätzliche PHP Versionen hinzuzufügen'; |
| | | $wb['server_php_name_error_empty'] = 'Das Name Feld darf nicht leer sein.'; |
| | | $wb['php_fastcgi_binary_txt'] = 'Pfad zum PHP FastCGI Binary'; |
| | | $wb['php_fastcgi_ini_dir_txt'] = 'Pfad zum php.ini Verzeichnis'; |
| | | $wb['php_fpm_init_script_txt'] = 'Pfad zum PHP-FPM Init Script'; |
| | | $wb['php_fpm_ini_dir_txt'] = 'Pfad zum php.ini Verzeichnis'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'Pfad zum PHP-FPM Pool Verzeichnis'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Neuen Benutzer hinzufügen'; |
| | | $wb['warning_txt'] = '<b>WARNUNG:</b> Bitte hier keine Benutzereinstellungen verändern. Benutzen Sie die Kunden- und Resellereinstellungen im Kundenmodul. Modifizieren der Benutzer oder Gruppen hier könnte zum Datenverlust führen!'; |
| | | ?> |
| | | |
| | |
| | | $wb['Remote Actions'] = 'Απομακρυσμένες Ενέργειες'; |
| | | $wb['Do OS-Update'] = 'Αναβάθμιση λειτουργικού συστήματος'; |
| | | $wb['Do ISPConfig-Update'] = 'Αναβάθμιση ISPConfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sections"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted applications"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applications"; |
| | | $wb['website_path_txt'] = "Διαδρομή Website"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks"; |
| | | $wb['website_symlinks_rel_txt'] = "Δημιουργία σχετικών symlinks"; |
| | | $wb['website_basedir_txt'] = "Βασικός φάκελος Website"; |
| | | $wb['vhost_conf_dir_txt'] = "Φάκελος ρυθμίσεων Vhost"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Φάκελος ρυθμίσεων (ενεργών) Vhost"; |
| | | $wb['getmail_config_dir_txt'] = "Φάκελος ρυθμίσεων Getmail"; |
| | | $wb['fastcgi_starter_path_txt'] = "Διαδρομή εκκίνησης FastCGI"; |
| | | $wb['fastcgi_starter_script_txt'] = "Script εκκίνησης FastCGI"; |
| | | $wb['fastcgi_alias_txt'] = "Ψευδώνυμο FastCGI"; |
| | | $wb['fastcgi_phpini_path_txt'] = "Διαδρομή FastCGI php.ini"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "Όριο πλήθους αιτήσεων FastCGI"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Άρθρωμα"; |
| | | $wb['maildir_path_txt'] = "Διαδρομή Maildir"; |
| | | $wb['homedir_path_txt'] = "Διαδρομή Homedir"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Όνομα Mailuser"; |
| | | $wb['mailuser_group_txt'] = "Ομάδα Mailuser"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Χρήστης Relayhost"; |
| | | $wb['relayhost_password_txt'] = "Συνθηματικό Relayhost"; |
| | | $wb['mailbox_size_limit_txt'] = "Όριο χώρου θυρίδας"; |
| | | $wb['message_size_limit_txt'] = "Μήνυμα ορίου χώρου"; |
| | | $wb['ip_address_txt'] = "Διεύθυνση IP"; |
| | | $wb['netmask_txt'] = "Μάσκα υποδικτύου"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameservers"; |
| | | $wb['auto_network_configuration_txt'] = "Ρυθμίσεις Δικτύου"; |
| | | $wb['ip_address_error_wrong'] = "Η μορφοποίηση της IP δεν είναι έγκυρη"; |
| | | $wb['netmask_error_wrong'] = "Η μορφοποίηση της μάσκας υποδικτύου δεν είναι έγκυρη."; |
| | | $wb['gateway_error_wrong'] = "Η μορφοποίηση της Gateway δεν είναι έγκυρη."; |
| | | $wb['hostname_error_empty'] = "Το Hostname δεν έχει οριστεί."; |
| | | $wb['nameservers_error_empty'] = "Ο Nameserver δεν έχει οριστεί."; |
| | | $wb['config_dir_txt'] = "Φάκελος Config"; |
| | | $wb['init_script_txt'] = "Όνομα αρχείου εκκίνησης Cron"; |
| | | $wb['crontab_dir_txt'] = "Διαδρομή για ανεξάρτητα crontabs"; |
| | | $wb['wget_txt'] = "Διαδρομή για το wget"; |
| | | $wb['web_user_txt'] = "Χρήστης Apache"; |
| | | $wb['web_group_txt'] = "Ομάδα Apache"; |
| | | $wb['security_level_txt'] = "Επίπεδο ασφαλείας"; |
| | | $wb['loglevel_txt'] = "Επίπεδο καταγραφής"; |
| | | $wb['apps_vhost_port_txt'] = "Θύρα του Apps-vhost"; |
| | | $wb['apps_vhost_ip_txt'] = "IP διεύθυνση του Apps-vhost"; |
| | | $wb['apps_vhost_servername_txt'] = "Domain του Apps-vhost"; |
| | | $wb['bind_user_txt'] = "Χρήστης BIND"; |
| | | $wb['bind_group_txt'] = "Ομάδα BIND"; |
| | | $wb['bind_zonefiles_dir_txt'] = "Φάκελος αρχείων ζωνών BIND"; |
| | | $wb['named_conf_path_txt'] = "Διαδρομη του named.conf του BIND "; |
| | | $wb['bind_user_error_empty'] = "Δεν δώσατε χρήστη BIND."; |
| | | $wb['bind_group_error_empty'] = "Δεν δώσατε ομάδα BIND."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "Ο φάκελος με τα zonefiles του BIND δεν έχει οριστεί."; |
| | | $wb['named_conf_path_error_empty'] = "Η διαδρομή για το named.conf του BIND δεν έχει οριστεί."; |
| | | $wb['named_conf_local_path_error_empty'] = "Η διαδρομή για το named.conf.local του BIND δεν έχει οριστεί."; |
| | | $wb['mail_filter_syntax_txt'] = "Συντακτικό Mailfilter"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "Το open_basedir της PHP δεν έχει οριστεί."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = "Το AllowOverride του .htaccess δεν έχει οριστεί."; |
| | | $wb['awstats_conf_dir_txt'] = "Φάκελος ρυθμίσεων του awstats"; |
| | | $wb['awstats_data_dir_txt'] = "Φάκελος δεδομένων του awstats"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Φάκελος Backup"; |
| | | $wb['named_conf_local_path_txt'] = "Διαδρομή του named.conf.local του BIND"; |
| | | $wb['php_ini_path_cgi_txt'] = "Διαδρομή του php.ini για CGI"; |
| | | $wb['php_ini_path_apache_txt'] = "Διαδρομή του php.ini για Apache"; |
| | | $wb['check_apache_config_txt'] = "Έλεγχος των ρυθμίσεων του apache ή επαννεκίνηση"; |
| | | $wb['CA_path_txt'] = "Διαδρομή CA"; |
| | | $wb['CA_pass_txt'] = "Συνθηματική φράση CA"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Διαχείριση ενσωματωμένων κανόνων"; |
| | | $wb['ufw_ipv6_txt'] = "Ενεργοποίηση IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Προκαθορισμένη Πολιτική Εισόδου"; |
| | | $wb['ufw_default_output_policy_txt'] = "Προκαθορισμένη Πολιτική Εξόδου"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Προκαθορισμένη Πολιτική Προώθησης"; |
| | | $wb['ufw_default_application_policy_txt'] = "Προκαθορισμένη Πολιτική Εφαρμογών"; |
| | | $wb['ufw_log_level_txt'] = "Επίπεδο Καταγραφής"; |
| | | $wb['network_config_warning_txt'] = "Η επιλογή για την παραμετροποίηση του δικτύου είναι διαθέσιμη μόνο για Debian και Ubuntu Servers. Μην ενεργοποιείτε αυτή την επιλογή αν η (διεπαφή) κάρτα δικτύου δεν είναι η eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Τύπος Server"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Χρήστης Nginx"; |
| | | $wb['nginx_group_txt'] = "Ομάδα Nginx"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Ο φάκελος Backup είναι άδειος."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Η διαδρομή για το wget δεν δόθηκε."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Ενεργοποίηση εποπτείας υπηρεσιών και επανεκκινησης σε περίπτωση αποτυχίας"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Απενεργοποίηση εποπτείας MySQL"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Απενεργοποίηση εποπτείας Email"; |
| | | $wb['rescue_description_txt'] = "<b>Πληροφορία:</b> Αν θέλετε να τερματίσετε την MySQL πρέπει να επιλέξετε την επιλογή Απενεργοποίηση εποπτείας MySQL και μετά να περιμένετε 2-3 λεπτά.<br>Αν δεν περιμένετε 2-3 λεπτά, η εποπτεία και αποκατάσταση θα προσπαθήσει να επανεκκινήσει την MySQL!"; |
| | | $wb['enable_sni_txt'] = "Ενεργοποίηση SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Απενεργοποίηση εποπτείας HTTPD"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sections'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted applications'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applications'; |
| | | $wb['website_path_txt'] = 'Διαδρομή Website'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Δημιουργία σχετικών symlinks'; |
| | | $wb['website_basedir_txt'] = 'Βασικός φάκελος Website'; |
| | | $wb['vhost_conf_dir_txt'] = 'Φάκελος ρυθμίσεων Vhost'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Φάκελος ρυθμίσεων (ενεργών) Vhost'; |
| | | $wb['getmail_config_dir_txt'] = 'Φάκελος ρυθμίσεων Getmail'; |
| | | $wb['fastcgi_starter_path_txt'] = 'Διαδρομή εκκίνησης FastCGI'; |
| | | $wb['fastcgi_starter_script_txt'] = 'Script εκκίνησης FastCGI'; |
| | | $wb['fastcgi_alias_txt'] = 'Ψευδώνυμο FastCGI'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'Διαδρομή FastCGI php.ini'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'Όριο πλήθους αιτήσεων FastCGI'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Άρθρωμα'; |
| | | $wb['maildir_path_txt'] = 'Διαδρομή Maildir'; |
| | | $wb['homedir_path_txt'] = 'Διαδρομή Homedir'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Όνομα Mailuser'; |
| | | $wb['mailuser_group_txt'] = 'Ομάδα Mailuser'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Χρήστης Relayhost'; |
| | | $wb['relayhost_password_txt'] = 'Συνθηματικό Relayhost'; |
| | | $wb['mailbox_size_limit_txt'] = 'Όριο χώρου θυρίδας'; |
| | | $wb['message_size_limit_txt'] = 'Μήνυμα ορίου χώρου'; |
| | | $wb['ip_address_txt'] = 'Διεύθυνση IP'; |
| | | $wb['netmask_txt'] = 'Μάσκα υποδικτύου'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameservers'; |
| | | $wb['auto_network_configuration_txt'] = 'Ρυθμίσεις Δικτύου'; |
| | | $wb['ip_address_error_wrong'] = 'Η μορφοποίηση της IP δεν είναι έγκυρη'; |
| | | $wb['netmask_error_wrong'] = 'Η μορφοποίηση της μάσκας υποδικτύου δεν είναι έγκυρη.'; |
| | | $wb['gateway_error_wrong'] = 'Η μορφοποίηση της Gateway δεν είναι έγκυρη.'; |
| | | $wb['hostname_error_empty'] = 'Το Hostname δεν έχει οριστεί.'; |
| | | $wb['nameservers_error_empty'] = 'Ο Nameserver δεν έχει οριστεί.'; |
| | | $wb['config_dir_txt'] = 'Φάκελος Config'; |
| | | $wb['init_script_txt'] = 'Όνομα αρχείου εκκίνησης Cron'; |
| | | $wb['crontab_dir_txt'] = 'Διαδρομή για ανεξάρτητα crontabs'; |
| | | $wb['wget_txt'] = 'Διαδρομή για το wget'; |
| | | $wb['web_user_txt'] = 'Χρήστης Apache'; |
| | | $wb['web_group_txt'] = 'Ομάδα Apache'; |
| | | $wb['security_level_txt'] = 'Επίπεδο ασφαλείας'; |
| | | $wb['loglevel_txt'] = 'Επίπεδο καταγραφής'; |
| | | $wb['apps_vhost_port_txt'] = 'Θύρα του Apps-vhost'; |
| | | $wb['apps_vhost_ip_txt'] = 'IP διεύθυνση του Apps-vhost'; |
| | | $wb['apps_vhost_servername_txt'] = 'Domain του Apps-vhost'; |
| | | $wb['bind_user_txt'] = 'Χρήστης BIND'; |
| | | $wb['bind_group_txt'] = 'Ομάδα BIND'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'Φάκελος αρχείων ζωνών BIND'; |
| | | $wb['named_conf_path_txt'] = 'Διαδρομη του named.conf του BIND '; |
| | | $wb['bind_user_error_empty'] = 'Δεν δώσατε χρήστη BIND.'; |
| | | $wb['bind_group_error_empty'] = 'Δεν δώσατε ομάδα BIND.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'Ο φάκελος με τα zonefiles του BIND δεν έχει οριστεί.'; |
| | | $wb['named_conf_path_error_empty'] = 'Η διαδρομή για το named.conf του BIND δεν έχει οριστεί.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'Η διαδρομή για το named.conf.local του BIND δεν έχει οριστεί.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Συντακτικό Mailfilter'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'Το open_basedir της PHP δεν έχει οριστεί.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = 'Το AllowOverride του .htaccess δεν έχει οριστεί.'; |
| | | $wb['awstats_conf_dir_txt'] = 'Φάκελος ρυθμίσεων του awstats'; |
| | | $wb['awstats_data_dir_txt'] = 'Φάκελος δεδομένων του awstats'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Φάκελος Backup'; |
| | | $wb['named_conf_local_path_txt'] = 'Διαδρομή του named.conf.local του BIND'; |
| | | $wb['php_ini_path_cgi_txt'] = 'Διαδρομή του php.ini για CGI'; |
| | | $wb['php_ini_path_apache_txt'] = 'Διαδρομή του php.ini για Apache'; |
| | | $wb['check_apache_config_txt'] = 'Έλεγχος των ρυθμίσεων του apache ή επαννεκίνηση'; |
| | | $wb['CA_path_txt'] = 'Διαδρομή CA'; |
| | | $wb['CA_pass_txt'] = 'Συνθηματική φράση CA'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Διαχείριση ενσωματωμένων κανόνων'; |
| | | $wb['ufw_ipv6_txt'] = 'Ενεργοποίηση IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Προκαθορισμένη Πολιτική Εισόδου'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Προκαθορισμένη Πολιτική Εξόδου'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Προκαθορισμένη Πολιτική Προώθησης'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Προκαθορισμένη Πολιτική Εφαρμογών'; |
| | | $wb['ufw_log_level_txt'] = 'Επίπεδο Καταγραφής'; |
| | | $wb['network_config_warning_txt'] = 'Η επιλογή για την παραμετροποίηση του δικτύου είναι διαθέσιμη μόνο για Debian και Ubuntu Servers. Μην ενεργοποιείτε αυτή την επιλογή αν η (διεπαφή) κάρτα δικτύου δεν είναι η eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Τύπος Server'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Χρήστης Nginx'; |
| | | $wb['nginx_group_txt'] = 'Ομάδα Nginx'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Ο φάκελος Backup είναι άδειος.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Η διαδρομή για το wget δεν δόθηκε.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Ενεργοποίηση εποπτείας υπηρεσιών και επανεκκινησης σε περίπτωση αποτυχίας'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Απενεργοποίηση εποπτείας MySQL'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Απενεργοποίηση εποπτείας Email'; |
| | | $wb['rescue_description_txt'] = '<b>Πληροφορία:</b> Αν θέλετε να τερματίσετε την MySQL πρέπει να επιλέξετε την επιλογή Απενεργοποίηση εποπτείας MySQL και μετά να περιμένετε 2-3 λεπτά.<br>Αν δεν περιμένετε 2-3 λεπτά, η εποπτεία και αποκατάσταση θα προσπαθήσει να επανεκκινήσει την MySQL!'; |
| | | $wb['enable_sni_txt'] = 'Ενεργοποίηση SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Απενεργοποίηση εποπτείας HTTPD'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['smtp_user_txt'] = 'SMTP user'; |
| | | $wb['smtp_pass_txt'] = 'SMTP password'; |
| | | $wb['smtp_crypt_txt'] = 'Use SSL/TLS encrypted connection for SMTP'; |
| | | $wb['phpmyadmin_url_error_regex'] = 'Invalid phpmyadmin URL'; |
| | | ?> |
| | |
| | | $wb['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Carpeta Jailkit chroot"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Secciones de aplicación Jailkit chroot"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Aplicaciones Jailkit chrooted"; |
| | | $wb['website_path_txt'] = "Ruta del sitio web"; |
| | | $wb['website_symlinks_txt'] = "Enlaces simbólicos del sitio web"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['vhost_conf_dir_txt'] = "Directorio de configuración de vhost"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Directorio de configuración de vhost activados"; |
| | | $wb['getmail_config_dir_txt'] = "Directorio de configuración de Getmail"; |
| | | $wb['fastcgi_starter_path_txt'] = "Ruta inicial de FastCGI"; |
| | | $wb['fastcgi_starter_script_txt'] = "Script inicial de FastCGI"; |
| | | $wb['fastcgi_alias_txt'] = "Alias de FastCGI"; |
| | | $wb['fastcgi_phpini_path_txt'] = "Ruta al php.ini de FastCGI"; |
| | | $wb['fastcgi_children_txt'] = "Hijos de FastCGI"; |
| | | $wb['fastcgi_max_requests_txt'] = "Peticiones máximas de FastCGI"; |
| | | $wb['fastcgi_bin_txt'] = "Binario de FastCGI"; |
| | | $wb['module_txt'] = "Módulo"; |
| | | $wb['maildir_path_txt'] = "Ruta de maildir"; |
| | | $wb['homedir_path_txt'] = "Ruta de homedir"; |
| | | $wb['mailuser_uid_txt'] = "UID usuario de correo"; |
| | | $wb['mailuser_gid_txt'] = "GID usuario de correo"; |
| | | $wb['mailuser_name_txt'] = "Nombre del usuario de correo"; |
| | | $wb['mailuser_group_txt'] = "Grupo del usuario de correo"; |
| | | $wb['relayhost_txt'] = "Servidor de retransmisión"; |
| | | $wb['relayhost_user_txt'] = "Usuario de retransmisión"; |
| | | $wb['relayhost_password_txt'] = "Contraseña de retramisión"; |
| | | $wb['mailbox_size_limit_txt'] = "Límite de tamaño del buzón"; |
| | | $wb['message_size_limit_txt'] = "Límite de tamaño del mensaje"; |
| | | $wb['ip_address_txt'] = "Dirección IP"; |
| | | $wb['netmask_txt'] = "Máscara de red"; |
| | | $wb['gateway_txt'] = "Pasarela"; |
| | | $wb['hostname_txt'] = "Nombre de la máquina (hostname)"; |
| | | $wb['nameservers_txt'] = "Servidores de nombres"; |
| | | $wb['auto_network_configuration_txt'] = "Configuración de red"; |
| | | $wb['website_basedir_txt'] = "Basedir del sitio Web"; |
| | | $wb['ip_address_error_wrong'] = "Formato incorrecto de dirección IP."; |
| | | $wb['netmask_error_wrong'] = "Formato incorrecto de máscara de red."; |
| | | $wb['gateway_error_wrong'] = "Formato incorrecto de pasarela."; |
| | | $wb['hostname_error_empty'] = "El nombre de la máquina (hostname) está vacío."; |
| | | $wb['nameservers_error_empty'] = "El servidor de nombres (nameserver) está vacío."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Aplicaciones Jailkit cron chrooted"; |
| | | $wb['config_dir_txt'] = "Directorio de configuración"; |
| | | $wb['init_script_txt'] = "Nombre del script de inicio de cron"; |
| | | $wb['crontab_dir_txt'] = "Ruta para las crontabs individuales"; |
| | | $wb['wget_txt'] = "Ruta al programa wget"; |
| | | $wb['security_level_txt'] = "Nivel de seguridad"; |
| | | $wb['web_user_txt'] = "Usuario de Apache"; |
| | | $wb['web_group_txt'] = "Grupo de Apache"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "BIND User"; |
| | | $wb['bind_group_txt'] = "BIND Group"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Carpeta Jailkit chroot'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Secciones de aplicación Jailkit chroot'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Aplicaciones Jailkit chrooted'; |
| | | $wb['website_path_txt'] = 'Ruta del sitio web'; |
| | | $wb['website_symlinks_txt'] = 'Enlaces simbólicos del sitio web'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['vhost_conf_dir_txt'] = 'Directorio de configuración de vhost'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Directorio de configuración de vhost activados'; |
| | | $wb['getmail_config_dir_txt'] = 'Directorio de configuración de Getmail'; |
| | | $wb['fastcgi_starter_path_txt'] = 'Ruta inicial de FastCGI'; |
| | | $wb['fastcgi_starter_script_txt'] = 'Script inicial de FastCGI'; |
| | | $wb['fastcgi_alias_txt'] = 'Alias de FastCGI'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'Ruta al php.ini de FastCGI'; |
| | | $wb['fastcgi_children_txt'] = 'Hijos de FastCGI'; |
| | | $wb['fastcgi_max_requests_txt'] = 'Peticiones máximas de FastCGI'; |
| | | $wb['fastcgi_bin_txt'] = 'Binario de FastCGI'; |
| | | $wb['module_txt'] = 'Módulo'; |
| | | $wb['maildir_path_txt'] = 'Ruta de maildir'; |
| | | $wb['homedir_path_txt'] = 'Ruta de homedir'; |
| | | $wb['mailuser_uid_txt'] = 'UID usuario de correo'; |
| | | $wb['mailuser_gid_txt'] = 'GID usuario de correo'; |
| | | $wb['mailuser_name_txt'] = 'Nombre del usuario de correo'; |
| | | $wb['mailuser_group_txt'] = 'Grupo del usuario de correo'; |
| | | $wb['relayhost_txt'] = 'Servidor de retransmisión'; |
| | | $wb['relayhost_user_txt'] = 'Usuario de retransmisión'; |
| | | $wb['relayhost_password_txt'] = 'Contraseña de retramisión'; |
| | | $wb['mailbox_size_limit_txt'] = 'Límite de tamaño del buzón'; |
| | | $wb['message_size_limit_txt'] = 'Límite de tamaño del mensaje'; |
| | | $wb['ip_address_txt'] = 'Dirección IP'; |
| | | $wb['netmask_txt'] = 'Máscara de red'; |
| | | $wb['gateway_txt'] = 'Pasarela'; |
| | | $wb['hostname_txt'] = 'Nombre de la máquina (hostname)'; |
| | | $wb['nameservers_txt'] = 'Servidores de nombres'; |
| | | $wb['auto_network_configuration_txt'] = 'Configuración de red'; |
| | | $wb['website_basedir_txt'] = 'Basedir del sitio Web'; |
| | | $wb['ip_address_error_wrong'] = 'Formato incorrecto de dirección IP.'; |
| | | $wb['netmask_error_wrong'] = 'Formato incorrecto de máscara de red.'; |
| | | $wb['gateway_error_wrong'] = 'Formato incorrecto de pasarela.'; |
| | | $wb['hostname_error_empty'] = 'El nombre de la máquina (hostname) está vacío.'; |
| | | $wb['nameservers_error_empty'] = 'El servidor de nombres (nameserver) está vacío.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Aplicaciones Jailkit cron chrooted'; |
| | | $wb['config_dir_txt'] = 'Directorio de configuración'; |
| | | $wb['init_script_txt'] = 'Nombre del script de inicio de cron'; |
| | | $wb['crontab_dir_txt'] = 'Ruta para las crontabs individuales'; |
| | | $wb['wget_txt'] = 'Ruta al programa wget'; |
| | | $wb['security_level_txt'] = 'Nivel de seguridad'; |
| | | $wb['web_user_txt'] = 'Usuario de Apache'; |
| | | $wb['web_group_txt'] = 'Grupo de Apache'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot-kotikansio"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot-ohjelmaosiot"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted-ohjelmat"; |
| | | $wb['website_path_txt'] = "Verkkotunnuksen kotihakemisto"; |
| | | $wb['website_symlinks_txt'] = "Verkkotunnuksen symmetriset linkit"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['vhost_conf_dir_txt'] = "Virtuaalipalvelimen asetuskansio"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Virtuaalipalvelimen käyttöönottokansio"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail-asetuskansio"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI:n käynnistyspolku"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI:n käynnistysskripti"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI-alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI:n php.ini-polku"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI-lapsiprosessi"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI-pyyntöraja"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI-binääri"; |
| | | $wb['module_txt'] = "Ohjelmaosio"; |
| | | $wb['maildir_path_txt'] = "Postilaatikon hakemistopolku"; |
| | | $wb['homedir_path_txt'] = "Kotikansion hakemistopolku"; |
| | | $wb['mailuser_uid_txt'] = "Käyttäjätunnus"; |
| | | $wb['mailuser_gid_txt'] = "Käyttäjäryhmä"; |
| | | $wb['mailuser_name_txt'] = "Postikäyttäjän nimi"; |
| | | $wb['mailuser_group_txt'] = "Postikäyttäjän ryhmä"; |
| | | $wb['relayhost_txt'] = "Edelleenlähetyspalvelin"; |
| | | $wb['relayhost_user_txt'] = "Edelleenlähetyspalvelimen käyttäjätunnus"; |
| | | $wb['relayhost_password_txt'] = "Edelleenlähetyspalvelimen salasana"; |
| | | $wb['mailbox_size_limit_txt'] = "Postilaatikon koko"; |
| | | $wb['message_size_limit_txt'] = "Viestien enimmäiskoko"; |
| | | $wb['ip_address_txt'] = "IP-osoite"; |
| | | $wb['netmask_txt'] = "Verkon peite"; |
| | | $wb['gateway_txt'] = "Yhdyskäytävä"; |
| | | $wb['hostname_txt'] = "Palvelimen nimi"; |
| | | $wb['nameservers_txt'] = "Nimipalvelimet"; |
| | | $wb['auto_network_configuration_txt'] = "Automaattiset verkkoasetukset"; |
| | | $wb['website_basedir_txt'] = "Verkkotunnuksen peruskansio"; |
| | | $wb['ip_address_error_wrong'] = "IP-osoite on väärän muotoinen."; |
| | | $wb['netmask_error_wrong'] = "Verkon peite on väärän muotoinen."; |
| | | $wb['gateway_error_wrong'] = "Yhdyskäytävä on väärän muotoinen."; |
| | | $wb['hostname_error_empty'] = "Isäntänimi on tyhjä."; |
| | | $wb['nameservers_error_empty'] = "Nimipalvelin on tyhjä."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrootatut ohjelmat"; |
| | | $wb['config_dir_txt'] = "Asetuskansio"; |
| | | $wb['init_script_txt'] = "Cronin init-skriptin nimi"; |
| | | $wb['crontab_dir_txt'] = "Käyttäjien Crontabien polku"; |
| | | $wb['wget_txt'] = "Wget-binäärin polku"; |
| | | $wb['security_level_txt'] = "Turvallisuustaso"; |
| | | $wb['web_user_txt'] = "Apache-käyttäjä"; |
| | | $wb['web_group_txt'] = "Apache-ryhmä"; |
| | | $wb['loglevel_txt'] = "Logitaso"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-virtuaali-isännän portti"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-virtuaali-isännän IP-osoite"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-virtuaali-isännän verkkotunnus"; |
| | | $wb['bind_user_txt'] = "BIND-käyttäjä"; |
| | | $wb['bind_group_txt'] = "BIND-ryhmä"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND-aluetiedostojen polku"; |
| | | $wb['named_conf_path_txt'] = "BIND-asetustiedoston polku"; |
| | | $wb['bind_user_error_empty'] = "BIND-käyttäjä on tyhjä."; |
| | | $wb['bind_group_error_empty'] = "BIND-ryhmä on tyhjä."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND-aluetiedostojen kansio on tyhjä."; |
| | | $wb['named_conf_path_error_empty'] = "BIND-asetustiedoston polku on tyhjä."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND:in paikallisen asetustiedoston polku on tyhjä."; |
| | | $wb['mail_filter_syntax_txt'] = "Postisuodattimien syntaksi"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP-ohjelma"; |
| | | $wb['php_open_basedir_txt'] = "PHP:een avoin peruskansio"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP:een avoin peruskansio on tyhjä."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride on tyhjä."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot-kotikansio'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot-ohjelmaosiot'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted-ohjelmat'; |
| | | $wb['website_path_txt'] = 'Verkkotunnuksen kotihakemisto'; |
| | | $wb['website_symlinks_txt'] = 'Verkkotunnuksen symmetriset linkit'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['vhost_conf_dir_txt'] = 'Virtuaalipalvelimen asetuskansio'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Virtuaalipalvelimen käyttöönottokansio'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail-asetuskansio'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI:n käynnistyspolku'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI:n käynnistysskripti'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI-alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI:n php.ini-polku'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI-lapsiprosessi'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI-pyyntöraja'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI-binääri'; |
| | | $wb['module_txt'] = 'Ohjelmaosio'; |
| | | $wb['maildir_path_txt'] = 'Postilaatikon hakemistopolku'; |
| | | $wb['homedir_path_txt'] = 'Kotikansion hakemistopolku'; |
| | | $wb['mailuser_uid_txt'] = 'Käyttäjätunnus'; |
| | | $wb['mailuser_gid_txt'] = 'Käyttäjäryhmä'; |
| | | $wb['mailuser_name_txt'] = 'Postikäyttäjän nimi'; |
| | | $wb['mailuser_group_txt'] = 'Postikäyttäjän ryhmä'; |
| | | $wb['relayhost_txt'] = 'Edelleenlähetyspalvelin'; |
| | | $wb['relayhost_user_txt'] = 'Edelleenlähetyspalvelimen käyttäjätunnus'; |
| | | $wb['relayhost_password_txt'] = 'Edelleenlähetyspalvelimen salasana'; |
| | | $wb['mailbox_size_limit_txt'] = 'Postilaatikon koko'; |
| | | $wb['message_size_limit_txt'] = 'Viestien enimmäiskoko'; |
| | | $wb['ip_address_txt'] = 'IP-osoite'; |
| | | $wb['netmask_txt'] = 'Verkon peite'; |
| | | $wb['gateway_txt'] = 'Yhdyskäytävä'; |
| | | $wb['hostname_txt'] = 'Palvelimen nimi'; |
| | | $wb['nameservers_txt'] = 'Nimipalvelimet'; |
| | | $wb['auto_network_configuration_txt'] = 'Automaattiset verkkoasetukset'; |
| | | $wb['website_basedir_txt'] = 'Verkkotunnuksen peruskansio'; |
| | | $wb['ip_address_error_wrong'] = 'IP-osoite on väärän muotoinen.'; |
| | | $wb['netmask_error_wrong'] = 'Verkon peite on väärän muotoinen.'; |
| | | $wb['gateway_error_wrong'] = 'Yhdyskäytävä on väärän muotoinen.'; |
| | | $wb['hostname_error_empty'] = 'Isäntänimi on tyhjä.'; |
| | | $wb['nameservers_error_empty'] = 'Nimipalvelin on tyhjä.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrootatut ohjelmat'; |
| | | $wb['config_dir_txt'] = 'Asetuskansio'; |
| | | $wb['init_script_txt'] = 'Cronin init-skriptin nimi'; |
| | | $wb['crontab_dir_txt'] = 'Käyttäjien Crontabien polku'; |
| | | $wb['wget_txt'] = 'Wget-binäärin polku'; |
| | | $wb['security_level_txt'] = 'Turvallisuustaso'; |
| | | $wb['web_user_txt'] = 'Apache-käyttäjä'; |
| | | $wb['web_group_txt'] = 'Apache-ryhmä'; |
| | | $wb['loglevel_txt'] = 'Logitaso'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-virtuaali-isännän portti'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-virtuaali-isännän IP-osoite'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-virtuaali-isännän verkkotunnus'; |
| | | $wb['bind_user_txt'] = 'BIND-käyttäjä'; |
| | | $wb['bind_group_txt'] = 'BIND-ryhmä'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND-aluetiedostojen polku'; |
| | | $wb['named_conf_path_txt'] = 'BIND-asetustiedoston polku'; |
| | | $wb['bind_user_error_empty'] = 'BIND-käyttäjä on tyhjä.'; |
| | | $wb['bind_group_error_empty'] = 'BIND-ryhmä on tyhjä.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND-aluetiedostojen kansio on tyhjä.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND-asetustiedoston polku on tyhjä.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND:in paikallisen asetustiedoston polku on tyhjä.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Postisuodattimien syntaksi'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP-ohjelma'; |
| | | $wb['php_open_basedir_txt'] = 'PHP:een avoin peruskansio'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP:een avoin peruskansio on tyhjä.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride on tyhjä.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Udaljene akcije'; |
| | | $wb['Do OS-Update'] = 'Nadogradnja sistema'; |
| | | $wb['Do ISPConfig-Update'] = 'Nadogradnja control panela'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot direktorij"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sekcije"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrootane aplikacije"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrootane aplikacije"; |
| | | $wb['website_path_txt'] = "Put do Web stranice"; |
| | | $wb['website_symlinks_txt'] = "Symlinkovi Web stranice"; |
| | | $wb['website_basedir_txt'] = "Bazni direktorij Web stranice"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost konfiguracijski direktorij"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost dozvoljeni konfiguracijski direktorij"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail konfiguracijski direktorij"; |
| | | $wb['fastcgi_starter_path_txt'] = "Put do FastCGI-a"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI početna skripta"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "Put do FastCGI php.ini datoteke"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "Maks. broj FastCGI zahtjeva"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Modul"; |
| | | $wb['maildir_path_txt'] = "Put do Maildir-a"; |
| | | $wb['homedir_path_txt'] = "Put do početne stranice"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Mailuser ime"; |
| | | $wb['mailuser_group_txt'] = "Mailuser grupa"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost korisnik"; |
| | | $wb['relayhost_password_txt'] = "Relayhost šifra"; |
| | | $wb['mailbox_size_limit_txt'] = "Dozvoljena veličina mailboxa"; |
| | | $wb['message_size_limit_txt'] = "Dozvoljena veličina emaila"; |
| | | $wb['ip_address_txt'] = "IP adresa"; |
| | | $wb['netmask_txt'] = "Netmaska"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameserveri"; |
| | | $wb['auto_network_configuration_txt'] = "Konfiguracija mreže"; |
| | | $wb['ip_address_error_wrong'] = "Neispravan format IP adrese."; |
| | | $wb['netmask_error_wrong'] = "Neispravni format netmask-a."; |
| | | $wb['gateway_error_wrong'] = "Neispravan format gateway-a."; |
| | | $wb['hostname_error_empty'] = "Hostname polje je prazno."; |
| | | $wb['nameservers_error_empty'] = "Nameserver polje je prazno."; |
| | | $wb['config_dir_txt'] = "Konfiguracijski direktorij"; |
| | | $wb['init_script_txt'] = "Inicijalizacijski naziv cron skripte"; |
| | | $wb['crontab_dir_txt'] = "Putanja do individualnih crontabs-a"; |
| | | $wb['wget_txt'] = "Putanja do wget programa"; |
| | | $wb['web_user_txt'] = "Apache korisnik"; |
| | | $wb['web_group_txt'] = "Apache grupa"; |
| | | $wb['security_level_txt'] = "Stupanj zaštite"; |
| | | $wb['loglevel_txt'] = "Stupanj logiranja"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP adresa"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost domena"; |
| | | $wb['bind_user_txt'] = "BIND korisnik"; |
| | | $wb['bind_group_txt'] = "BIND grupa"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND direktorij sa zonskim datotekama"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf putanja"; |
| | | $wb['bind_user_error_empty'] = "BIND korisnik nije upisan.."; |
| | | $wb['bind_group_error_empty'] = "BIND grupa nije upisana."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND direktorij sa zonama nije upisan."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf putanja nije upisana."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local putanja nije upisana."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter sintaksa"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir nije upisan."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride nije upisan."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats konfiguracijski direktorij"; |
| | | $wb['awstats_data_dir_txt'] = "awstats podatkovni direktorij"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl skripta"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl skripta"; |
| | | $wb['backup_dir_txt'] = "Backup direktorij"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local putanja"; |
| | | $wb['php_ini_path_cgi_txt'] = "Putanja do CGI php.ini"; |
| | | $wb['php_ini_path_apache_txt'] = "Putanja do Apache php.ini"; |
| | | $wb['check_apache_config_txt'] = "Testiraj Apache konfiguraciju prilikom restarta"; |
| | | $wb['ufw_enable_txt'] = "Omogući"; |
| | | $wb['ufw_manage_builtins_txt'] = "Upravljaj standardnim pravilima"; |
| | | $wb['ufw_ipv6_txt'] = "Omogući IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Standardna ulazna pravila"; |
| | | $wb['ufw_default_output_policy_txt'] = "Standardna izlazna pravila"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Standardna pravila proslijeđivanja"; |
| | | $wb['ufw_default_application_policy_txt'] = "Standardna pravila aplikacija"; |
| | | $wb['ufw_log_level_txt'] = "Stupanj logiranja"; |
| | | $wb['website_symlinks_rel_txt'] = "Napravi relativne symlinks-e"; |
| | | $wb['network_config_warning_txt'] = "Konfiguracija mreže je dostupna samo za Debian i Ubuntu servere. Nemojte uključivati ovu opciju ako vaš mrežni adapter nije eth0."; |
| | | $wb['CA_path_txt'] = "CA putanja"; |
| | | $wb['CA_pass_txt'] = "CA šifra"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI konfiguracijska sintaksa"; |
| | | $wb['server_type_txt'] = "Vrsta servera"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost konfiguracijski direktorij"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost omogućeni konfiguracijski direktorij"; |
| | | $wb['nginx_user_txt'] = "Nginx korisnik"; |
| | | $wb['nginx_group_txt'] = "Nginx grupa"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup direktorij nije upisan."; |
| | | $wb['maildir_path_error_empty'] = "Maildir direktorij nije upisan."; |
| | | $wb['homedir_path_error_empty'] = "Homedir direktorij nije upisan."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID nije upisan."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID nije upisan."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser ime nije upisano."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser grupa nije upisana."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail konfiguracijski direktorij je prazan."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir je prazan."; |
| | | $wb['website_path_error_empty'] = "Website putanja nije upisana."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks je prazan."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost konfiguracijski direktorij je prazan."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost omogućeni konfiguracijski direktorij je prazan."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost konfiguracijski direktorij je prazan."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost omogućeni konfiguracijski direktorij je prazan."; |
| | | $wb['apache_user_error_empty'] = "Apache korisnik nije upisan."; |
| | | $wb['apache_group_error_empty'] = "Apache grupa nije upisana."; |
| | | $wb['nginx_user_error_empty'] = "Nginx korisnik nije upisan."; |
| | | $wb['nginx_group_error_empty'] = "Nginx grupa nije upisana."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini putanja nije upisana."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini putanja nije upisana."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI socket nije upisan."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port nije upisan."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP adresa nije upisana."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter putanja nije upisana."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter skripta nije upisana."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI alias nije upisan."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini putanja nije upisana."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children nije upisan."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI maksimalan broj zahtjeva nije upisan."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin nije upisan."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home je prazan."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot aplikacijska sekcija nije upisana."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted aplikacije nisu upisane."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted aplikacije nisu upisane."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Konfiguracijski direktorij je prazan."; |
| | | $wb['cron_init_script_error_empty'] = "Naziv Cron inicijalizacijske skripte je prazan."; |
| | | $wb['crontab_dir_error_empty'] = "Nije upisana putanja za pojedinačni crontab."; |
| | | $wb['cron_wget_error_empty'] = "Nije upisana putanja za wget."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM inicijalizacijska skripta"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM inicijalizacijska skripta nije upisana."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini putanja"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini putanja nije upisana."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool direktorij"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool direktorij nije upisan."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM početni port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM početni port nije upisan."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket direktorij"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket direktorij nije upisan."; |
| | | $wb['try_rescue_txt'] = "Uključi monitoring servisa i restartaj ukoliko ne radi"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Isključi MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Isključi Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Informacija:</b> Ako želite ugasiti mysql morate izabrati Isključi MySQL monitoring kvačicu i tada pričekati 2-3 minute.<br>Ukoliko ne pričekate, automatski će se restartati MySQL!"; |
| | | $wb['enable_sni_txt'] = "Omogući SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Isključi HTTPD monitoriranje"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Postavi dozvole pri svakoj nadogradnji ISPConfiga"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Dodaj web korisnikeu -sshusers- grupu"; |
| | | $wb['connect_userid_to_webid_txt'] = "Spoji Linux userid u webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Početni ID za spajanje userid/webid-a"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot direktorij'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sekcije'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrootane aplikacije'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrootane aplikacije'; |
| | | $wb['website_path_txt'] = 'Put do Web stranice'; |
| | | $wb['website_symlinks_txt'] = 'Symlinkovi Web stranice'; |
| | | $wb['website_basedir_txt'] = 'Bazni direktorij Web stranice'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost konfiguracijski direktorij'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost dozvoljeni konfiguracijski direktorij'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail konfiguracijski direktorij'; |
| | | $wb['fastcgi_starter_path_txt'] = 'Put do FastCGI-a'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI početna skripta'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'Put do FastCGI php.ini datoteke'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'Maks. broj FastCGI zahtjeva'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['maildir_path_txt'] = 'Put do Maildir-a'; |
| | | $wb['homedir_path_txt'] = 'Put do početne stranice'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailuser ime'; |
| | | $wb['mailuser_group_txt'] = 'Mailuser grupa'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost korisnik'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost šifra'; |
| | | $wb['mailbox_size_limit_txt'] = 'Dozvoljena veličina mailboxa'; |
| | | $wb['message_size_limit_txt'] = 'Dozvoljena veličina emaila'; |
| | | $wb['ip_address_txt'] = 'IP adresa'; |
| | | $wb['netmask_txt'] = 'Netmaska'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameserveri'; |
| | | $wb['auto_network_configuration_txt'] = 'Konfiguracija mreže'; |
| | | $wb['ip_address_error_wrong'] = 'Neispravan format IP adrese.'; |
| | | $wb['netmask_error_wrong'] = 'Neispravni format netmask-a.'; |
| | | $wb['gateway_error_wrong'] = 'Neispravan format gateway-a.'; |
| | | $wb['hostname_error_empty'] = 'Hostname polje je prazno.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver polje je prazno.'; |
| | | $wb['config_dir_txt'] = 'Konfiguracijski direktorij'; |
| | | $wb['init_script_txt'] = 'Inicijalizacijski naziv cron skripte'; |
| | | $wb['crontab_dir_txt'] = 'Putanja do individualnih crontabs-a'; |
| | | $wb['wget_txt'] = 'Putanja do wget programa'; |
| | | $wb['web_user_txt'] = 'Apache korisnik'; |
| | | $wb['web_group_txt'] = 'Apache grupa'; |
| | | $wb['security_level_txt'] = 'Stupanj zaštite'; |
| | | $wb['loglevel_txt'] = 'Stupanj logiranja'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP adresa'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost domena'; |
| | | $wb['bind_user_txt'] = 'BIND korisnik'; |
| | | $wb['bind_group_txt'] = 'BIND grupa'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND direktorij sa zonskim datotekama'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf putanja'; |
| | | $wb['bind_user_error_empty'] = 'BIND korisnik nije upisan..'; |
| | | $wb['bind_group_error_empty'] = 'BIND grupa nije upisana.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND direktorij sa zonama nije upisan.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf putanja nije upisana.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local putanja nije upisana.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter sintaksa'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir nije upisan.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride nije upisan.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats konfiguracijski direktorij'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats podatkovni direktorij'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl skripta'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl skripta'; |
| | | $wb['backup_dir_txt'] = 'Backup direktorij'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local putanja'; |
| | | $wb['php_ini_path_cgi_txt'] = 'Putanja do CGI php.ini'; |
| | | $wb['php_ini_path_apache_txt'] = 'Putanja do Apache php.ini'; |
| | | $wb['check_apache_config_txt'] = 'Testiraj Apache konfiguraciju prilikom restarta'; |
| | | $wb['ufw_enable_txt'] = 'Omogući'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Upravljaj standardnim pravilima'; |
| | | $wb['ufw_ipv6_txt'] = 'Omogući IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Standardna ulazna pravila'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Standardna izlazna pravila'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Standardna pravila proslijeđivanja'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Standardna pravila aplikacija'; |
| | | $wb['ufw_log_level_txt'] = 'Stupanj logiranja'; |
| | | $wb['website_symlinks_rel_txt'] = 'Napravi relativne symlinks-e'; |
| | | $wb['network_config_warning_txt'] = 'Konfiguracija mreže je dostupna samo za Debian i Ubuntu servere. Nemojte uključivati ovu opciju ako vaš mrežni adapter nije eth0.'; |
| | | $wb['CA_path_txt'] = 'CA putanja'; |
| | | $wb['CA_pass_txt'] = 'CA šifra'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI konfiguracijska sintaksa'; |
| | | $wb['server_type_txt'] = 'Vrsta servera'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost konfiguracijski direktorij'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost omogućeni konfiguracijski direktorij'; |
| | | $wb['nginx_user_txt'] = 'Nginx korisnik'; |
| | | $wb['nginx_group_txt'] = 'Nginx grupa'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup direktorij nije upisan.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir direktorij nije upisan.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir direktorij nije upisan.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID nije upisan.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID nije upisan.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser ime nije upisano.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser grupa nije upisana.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail konfiguracijski direktorij je prazan.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir je prazan.'; |
| | | $wb['website_path_error_empty'] = 'Website putanja nije upisana.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks je prazan.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost konfiguracijski direktorij je prazan.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost omogućeni konfiguracijski direktorij je prazan.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost konfiguracijski direktorij je prazan.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost omogućeni konfiguracijski direktorij je prazan.'; |
| | | $wb['apache_user_error_empty'] = 'Apache korisnik nije upisan.'; |
| | | $wb['apache_group_error_empty'] = 'Apache grupa nije upisana.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx korisnik nije upisan.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx grupa nije upisana.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini putanja nije upisana.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini putanja nije upisana.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI socket nije upisan.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port nije upisan.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP adresa nije upisana.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter putanja nije upisana.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter skripta nije upisana.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI alias nije upisan.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini putanja nije upisana.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children nije upisan.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI maksimalan broj zahtjeva nije upisan.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin nije upisan.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home je prazan.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot aplikacijska sekcija nije upisana.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted aplikacije nisu upisane.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted aplikacije nisu upisane.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Konfiguracijski direktorij je prazan.'; |
| | | $wb['cron_init_script_error_empty'] = 'Naziv Cron inicijalizacijske skripte je prazan.'; |
| | | $wb['crontab_dir_error_empty'] = 'Nije upisana putanja za pojedinačni crontab.'; |
| | | $wb['cron_wget_error_empty'] = 'Nije upisana putanja za wget.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM inicijalizacijska skripta'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM inicijalizacijska skripta nije upisana.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini putanja'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini putanja nije upisana.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool direktorij'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool direktorij nije upisan.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM početni port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM početni port nije upisan.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket direktorij'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket direktorij nije upisan.'; |
| | | $wb['try_rescue_txt'] = 'Uključi monitoring servisa i restartaj ukoliko ne radi'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Isključi MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Isključi Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Informacija:</b> Ako želite ugasiti mysql morate izabrati Isključi MySQL monitoring kvačicu i tada pričekati 2-3 minute.<br>Ukoliko ne pričekate, automatski će se restartati MySQL!'; |
| | | $wb['enable_sni_txt'] = 'Omogući SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Isključi HTTPD monitoriranje'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Postavi dozvole pri svakoj nadogradnji ISPConfiga'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Dodaj web korisnikeu -sshusers- grupu'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Spoji Linux userid u webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Početni ID za spajanje userid/webid-a'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'OR-Frissítés'; |
| | | $wb['Do ISPConfig-Update'] = 'ISPConfig-Frissítés'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sections"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted applications"; |
| | | $wb['website_path_txt'] = "Website path"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost config enabled dir"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter path"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter script"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini Path"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. Requests"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Modul"; |
| | | $wb['maildir_path_txt'] = "Maildir Path"; |
| | | $wb['homedir_path_txt'] = "Homedir Path"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Mailuser Name"; |
| | | $wb['mailuser_group_txt'] = "Mailuser Group"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost User"; |
| | | $wb['relayhost_password_txt'] = "Relayhost Password"; |
| | | $wb['mailbox_size_limit_txt'] = "Mailbox Size Limit"; |
| | | $wb['message_size_limit_txt'] = "Message Size Limit"; |
| | | $wb['ip_address_txt'] = "IP Address"; |
| | | $wb['netmask_txt'] = "Netmask"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hosztnév"; |
| | | $wb['nameservers_txt'] = "Névszerverek"; |
| | | $wb['auto_network_configuration_txt'] = "Network Configuration"; |
| | | $wb['website_basedir_txt'] = "Website basedir"; |
| | | $wb['ip_address_error_wrong'] = "Invalid IP address format."; |
| | | $wb['netmask_error_wrong'] = "Invalid Netmaszk format."; |
| | | $wb['gateway_error_wrong'] = "Invalid Átjáró format."; |
| | | $wb['hostname_error_empty'] = "Hosztnév is empty."; |
| | | $wb['nameservers_error_empty'] = "Nameserver is empty."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applications"; |
| | | $wb['config_dir_txt'] = "Config directory"; |
| | | $wb['init_script_txt'] = "Cron init script name"; |
| | | $wb['crontab_dir_txt'] = "Path for individual crontabs"; |
| | | $wb['wget_txt'] = "Path to wget program"; |
| | | $wb['web_user_txt'] = "Apache user"; |
| | | $wb['web_group_txt'] = "Apache group"; |
| | | $wb['security_level_txt'] = "Security level"; |
| | | $wb['loglevel_txt'] = "Naplólevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "BIND User"; |
| | | $wb['bind_group_txt'] = "BIND Group"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Mentés könyvtára"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sections'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted applications'; |
| | | $wb['website_path_txt'] = 'Website path'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled dir'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter path'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter script'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini Path'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. Requests'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['maildir_path_txt'] = 'Maildir Path'; |
| | | $wb['homedir_path_txt'] = 'Homedir Path'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailuser Name'; |
| | | $wb['mailuser_group_txt'] = 'Mailuser Group'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost User'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Password'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mailbox Size Limit'; |
| | | $wb['message_size_limit_txt'] = 'Message Size Limit'; |
| | | $wb['ip_address_txt'] = 'IP Address'; |
| | | $wb['netmask_txt'] = 'Netmask'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hosztnév'; |
| | | $wb['nameservers_txt'] = 'Névszerverek'; |
| | | $wb['auto_network_configuration_txt'] = 'Network Configuration'; |
| | | $wb['website_basedir_txt'] = 'Website basedir'; |
| | | $wb['ip_address_error_wrong'] = 'Invalid IP address format.'; |
| | | $wb['netmask_error_wrong'] = 'Invalid Netmaszk format.'; |
| | | $wb['gateway_error_wrong'] = 'Invalid Átjáró format.'; |
| | | $wb['hostname_error_empty'] = 'Hosztnév is empty.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applications'; |
| | | $wb['config_dir_txt'] = 'Config directory'; |
| | | $wb['init_script_txt'] = 'Cron init script name'; |
| | | $wb['crontab_dir_txt'] = 'Path for individual crontabs'; |
| | | $wb['wget_txt'] = 'Path to wget program'; |
| | | $wb['web_user_txt'] = 'Apache user'; |
| | | $wb['web_group_txt'] = 'Apache group'; |
| | | $wb['security_level_txt'] = 'Security level'; |
| | | $wb['loglevel_txt'] = 'Naplólevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Mentés könyvtára'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Tindakan Remote'; |
| | | $wb['Do OS-Update'] = 'Lakukan Pemutakhiran OS'; |
| | | $wb['Do ISPConfig-Update'] = 'Lakukan Pemutakhiran ISPConfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Home chroot Jailkit"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Bagian app chroot"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit aplikasi yang ter-chroot"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit aplikasi cron yang ter-chroot"; |
| | | $wb['website_path_txt'] = "Path situs web"; |
| | | $wb['website_symlinks_txt'] = "Symlink Situs web"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['website_basedir_txt'] = "Basedir Situs web"; |
| | | $wb['vhost_conf_dir_txt'] = "Direktori konfigurasi vhost"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Direktori konfigurasi vhost yang aktif"; |
| | | $wb['getmail_config_dir_txt'] = "Direktori konfigurasi getmail"; |
| | | $wb['fastcgi_starter_path_txt'] = "Path pemicu FastCGI"; |
| | | $wb['fastcgi_starter_script_txt'] = "Skrip pemicu FastCGI"; |
| | | $wb['fastcgi_alias_txt'] = "Alias FastCGI"; |
| | | $wb['fastcgi_phpini_path_txt'] = "Path php.ini FastCGI"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "Maks. Request FastCGI"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Modul"; |
| | | $wb['maildir_path_txt'] = "Path Direktori Mail"; |
| | | $wb['homedir_path_txt'] = "Path Direktori Home"; |
| | | $wb['mailuser_uid_txt'] = "UID Pengguna Mail"; |
| | | $wb['mailuser_gid_txt'] = "GID Pengguna Mail"; |
| | | $wb['mailuser_name_txt'] = "Nama Pengguna Mail"; |
| | | $wb['mailuser_group_txt'] = "Grup Pengguna Mail"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Pengguna Relayhost"; |
| | | $wb['relayhost_password_txt'] = "Kata Sandi Relayhost"; |
| | | $wb['mailbox_size_limit_txt'] = "Batasan Ukuran Mailbox"; |
| | | $wb['message_size_limit_txt'] = "Batasan Ukuran Pesan"; |
| | | $wb['ip_address_txt'] = "Alamat IP"; |
| | | $wb['netmask_txt'] = "Netmask"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Nama Host"; |
| | | $wb['nameservers_txt'] = "Nameserver"; |
| | | $wb['auto_network_configuration_txt'] = "Konfigurasi Jaringan"; |
| | | $wb['ip_address_error_wrong'] = "Format alamat IP tidak valid."; |
| | | $wb['netmask_error_wrong'] = "Format Netmask tidak valid."; |
| | | $wb['gateway_error_wrong'] = "Format Gateway tidak valid."; |
| | | $wb['hostname_error_empty'] = "Nama Host kosong."; |
| | | $wb['nameservers_error_empty'] = "Nameserver kosong."; |
| | | $wb['config_dir_txt'] = "Direktori Konfigurasi"; |
| | | $wb['init_script_txt'] = "Nama skrip init cron"; |
| | | $wb['crontab_dir_txt'] = "Path untuk crontab individu"; |
| | | $wb['wget_txt'] = "Path ke program wget"; |
| | | $wb['web_user_txt'] = "Pengguna Apache"; |
| | | $wb['web_group_txt'] = "Grup Apache"; |
| | | $wb['security_level_txt'] = "Tingkat Keamanan"; |
| | | $wb['loglevel_txt'] = "Tingkatan Log"; |
| | | $wb['apps_vhost_port_txt'] = "Port Apps-vhost"; |
| | | $wb['apps_vhost_ip_txt'] = "IP Apps-vhost"; |
| | | $wb['apps_vhost_servername_txt'] = "Domain Apps-vhost"; |
| | | $wb['bind_user_txt'] = "Pengguna BIND"; |
| | | $wb['bind_group_txt'] = "Grup BIND"; |
| | | $wb['bind_zonefiles_dir_txt'] = "Direktori berkas zona BIND"; |
| | | $wb['named_conf_path_txt'] = "Path named.conf BIND"; |
| | | $wb['bind_user_error_empty'] = "Pengguna BIND kosong."; |
| | | $wb['bind_group_error_empty'] = "Grup BIND kosong."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "Direktori berkas zona BIND kosong."; |
| | | $wb['named_conf_path_error_empty'] = "Path named.conf BIND kosong."; |
| | | $wb['named_conf_local_path_error_empty'] = "Path named.conf.local BIND kosong."; |
| | | $wb['mail_filter_syntax_txt'] = "Sintaks Mailfilter"; |
| | | $wb['pop3_imap_daemon_txt'] = "Daemon POP3/IMAP"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir kosong."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride kosong."; |
| | | $wb['awstats_conf_dir_txt'] = "direktori konfigurasi awstats"; |
| | | $wb['awstats_data_dir_txt'] = "direktori data awstats"; |
| | | $wb['awstats_pl_txt'] = "skrip awstats.pl"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "skrip awstats_buildstaticpages.pl"; |
| | | $wb['backup_dir_txt'] = "Direktori Pencadangan"; |
| | | $wb['named_conf_local_path_txt'] = "Path named.conf.local BIND"; |
| | | $wb['php_ini_path_cgi_txt'] = "Path php.ini CGI"; |
| | | $wb['php_ini_path_apache_txt'] = "Path php.ini Apache"; |
| | | $wb['check_apache_config_txt'] = "Periksa konfigurasi apache saat dijalankan ulang"; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Home chroot Jailkit'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Bagian app chroot'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit aplikasi yang ter-chroot'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit aplikasi cron yang ter-chroot'; |
| | | $wb['website_path_txt'] = 'Path situs web'; |
| | | $wb['website_symlinks_txt'] = 'Symlink Situs web'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'Basedir Situs web'; |
| | | $wb['vhost_conf_dir_txt'] = 'Direktori konfigurasi vhost'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Direktori konfigurasi vhost yang aktif'; |
| | | $wb['getmail_config_dir_txt'] = 'Direktori konfigurasi getmail'; |
| | | $wb['fastcgi_starter_path_txt'] = 'Path pemicu FastCGI'; |
| | | $wb['fastcgi_starter_script_txt'] = 'Skrip pemicu FastCGI'; |
| | | $wb['fastcgi_alias_txt'] = 'Alias FastCGI'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'Path php.ini FastCGI'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'Maks. Request FastCGI'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['maildir_path_txt'] = 'Path Direktori Mail'; |
| | | $wb['homedir_path_txt'] = 'Path Direktori Home'; |
| | | $wb['mailuser_uid_txt'] = 'UID Pengguna Mail'; |
| | | $wb['mailuser_gid_txt'] = 'GID Pengguna Mail'; |
| | | $wb['mailuser_name_txt'] = 'Nama Pengguna Mail'; |
| | | $wb['mailuser_group_txt'] = 'Grup Pengguna Mail'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Pengguna Relayhost'; |
| | | $wb['relayhost_password_txt'] = 'Kata Sandi Relayhost'; |
| | | $wb['mailbox_size_limit_txt'] = 'Batasan Ukuran Mailbox'; |
| | | $wb['message_size_limit_txt'] = 'Batasan Ukuran Pesan'; |
| | | $wb['ip_address_txt'] = 'Alamat IP'; |
| | | $wb['netmask_txt'] = 'Netmask'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Nama Host'; |
| | | $wb['nameservers_txt'] = 'Nameserver'; |
| | | $wb['auto_network_configuration_txt'] = 'Konfigurasi Jaringan'; |
| | | $wb['ip_address_error_wrong'] = 'Format alamat IP tidak valid.'; |
| | | $wb['netmask_error_wrong'] = 'Format Netmask tidak valid.'; |
| | | $wb['gateway_error_wrong'] = 'Format Gateway tidak valid.'; |
| | | $wb['hostname_error_empty'] = 'Nama Host kosong.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver kosong.'; |
| | | $wb['config_dir_txt'] = 'Direktori Konfigurasi'; |
| | | $wb['init_script_txt'] = 'Nama skrip init cron'; |
| | | $wb['crontab_dir_txt'] = 'Path untuk crontab individu'; |
| | | $wb['wget_txt'] = 'Path ke program wget'; |
| | | $wb['web_user_txt'] = 'Pengguna Apache'; |
| | | $wb['web_group_txt'] = 'Grup Apache'; |
| | | $wb['security_level_txt'] = 'Tingkat Keamanan'; |
| | | $wb['loglevel_txt'] = 'Tingkatan Log'; |
| | | $wb['apps_vhost_port_txt'] = 'Port Apps-vhost'; |
| | | $wb['apps_vhost_ip_txt'] = 'IP Apps-vhost'; |
| | | $wb['apps_vhost_servername_txt'] = 'Domain Apps-vhost'; |
| | | $wb['bind_user_txt'] = 'Pengguna BIND'; |
| | | $wb['bind_group_txt'] = 'Grup BIND'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'Direktori berkas zona BIND'; |
| | | $wb['named_conf_path_txt'] = 'Path named.conf BIND'; |
| | | $wb['bind_user_error_empty'] = 'Pengguna BIND kosong.'; |
| | | $wb['bind_group_error_empty'] = 'Grup BIND kosong.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'Direktori berkas zona BIND kosong.'; |
| | | $wb['named_conf_path_error_empty'] = 'Path named.conf BIND kosong.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'Path named.conf.local BIND kosong.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Sintaks Mailfilter'; |
| | | $wb['pop3_imap_daemon_txt'] = 'Daemon POP3/IMAP'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir kosong.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride kosong.'; |
| | | $wb['awstats_conf_dir_txt'] = 'direktori konfigurasi awstats'; |
| | | $wb['awstats_data_dir_txt'] = 'direktori data awstats'; |
| | | $wb['awstats_pl_txt'] = 'skrip awstats.pl'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'skrip awstats_buildstaticpages.pl'; |
| | | $wb['backup_dir_txt'] = 'Direktori Pencadangan'; |
| | | $wb['named_conf_local_path_txt'] = 'Path named.conf.local BIND'; |
| | | $wb['php_ini_path_cgi_txt'] = 'Path php.ini CGI'; |
| | | $wb['php_ini_path_apache_txt'] = 'Path php.ini Apache'; |
| | | $wb['check_apache_config_txt'] = 'Periksa konfigurasi apache saat dijalankan ulang'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Azioni remote'; |
| | | $wb['Do OS-Update'] = 'Aggiorna OS'; |
| | | $wb['Do ISPConfig-Update'] = 'Aggiorna ISPconfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sections"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted applications"; |
| | | $wb['website_path_txt'] = "Website path"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost config enabled dir"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter path"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter script"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini Path"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. Requests"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Module"; |
| | | $wb['maildir_path_txt'] = "Maildir Path"; |
| | | $wb['homedir_path_txt'] = "Homedir Path"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Mailuser Name"; |
| | | $wb['mailuser_group_txt'] = "Mailuser Group"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost User"; |
| | | $wb['relayhost_password_txt'] = "Relayhost Password"; |
| | | $wb['mailbox_size_limit_txt'] = "Mailbox Size Limit"; |
| | | $wb['message_size_limit_txt'] = "Message Size Limit"; |
| | | $wb['ip_address_txt'] = "Indirizzo IP"; |
| | | $wb['netmask_txt'] = "Netmask"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameservers"; |
| | | $wb['auto_network_configuration_txt'] = "Network Configuration"; |
| | | $wb['website_basedir_txt'] = "Website basedir"; |
| | | $wb['ip_address_error_wrong'] = "Invalid IP address format."; |
| | | $wb['netmask_error_wrong'] = "Invalid Netmask format."; |
| | | $wb['gateway_error_wrong'] = "Invalid Gateway format."; |
| | | $wb['hostname_error_empty'] = "Hostname is empty."; |
| | | $wb['nameservers_error_empty'] = "Nameserver is empty."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applications"; |
| | | $wb['config_dir_txt'] = "Config directory"; |
| | | $wb['init_script_txt'] = "Cron init script name"; |
| | | $wb['crontab_dir_txt'] = "Path for individual crontabs"; |
| | | $wb['wget_txt'] = "Path to wget program"; |
| | | $wb['security_level_txt'] = "Security level"; |
| | | $wb['web_user_txt'] = "Apache user"; |
| | | $wb['web_group_txt'] = "Apache group"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "BIND User"; |
| | | $wb['bind_group_txt'] = "BIND Group"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Directory di backup"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "Percorso php.ini CGI"; |
| | | $wb['php_ini_path_apache_txt'] = "Percorso php.ini apache"; |
| | | $wb['check_apache_config_txt'] = "Testa al riavvio la configurazione di apache"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>If you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sections'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted applications'; |
| | | $wb['website_path_txt'] = 'Website path'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled dir'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter path'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter script'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini Path'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. Requests'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Module'; |
| | | $wb['maildir_path_txt'] = 'Maildir Path'; |
| | | $wb['homedir_path_txt'] = 'Homedir Path'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailuser Name'; |
| | | $wb['mailuser_group_txt'] = 'Mailuser Group'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost User'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Password'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mailbox Size Limit'; |
| | | $wb['message_size_limit_txt'] = 'Message Size Limit'; |
| | | $wb['ip_address_txt'] = 'Indirizzo IP'; |
| | | $wb['netmask_txt'] = 'Netmask'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameservers'; |
| | | $wb['auto_network_configuration_txt'] = 'Network Configuration'; |
| | | $wb['website_basedir_txt'] = 'Website basedir'; |
| | | $wb['ip_address_error_wrong'] = 'Invalid IP address format.'; |
| | | $wb['netmask_error_wrong'] = 'Invalid Netmask format.'; |
| | | $wb['gateway_error_wrong'] = 'Invalid Gateway format.'; |
| | | $wb['hostname_error_empty'] = 'Hostname is empty.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applications'; |
| | | $wb['config_dir_txt'] = 'Config directory'; |
| | | $wb['init_script_txt'] = 'Cron init script name'; |
| | | $wb['crontab_dir_txt'] = 'Path for individual crontabs'; |
| | | $wb['wget_txt'] = 'Path to wget program'; |
| | | $wb['security_level_txt'] = 'Security level'; |
| | | $wb['web_user_txt'] = 'Apache user'; |
| | | $wb['web_group_txt'] = 'Apache group'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Directory di backup'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'Percorso php.ini CGI'; |
| | | $wb['php_ini_path_apache_txt'] = 'Percorso php.ini apache'; |
| | | $wb['check_apache_config_txt'] = 'Testa al riavvio la configurazione di apache'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>If you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "chroot ホーム"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "利用可能アプリケーションセクション"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "利用可能アプリケーション"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "cron での利用可能アプリケーション"; |
| | | $wb['website_path_txt'] = "ウェブサイトのパス"; |
| | | $wb['website_symlinks_txt'] = "ウェブサイトのシンボリックリンク"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['website_basedir_txt'] = "ウェブサイトのベースディレクトリ"; |
| | | $wb['vhost_conf_dir_txt'] = "バーチャルホスト設定ディレクトリ"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "バーチャルホスト設定ディレクトリ(有効)"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail 設定ディレクトリ"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGIスターターのパス"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGIスタータースクリプト"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGIエイリアス"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini のパス"; |
| | | $wb['fastcgi_children_txt'] = "FastCGIの子プロセス数"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI 最大リクエスト数"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI実行ファイル"; |
| | | $wb['module_txt'] = "モジュール"; |
| | | $wb['maildir_path_txt'] = "メールディレクトリ"; |
| | | $wb['homedir_path_txt'] = "ホームディレクトリ"; |
| | | $wb['mailuser_uid_txt'] = "メールユーザーのUID"; |
| | | $wb['mailuser_gid_txt'] = "メールユーザーのGID"; |
| | | $wb['mailuser_name_txt'] = "メールユーザー名"; |
| | | $wb['mailuser_group_txt'] = "メールユーザーグループ"; |
| | | $wb['relayhost_txt'] = "リレーホスト"; |
| | | $wb['relayhost_user_txt'] = "リレーホストユーザー"; |
| | | $wb['relayhost_password_txt'] = "リレーホストパスワード"; |
| | | $wb['mailbox_size_limit_txt'] = "メールボックスのサイズ"; |
| | | $wb['message_size_limit_txt'] = "メッセージの最大サイズ"; |
| | | $wb['ip_address_txt'] = "IPアドレス"; |
| | | $wb['netmask_txt'] = "ネットマスク"; |
| | | $wb['gateway_txt'] = "ゲートウェイ"; |
| | | $wb['hostname_txt'] = "ホスト名"; |
| | | $wb['nameservers_txt'] = "ネームサーバー"; |
| | | $wb['auto_network_configuration_txt'] = "ネットワークの設定"; |
| | | $wb['ip_address_error_wrong'] = "IPアドレスの形式が不正です。"; |
| | | $wb['netmask_error_wrong'] = "ネットマスクの形式が不正です。"; |
| | | $wb['gateway_error_wrong'] = "ゲートウェイの形式が不正です。"; |
| | | $wb['hostname_error_empty'] = "ホスト名を指定してください"; |
| | | $wb['nameservers_error_empty'] = "ネームサーバー名を指定してください"; |
| | | $wb['config_dir_txt'] = "設定ディレクトリ"; |
| | | $wb['init_script_txt'] = "Cron init スクリプト名"; |
| | | $wb['crontab_dir_txt'] = "個々の crontab の設置パス"; |
| | | $wb['wget_txt'] = "wget のパス"; |
| | | $wb['web_user_txt'] = "Apache のユーザー"; |
| | | $wb['web_group_txt'] = "Apache のグループ"; |
| | | $wb['security_level_txt'] = "セキュリティレベル"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "BIND User"; |
| | | $wb['bind_group_txt'] = "BIND Group"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'chroot ホーム'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = '利用可能アプリケーションセクション'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = '利用可能アプリケーション'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'cron での利用可能アプリケーション'; |
| | | $wb['website_path_txt'] = 'ウェブサイトのパス'; |
| | | $wb['website_symlinks_txt'] = 'ウェブサイトのシンボリックリンク'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'ウェブサイトのベースディレクトリ'; |
| | | $wb['vhost_conf_dir_txt'] = 'バーチャルホスト設定ディレクトリ'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'バーチャルホスト設定ディレクトリ(有効)'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail 設定ディレクトリ'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGIスターターのパス'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGIスタータースクリプト'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGIエイリアス'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini のパス'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGIの子プロセス数'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI 最大リクエスト数'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI実行ファイル'; |
| | | $wb['module_txt'] = 'モジュール'; |
| | | $wb['maildir_path_txt'] = 'メールディレクトリ'; |
| | | $wb['homedir_path_txt'] = 'ホームディレクトリ'; |
| | | $wb['mailuser_uid_txt'] = 'メールユーザーのUID'; |
| | | $wb['mailuser_gid_txt'] = 'メールユーザーのGID'; |
| | | $wb['mailuser_name_txt'] = 'メールユーザー名'; |
| | | $wb['mailuser_group_txt'] = 'メールユーザーグループ'; |
| | | $wb['relayhost_txt'] = 'リレーホスト'; |
| | | $wb['relayhost_user_txt'] = 'リレーホストユーザー'; |
| | | $wb['relayhost_password_txt'] = 'リレーホストパスワード'; |
| | | $wb['mailbox_size_limit_txt'] = 'メールボックスのサイズ'; |
| | | $wb['message_size_limit_txt'] = 'メッセージの最大サイズ'; |
| | | $wb['ip_address_txt'] = 'IPアドレス'; |
| | | $wb['netmask_txt'] = 'ネットマスク'; |
| | | $wb['gateway_txt'] = 'ゲートウェイ'; |
| | | $wb['hostname_txt'] = 'ホスト名'; |
| | | $wb['nameservers_txt'] = 'ネームサーバー'; |
| | | $wb['auto_network_configuration_txt'] = 'ネットワークの設定'; |
| | | $wb['ip_address_error_wrong'] = 'IPアドレスの形式が不正です。'; |
| | | $wb['netmask_error_wrong'] = 'ネットマスクの形式が不正です。'; |
| | | $wb['gateway_error_wrong'] = 'ゲートウェイの形式が不正です。'; |
| | | $wb['hostname_error_empty'] = 'ホスト名を指定してください'; |
| | | $wb['nameservers_error_empty'] = 'ネームサーバー名を指定してください'; |
| | | $wb['config_dir_txt'] = '設定ディレクトリ'; |
| | | $wb['init_script_txt'] = 'Cron init スクリプト名'; |
| | | $wb['crontab_dir_txt'] = '個々の crontab の設置パス'; |
| | | $wb['wget_txt'] = 'wget のパス'; |
| | | $wb['web_user_txt'] = 'Apache のユーザー'; |
| | | $wb['web_group_txt'] = 'Apache のグループ'; |
| | | $wb['security_level_txt'] = 'セキュリティレベル'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote acties'; |
| | | $wb['Do OS-Update'] = 'Voer een OS-Update uit'; |
| | | $wb['Do ISPConfig-Update'] = 'Voer een ISPConfig-update uit'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app secties"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted applicaties"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applicaties"; |
| | | $wb['website_path_txt'] = "Website pad"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks"; |
| | | $wb['website_symlinks_rel_txt'] = "Maak relative symlinks"; |
| | | $wb['website_basedir_txt'] = "Website basedir"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost config enabled dir"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter pad"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter script"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini pad"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. gequests"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI bin"; |
| | | $wb['module_txt'] = "Module"; |
| | | $wb['maildir_path_txt'] = "Maildir pad"; |
| | | $wb['homedir_path_txt'] = "Homedir pad"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Mailuser name"; |
| | | $wb['mailuser_group_txt'] = "Mailuser groep"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost gebruiker"; |
| | | $wb['relayhost_password_txt'] = "Relayhost wachtwoord"; |
| | | $wb['mailbox_size_limit_txt'] = "Mailbox grootte limiet"; |
| | | $wb['message_size_limit_txt'] = "Message grootte limiet"; |
| | | $wb['ip_address_txt'] = "IP adres"; |
| | | $wb['netmask_txt'] = "Netmask"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameservers"; |
| | | $wb['auto_network_configuration_txt'] = "Netwerk configuratie"; |
| | | $wb['ip_address_error_wrong'] = "Ongeldig IP adres formaat."; |
| | | $wb['netmask_error_wrong'] = "Ongeldig Netmask formaat."; |
| | | $wb['gateway_error_wrong'] = "Invalid Gateway formaat."; |
| | | $wb['hostname_error_empty'] = "Hostnnaam is niet ingvuld."; |
| | | $wb['nameservers_error_empty'] = "Nameserver is niet ingvuld."; |
| | | $wb['config_dir_txt'] = "Config directory"; |
| | | $wb['init_script_txt'] = "Cron init script naam"; |
| | | $wb['crontab_dir_txt'] = "Pad voor individuele crontabs"; |
| | | $wb['wget_txt'] = "Pad naar wget programma"; |
| | | $wb['web_user_txt'] = "Apache gebruiker"; |
| | | $wb['web_group_txt'] = "Apache groep"; |
| | | $wb['security_level_txt'] = "Beveiligingsniveau"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost poort"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost domein"; |
| | | $wb['bind_user_txt'] = "BIND gebruiker"; |
| | | $wb['bind_group_txt'] = "BIND groep"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf pad"; |
| | | $wb['bind_user_error_empty'] = "BIND gebruiker is niet ingvuld."; |
| | | $wb['bind_group_error_empty'] = "BIND groep is niet ingvuld."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is niet ingvuld."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf pad is niet ingvuld."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local pad is niet ingvuld."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is niet ingvuld."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is niet ingvuld."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local pad"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini pad"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini pad"; |
| | | $wb['check_apache_config_txt'] = "Test Apache configuratie tijdens restart"; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app secties'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted applicaties'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applicaties'; |
| | | $wb['website_path_txt'] = 'Website pad'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Maak relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'Website basedir'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled dir'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter pad'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter script'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini pad'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. gequests'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI bin'; |
| | | $wb['module_txt'] = 'Module'; |
| | | $wb['maildir_path_txt'] = 'Maildir pad'; |
| | | $wb['homedir_path_txt'] = 'Homedir pad'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailuser name'; |
| | | $wb['mailuser_group_txt'] = 'Mailuser groep'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost gebruiker'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost wachtwoord'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mailbox grootte limiet'; |
| | | $wb['message_size_limit_txt'] = 'Message grootte limiet'; |
| | | $wb['ip_address_txt'] = 'IP adres'; |
| | | $wb['netmask_txt'] = 'Netmask'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameservers'; |
| | | $wb['auto_network_configuration_txt'] = 'Netwerk configuratie'; |
| | | $wb['ip_address_error_wrong'] = 'Ongeldig IP adres formaat.'; |
| | | $wb['netmask_error_wrong'] = 'Ongeldig Netmask formaat.'; |
| | | $wb['gateway_error_wrong'] = 'Invalid Gateway formaat.'; |
| | | $wb['hostname_error_empty'] = 'Hostnnaam is niet ingvuld.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver is niet ingvuld.'; |
| | | $wb['config_dir_txt'] = 'Config directory'; |
| | | $wb['init_script_txt'] = 'Cron init script naam'; |
| | | $wb['crontab_dir_txt'] = 'Pad voor individuele crontabs'; |
| | | $wb['wget_txt'] = 'Pad naar wget programma'; |
| | | $wb['web_user_txt'] = 'Apache gebruiker'; |
| | | $wb['web_group_txt'] = 'Apache groep'; |
| | | $wb['security_level_txt'] = 'Beveiligingsniveau'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost poort'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost domein'; |
| | | $wb['bind_user_txt'] = 'BIND gebruiker'; |
| | | $wb['bind_group_txt'] = 'BIND groep'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf pad'; |
| | | $wb['bind_user_error_empty'] = 'BIND gebruiker is niet ingvuld.'; |
| | | $wb['bind_group_error_empty'] = 'BIND groep is niet ingvuld.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is niet ingvuld.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf pad is niet ingvuld.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local pad is niet ingvuld.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is niet ingvuld.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is niet ingvuld.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local pad'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini pad'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini pad'; |
| | | $wb['check_apache_config_txt'] = 'Test Apache configuratie tijdens restart'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Akcje zdalne'; |
| | | $wb['Do OS-Update'] = 'Wykonaj aktualizację systemu'; |
| | | $wb['Do ISPConfig-Update'] = 'Wykonaj aktualizację ISPConfig'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Adres roota Jailkit"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Sekcje aplikacji roota Jailkit"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Ścieżki aplikacji roota Jailkit"; |
| | | $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_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['getmail_config_dir_txt'] = "Ścieżka do konfiguracyji Getmail"; |
| | | $wb['fastcgi_starter_path_txt'] = "Adres startowy FastCGI"; |
| | | $wb['fastcgi_starter_script_txt'] = "Startowy skrypt FastCGI"; |
| | | $wb['fastcgi_alias_txt'] = "Alias FastCGI"; |
| | | $wb['fastcgi_phpini_path_txt'] = "Ścieżka do php.ini FastCGI"; |
| | | $wb['fastcgi_children_txt'] = "Ilość wątków FastCGI"; |
| | | $wb['fastcgi_max_requests_txt'] = "Maksymalna ilość zadań FastCGI"; |
| | | $wb['fastcgi_bin_txt'] = "Kosz FastCGI"; |
| | | $wb['module_txt'] = "Moduł"; |
| | | $wb['maildir_path_txt'] = "Adres poczty e-mail"; |
| | | $wb['homedir_path_txt'] = "Bazowy adres poczty e-mail"; |
| | | $wb['mailuser_uid_txt'] = "UID użytkownika e-mail"; |
| | | $wb['mailuser_gid_txt'] = "GID użytkownika e-mail"; |
| | | $wb['mailuser_name_txt'] = "Nazwa użytkownika e-mail"; |
| | | $wb['mailuser_group_txt'] = "Grupa użytkownika e-mail"; |
| | | $wb['relayhost_txt'] = "Adres Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Użytkownik Relayhost"; |
| | | $wb['relayhost_password_txt'] = "Hasło Relayhost"; |
| | | $wb['mailbox_size_limit_txt'] = "Maksymalna wielkość skrzynki pocztowej"; |
| | | $wb['message_size_limit_txt'] = "Maksymalna wielkość wiadomości"; |
| | | $wb['ip_address_txt'] = "Adres IP"; |
| | | $wb['netmask_txt'] = "Maska"; |
| | | $wb['gateway_txt'] = "Bramka"; |
| | | $wb['hostname_txt'] = "Nazwa"; |
| | | $wb['nameservers_txt'] = "Nazwa serwera"; |
| | | $wb['auto_network_configuration_txt'] = "Konfiguracja sieci"; |
| | | $wb['ip_address_error_wrong'] = "Nieprawidłowy format adresu IP."; |
| | | $wb['netmask_error_wrong'] = "Nieprawidłowy format maski."; |
| | | $wb['gateway_error_wrong'] = "Nieprawidłowy format bramki."; |
| | | $wb['hostname_error_empty'] = "Nazwa jest pusta."; |
| | | $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['wget_txt'] = "Ścieżka do wget"; |
| | | $wb['web_user_txt'] = "Użytkownik Apache"; |
| | | $wb['web_group_txt'] = "Grupa Apache"; |
| | | $wb['security_level_txt'] = "Poziom bezpieczeństwa"; |
| | | $wb['loglevel_txt'] = "Poziom Logowania"; |
| | | $wb['apps_vhost_port_txt'] = "Port Apps-vhost"; |
| | | $wb['apps_vhost_ip_txt'] = "IP Apps-vhost"; |
| | | $wb['apps_vhost_servername_txt'] = "Domena Apps-vhost"; |
| | | $wb['bind_user_txt'] = "Użytkownik BIND"; |
| | | $wb['bind_group_txt'] = "Grupa BIND"; |
| | | $wb['bind_zonefiles_dir_txt'] = "Katalog stref BIND"; |
| | | $wb['named_conf_path_txt'] = "Ścieżka named.conf BIND"; |
| | | $wb['bind_user_error_empty'] = "Użytkownik BIND jest pusty."; |
| | | $wb['bind_group_error_empty'] = "Grupa BIND jest pusta."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "Katalog stref BIND jest pusty."; |
| | | $wb['named_conf_path_error_empty'] = "Ścieżka named.conf BIND jest pusta."; |
| | | $wb['named_conf_local_path_error_empty'] = "Ścieżka named.conf.local BIND jest pusta."; |
| | | $wb['mail_filter_syntax_txt'] = "Składnia filtra e-mail"; |
| | | $wb['pop3_imap_daemon_txt'] = "Demon POP3/IMAP"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir jest pusty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride jest pusty."; |
| | | $wb['awstats_conf_dir_txt'] = "Folder konfiguracji awstats"; |
| | | $wb['awstats_data_dir_txt'] = "Folder danych awstats"; |
| | | $wb['awstats_pl_txt'] = "Skrypt awstats.pl"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "Skrypt awstats_buildstaticpages.pl"; |
| | | $wb['backup_dir_txt'] = "Katalog kopii zapasowych"; |
| | | $wb['named_conf_local_path_txt'] = "Ścieżka named.conf.local BIND"; |
| | | $wb['php_ini_path_cgi_txt'] = "Ścieżka CGI php.ini"; |
| | | $wb['php_ini_path_apache_txt'] = "ŚcieżkaApache php.ini"; |
| | | $wb['check_apache_config_txt'] = "Testuj konfigurację Apache przy restarcie"; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Włącz"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Włącz IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Poziom logowania"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Włącz SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Adres roota Jailkit'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Sekcje aplikacji roota Jailkit'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Ścieżki aplikacji roota Jailkit'; |
| | | $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_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['getmail_config_dir_txt'] = 'Ścieżka do konfiguracyji Getmail'; |
| | | $wb['fastcgi_starter_path_txt'] = 'Adres startowy FastCGI'; |
| | | $wb['fastcgi_starter_script_txt'] = 'Startowy skrypt FastCGI'; |
| | | $wb['fastcgi_alias_txt'] = 'Alias FastCGI'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'Ścieżka do php.ini FastCGI'; |
| | | $wb['fastcgi_children_txt'] = 'Ilość wątków FastCGI'; |
| | | $wb['fastcgi_max_requests_txt'] = 'Maksymalna ilość zadań FastCGI'; |
| | | $wb['fastcgi_bin_txt'] = 'Kosz FastCGI'; |
| | | $wb['module_txt'] = 'Moduł'; |
| | | $wb['maildir_path_txt'] = 'Adres poczty e-mail'; |
| | | $wb['homedir_path_txt'] = 'Bazowy adres poczty e-mail'; |
| | | $wb['mailuser_uid_txt'] = 'UID użytkownika e-mail'; |
| | | $wb['mailuser_gid_txt'] = 'GID użytkownika e-mail'; |
| | | $wb['mailuser_name_txt'] = 'Nazwa użytkownika e-mail'; |
| | | $wb['mailuser_group_txt'] = 'Grupa użytkownika e-mail'; |
| | | $wb['relayhost_txt'] = 'Adres Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Użytkownik Relayhost'; |
| | | $wb['relayhost_password_txt'] = 'Hasło Relayhost'; |
| | | $wb['mailbox_size_limit_txt'] = 'Maksymalna wielkość skrzynki pocztowej'; |
| | | $wb['message_size_limit_txt'] = 'Maksymalna wielkość wiadomości'; |
| | | $wb['ip_address_txt'] = 'Adres IP'; |
| | | $wb['netmask_txt'] = 'Maska'; |
| | | $wb['gateway_txt'] = 'Bramka'; |
| | | $wb['hostname_txt'] = 'Nazwa'; |
| | | $wb['nameservers_txt'] = 'Nazwa serwera'; |
| | | $wb['auto_network_configuration_txt'] = 'Konfiguracja sieci'; |
| | | $wb['ip_address_error_wrong'] = 'Nieprawidłowy format adresu IP.'; |
| | | $wb['netmask_error_wrong'] = 'Nieprawidłowy format maski.'; |
| | | $wb['gateway_error_wrong'] = 'Nieprawidłowy format bramki.'; |
| | | $wb['hostname_error_empty'] = 'Nazwa jest pusta.'; |
| | | $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['wget_txt'] = 'Ścieżka do wget'; |
| | | $wb['web_user_txt'] = 'Użytkownik Apache'; |
| | | $wb['web_group_txt'] = 'Grupa Apache'; |
| | | $wb['security_level_txt'] = 'Poziom bezpieczeństwa'; |
| | | $wb['loglevel_txt'] = 'Poziom Logowania'; |
| | | $wb['apps_vhost_port_txt'] = 'Port Apps-vhost'; |
| | | $wb['apps_vhost_ip_txt'] = 'IP Apps-vhost'; |
| | | $wb['apps_vhost_servername_txt'] = 'Domena Apps-vhost'; |
| | | $wb['bind_user_txt'] = 'Użytkownik BIND'; |
| | | $wb['bind_group_txt'] = 'Grupa BIND'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'Katalog stref BIND'; |
| | | $wb['named_conf_path_txt'] = 'Ścieżka named.conf BIND'; |
| | | $wb['bind_user_error_empty'] = 'Użytkownik BIND jest pusty.'; |
| | | $wb['bind_group_error_empty'] = 'Grupa BIND jest pusta.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'Katalog stref BIND jest pusty.'; |
| | | $wb['named_conf_path_error_empty'] = 'Ścieżka named.conf BIND jest pusta.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'Ścieżka named.conf.local BIND jest pusta.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Składnia filtra e-mail'; |
| | | $wb['pop3_imap_daemon_txt'] = 'Demon POP3/IMAP'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir jest pusty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride jest pusty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'Folder konfiguracji awstats'; |
| | | $wb['awstats_data_dir_txt'] = 'Folder danych awstats'; |
| | | $wb['awstats_pl_txt'] = 'Skrypt awstats.pl'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'Skrypt awstats_buildstaticpages.pl'; |
| | | $wb['backup_dir_txt'] = 'Katalog kopii zapasowych'; |
| | | $wb['named_conf_local_path_txt'] = 'Ścieżka named.conf.local BIND'; |
| | | $wb['php_ini_path_cgi_txt'] = 'Ścieżka CGI php.ini'; |
| | | $wb['php_ini_path_apache_txt'] = 'ŚcieżkaApache php.ini'; |
| | | $wb['check_apache_config_txt'] = 'Testuj konfigurację Apache przy restarcie'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Włącz'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Włącz IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Poziom logowania'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Włącz SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Raiz do Chroot Jailkit"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Aplicações Jailkit chroot (Sessões)"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Aplicações Jailkit em ambiente chroot"; |
| | | $wb['website_path_txt'] = "Pasta do Website"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks: link simbólico"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['website_basedir_txt'] = "Website basedir: pasta base "; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost pasta de configuração activo"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI: Pasta inicial"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI: Script inicial"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI: Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI: Pasta do php.ini "; |
| | | $wb['fastcgi_children_txt'] = "FastCGI: Filhos"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI: Requisições máximas"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Módulo"; |
| | | $wb['maildir_path_txt'] = "Pasta do Maildir"; |
| | | $wb['homedir_path_txt'] = "Pasta Home"; |
| | | $wb['mailuser_uid_txt'] = "UID utilizador de email"; |
| | | $wb['mailuser_gid_txt'] = "GID utilizador de email"; |
| | | $wb['mailuser_name_txt'] = "Nome utilizador de email"; |
| | | $wb['mailuser_group_txt'] = "Grupo utilizador de email"; |
| | | $wb['relayhost_txt'] = "Host Relay"; |
| | | $wb['relayhost_user_txt'] = "Utilizador do Host Relay"; |
| | | $wb['relayhost_password_txt'] = "Senha do Host Relay"; |
| | | $wb['mailbox_size_limit_txt'] = "Tamanho máximo da Caixa Postal"; |
| | | $wb['message_size_limit_txt'] = "Tamanho máximo de mensagem"; |
| | | $wb['ip_address_txt'] = "Endereço IP"; |
| | | $wb['netmask_txt'] = "Máscara de Rede"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Nome do Host"; |
| | | $wb['nameservers_txt'] = "Servidores DNS"; |
| | | $wb['auto_network_configuration_txt'] = "Configuração de Rede"; |
| | | $wb['ip_address_error_wrong'] = "Formato do Endereço IP inválido!"; |
| | | $wb['netmask_error_wrong'] = "Formato da Máscara de Rede inválido!"; |
| | | $wb['gateway_error_wrong'] = "Gateway inválido!"; |
| | | $wb['hostname_error_empty'] = "Por favor, entre com o nome do Host."; |
| | | $wb['nameservers_error_empty'] = "Por favor, entre com o Servidor DNS."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Cron de aplicações Jailkit em ambiente chroot"; |
| | | $wb['config_dir_txt'] = "Pasta de configuração"; |
| | | $wb['init_script_txt'] = "Cron init nome do script"; |
| | | $wb['crontab_dir_txt'] = "Pasta para crontabs individuais"; |
| | | $wb['wget_txt'] = "Pasta para o wget"; |
| | | $wb['web_user_txt'] = "Utilizador Apache"; |
| | | $wb['web_group_txt'] = "Grupo Apache"; |
| | | $wb['security_level_txt'] = "Nível de Segurança"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "Utilizador BIND"; |
| | | $wb['bind_group_txt'] = "Groupo BIND"; |
| | | $wb['bind_zonefiles_dir_txt'] = "Pasta de ficheiros de zona do BIND"; |
| | | $wb['named_conf_path_txt'] = "Pasta do BIND named.conf"; |
| | | $wb['bind_user_error_empty'] = "Utilizador do BIND está em branco."; |
| | | $wb['bind_group_error_empty'] = "Grupo do BIND está em branco."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "Pasta de ficheiros de zona está em branco."; |
| | | $wb['named_conf_path_error_empty'] = "Pasta do BIND named.conf."; |
| | | $wb['named_conf_local_path_error_empty'] = "Pasta do BIND named.conf.local está em branco."; |
| | | $wb['mail_filter_syntax_txt'] = "Sintaxe do Mailfilter"; |
| | | $wb['pop3_imap_daemon_txt'] = "Daemon POP3/IMAP"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir está em branco."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride está em branco."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Raiz do Chroot Jailkit'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Aplicações Jailkit chroot (Sessões)'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Aplicações Jailkit em ambiente chroot'; |
| | | $wb['website_path_txt'] = 'Pasta do Website'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks: link simbólico'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'Website basedir: pasta base '; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost pasta de configuração activo'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI: Pasta inicial'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI: Script inicial'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI: Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI: Pasta do php.ini '; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI: Filhos'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI: Requisições máximas'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Módulo'; |
| | | $wb['maildir_path_txt'] = 'Pasta do Maildir'; |
| | | $wb['homedir_path_txt'] = 'Pasta Home'; |
| | | $wb['mailuser_uid_txt'] = 'UID utilizador de email'; |
| | | $wb['mailuser_gid_txt'] = 'GID utilizador de email'; |
| | | $wb['mailuser_name_txt'] = 'Nome utilizador de email'; |
| | | $wb['mailuser_group_txt'] = 'Grupo utilizador de email'; |
| | | $wb['relayhost_txt'] = 'Host Relay'; |
| | | $wb['relayhost_user_txt'] = 'Utilizador do Host Relay'; |
| | | $wb['relayhost_password_txt'] = 'Senha do Host Relay'; |
| | | $wb['mailbox_size_limit_txt'] = 'Tamanho máximo da Caixa Postal'; |
| | | $wb['message_size_limit_txt'] = 'Tamanho máximo de mensagem'; |
| | | $wb['ip_address_txt'] = 'Endereço IP'; |
| | | $wb['netmask_txt'] = 'Máscara de Rede'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Nome do Host'; |
| | | $wb['nameservers_txt'] = 'Servidores DNS'; |
| | | $wb['auto_network_configuration_txt'] = 'Configuração de Rede'; |
| | | $wb['ip_address_error_wrong'] = 'Formato do Endereço IP inválido!'; |
| | | $wb['netmask_error_wrong'] = 'Formato da Máscara de Rede inválido!'; |
| | | $wb['gateway_error_wrong'] = 'Gateway inválido!'; |
| | | $wb['hostname_error_empty'] = 'Por favor, entre com o nome do Host.'; |
| | | $wb['nameservers_error_empty'] = 'Por favor, entre com o Servidor DNS.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Cron de aplicações Jailkit em ambiente chroot'; |
| | | $wb['config_dir_txt'] = 'Pasta de configuração'; |
| | | $wb['init_script_txt'] = 'Cron init nome do script'; |
| | | $wb['crontab_dir_txt'] = 'Pasta para crontabs individuais'; |
| | | $wb['wget_txt'] = 'Pasta para o wget'; |
| | | $wb['web_user_txt'] = 'Utilizador Apache'; |
| | | $wb['web_group_txt'] = 'Grupo Apache'; |
| | | $wb['security_level_txt'] = 'Nível de Segurança'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'Utilizador BIND'; |
| | | $wb['bind_group_txt'] = 'Groupo BIND'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'Pasta de ficheiros de zona do BIND'; |
| | | $wb['named_conf_path_txt'] = 'Pasta do BIND named.conf'; |
| | | $wb['bind_user_error_empty'] = 'Utilizador do BIND está em branco.'; |
| | | $wb['bind_group_error_empty'] = 'Grupo do BIND está em branco.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'Pasta de ficheiros de zona está em branco.'; |
| | | $wb['named_conf_path_error_empty'] = 'Pasta do BIND named.conf.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'Pasta do BIND named.conf.local está em branco.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Sintaxe do Mailfilter'; |
| | | $wb['pop3_imap_daemon_txt'] = 'Daemon POP3/IMAP'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir está em branco.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride está em branco.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sections"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted applications"; |
| | | $wb['website_path_txt'] = "Website path"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['website_basedir_txt'] = "Website basedir"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost config enabled dir"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter path"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter script"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini Path"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. Requests"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Module"; |
| | | $wb['maildir_path_txt'] = "Maildir Path"; |
| | | $wb['homedir_path_txt'] = "Homedir Path"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Mailuser Name"; |
| | | $wb['mailuser_group_txt'] = "Mailuser Group"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost User"; |
| | | $wb['relayhost_password_txt'] = "Relayhost Password"; |
| | | $wb['mailbox_size_limit_txt'] = "Mailbox Size Limit"; |
| | | $wb['message_size_limit_txt'] = "Message Size Limit"; |
| | | $wb['ip_address_txt'] = "IP Address"; |
| | | $wb['netmask_txt'] = "Netmask"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameservers"; |
| | | $wb['auto_network_configuration_txt'] = "Network Configuration"; |
| | | $wb['ip_address_error_wrong'] = "Invalid IP address format."; |
| | | $wb['netmask_error_wrong'] = "Invalid Netmask format."; |
| | | $wb['gateway_error_wrong'] = "Invalid Gateway format."; |
| | | $wb['hostname_error_empty'] = "Hostname is empty."; |
| | | $wb['nameservers_error_empty'] = "Nameserver is empty."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applications"; |
| | | $wb['config_dir_txt'] = "Config directory"; |
| | | $wb['init_script_txt'] = "Cron init script name"; |
| | | $wb['crontab_dir_txt'] = "Path for individual crontabs"; |
| | | $wb['wget_txt'] = "Path to wget program"; |
| | | $wb['web_user_txt'] = "Apache user"; |
| | | $wb['web_group_txt'] = "Apache group"; |
| | | $wb['security_level_txt'] = "Security level"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "BIND User"; |
| | | $wb['bind_group_txt'] = "BIND Group"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sections'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted applications'; |
| | | $wb['website_path_txt'] = 'Website path'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'Website basedir'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled dir'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter path'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter script'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini Path'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. Requests'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Module'; |
| | | $wb['maildir_path_txt'] = 'Maildir Path'; |
| | | $wb['homedir_path_txt'] = 'Homedir Path'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailuser Name'; |
| | | $wb['mailuser_group_txt'] = 'Mailuser Group'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost User'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Password'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mailbox Size Limit'; |
| | | $wb['message_size_limit_txt'] = 'Message Size Limit'; |
| | | $wb['ip_address_txt'] = 'IP Address'; |
| | | $wb['netmask_txt'] = 'Netmask'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameservers'; |
| | | $wb['auto_network_configuration_txt'] = 'Network Configuration'; |
| | | $wb['ip_address_error_wrong'] = 'Invalid IP address format.'; |
| | | $wb['netmask_error_wrong'] = 'Invalid Netmask format.'; |
| | | $wb['gateway_error_wrong'] = 'Invalid Gateway format.'; |
| | | $wb['hostname_error_empty'] = 'Hostname is empty.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applications'; |
| | | $wb['config_dir_txt'] = 'Config directory'; |
| | | $wb['init_script_txt'] = 'Cron init script name'; |
| | | $wb['crontab_dir_txt'] = 'Path for individual crontabs'; |
| | | $wb['wget_txt'] = 'Path to wget program'; |
| | | $wb['web_user_txt'] = 'Apache user'; |
| | | $wb['web_group_txt'] = 'Apache group'; |
| | | $wb['security_level_txt'] = 'Security level'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Путь к Jailkit chroot"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Раздел программы Jailkit chroot"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Программы Jailkit chrooted"; |
| | | $wb['website_path_txt'] = "Путь web-сайта"; |
| | | $wb['website_symlinks_txt'] = "Симлинки Web-сайта"; |
| | | $wb['vhost_conf_dir_txt'] = "Папка конфига Vhost"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Папка конфига включенного Vhost"; |
| | | $wb['getmail_config_dir_txt'] = "Папка конфига Getmail"; |
| | | $wb['fastcgi_starter_path_txt'] = "Стартовый путь FastCGI"; |
| | | $wb['fastcgi_starter_script_txt'] = "Стартовый скрипт FastCGI"; |
| | | $wb['fastcgi_alias_txt'] = "Алиас FastCGI"; |
| | | $wb['fastcgi_phpini_path_txt'] = "Путь FastCGI в php.ini"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "Макс.запросов для FastCGI"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Модуль"; |
| | | $wb['maildir_path_txt'] = "Путь Maildir"; |
| | | $wb['homedir_path_txt'] = "Путь Homedir"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Имя Mailuser"; |
| | | $wb['mailuser_group_txt'] = "Группа Mailuser"; |
| | | $wb['relayhost_txt'] = "Relay-хост"; |
| | | $wb['relayhost_user_txt'] = "Логин Relay-хоста"; |
| | | $wb['relayhost_password_txt'] = "Пароль Relay-хоста"; |
| | | $wb['mailbox_size_limit_txt'] = "Лимит размера Mailbox"; |
| | | $wb['message_size_limit_txt'] = "Лимит размера сообщения"; |
| | | $wb['ip_address_txt'] = "IP-адрес"; |
| | | $wb['netmask_txt'] = "Сетевая маска"; |
| | | $wb['gateway_txt'] = "Шлюз"; |
| | | $wb['hostname_txt'] = "Имя узла"; |
| | | $wb['nameservers_txt'] = "DNS сервера"; |
| | | $wb['auto_network_configuration_txt'] = "Конфигурация сети"; |
| | | $wb['website_basedir_txt'] = "Базовый путь Web-сайта"; |
| | | $wb['ip_address_error_wrong'] = "Неверный формат IP-адреса"; |
| | | $wb['netmask_error_wrong'] = "Неверный формат сетевой маски"; |
| | | $wb['gateway_error_wrong'] = "Неверный формат шлюза"; |
| | | $wb['hostname_error_empty'] = "Пустое имя хоста"; |
| | | $wb['nameservers_error_empty'] = "Пустые DNS сервера"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applications"; |
| | | $wb['config_dir_txt'] = "Директория конфигов"; |
| | | $wb['init_script_txt'] = "Имя скрипта инициализаци Cron"; |
| | | $wb['crontab_dir_txt'] = "Путь к личным crontabs"; |
| | | $wb['wget_txt'] = "Путь к программе wget"; |
| | | $wb['security_level_txt'] = "Уровень безопасности"; |
| | | $wb['web_user_txt'] = "Пользователь Apache"; |
| | | $wb['web_group_txt'] = "Группа Apache"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost порт"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost домен"; |
| | | $wb['bind_user_txt'] = "Пользователь BIND"; |
| | | $wb['bind_group_txt'] = "Группа BIND"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles директория"; |
| | | $wb['named_conf_path_txt'] = "Путь к BIND named.conf"; |
| | | $wb['bind_user_error_empty'] = "Пользователь BIND пустой."; |
| | | $wb['bind_group_error_empty'] = "Группа BIND пустая."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "Папка зон для BIND пуста."; |
| | | $wb['named_conf_path_error_empty'] = "Путь BIND named.conf пуст."; |
| | | $wb['named_conf_local_path_error_empty'] = "Путь BIND named.conf.local пустой."; |
| | | $wb['mail_filter_syntax_txt'] = "Синтаксис почтовых фильтров"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP демон"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir пустой."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride пустой."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Путь к Jailkit chroot'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Раздел программы Jailkit chroot'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Программы Jailkit chrooted'; |
| | | $wb['website_path_txt'] = 'Путь web-сайта'; |
| | | $wb['website_symlinks_txt'] = 'Симлинки Web-сайта'; |
| | | $wb['vhost_conf_dir_txt'] = 'Папка конфига Vhost'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Папка конфига включенного Vhost'; |
| | | $wb['getmail_config_dir_txt'] = 'Папка конфига Getmail'; |
| | | $wb['fastcgi_starter_path_txt'] = 'Стартовый путь FastCGI'; |
| | | $wb['fastcgi_starter_script_txt'] = 'Стартовый скрипт FastCGI'; |
| | | $wb['fastcgi_alias_txt'] = 'Алиас FastCGI'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'Путь FastCGI в php.ini'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'Макс.запросов для FastCGI'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Модуль'; |
| | | $wb['maildir_path_txt'] = 'Путь Maildir'; |
| | | $wb['homedir_path_txt'] = 'Путь Homedir'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Имя Mailuser'; |
| | | $wb['mailuser_group_txt'] = 'Группа Mailuser'; |
| | | $wb['relayhost_txt'] = 'Relay-хост'; |
| | | $wb['relayhost_user_txt'] = 'Логин Relay-хоста'; |
| | | $wb['relayhost_password_txt'] = 'Пароль Relay-хоста'; |
| | | $wb['mailbox_size_limit_txt'] = 'Лимит размера Mailbox'; |
| | | $wb['message_size_limit_txt'] = 'Лимит размера сообщения'; |
| | | $wb['ip_address_txt'] = 'IP-адрес'; |
| | | $wb['netmask_txt'] = 'Сетевая маска'; |
| | | $wb['gateway_txt'] = 'Шлюз'; |
| | | $wb['hostname_txt'] = 'Имя узла'; |
| | | $wb['nameservers_txt'] = 'DNS сервера'; |
| | | $wb['auto_network_configuration_txt'] = 'Конфигурация сети'; |
| | | $wb['website_basedir_txt'] = 'Базовый путь Web-сайта'; |
| | | $wb['ip_address_error_wrong'] = 'Неверный формат IP-адреса'; |
| | | $wb['netmask_error_wrong'] = 'Неверный формат сетевой маски'; |
| | | $wb['gateway_error_wrong'] = 'Неверный формат шлюза'; |
| | | $wb['hostname_error_empty'] = 'Пустое имя хоста'; |
| | | $wb['nameservers_error_empty'] = 'Пустые DNS сервера'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applications'; |
| | | $wb['config_dir_txt'] = 'Директория конфигов'; |
| | | $wb['init_script_txt'] = 'Имя скрипта инициализаци Cron'; |
| | | $wb['crontab_dir_txt'] = 'Путь к личным crontabs'; |
| | | $wb['wget_txt'] = 'Путь к программе wget'; |
| | | $wb['security_level_txt'] = 'Уровень безопасности'; |
| | | $wb['web_user_txt'] = 'Пользователь Apache'; |
| | | $wb['web_group_txt'] = 'Группа Apache'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost порт'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost домен'; |
| | | $wb['bind_user_txt'] = 'Пользователь BIND'; |
| | | $wb['bind_group_txt'] = 'Группа BIND'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles директория'; |
| | | $wb['named_conf_path_txt'] = 'Путь к BIND named.conf'; |
| | | $wb['bind_user_error_empty'] = 'Пользователь BIND пустой.'; |
| | | $wb['bind_group_error_empty'] = 'Группа BIND пустая.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'Папка зон для BIND пуста.'; |
| | | $wb['named_conf_path_error_empty'] = 'Путь BIND named.conf пуст.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'Путь BIND named.conf.local пустой.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Синтаксис почтовых фильтров'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP демон'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir пустой.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride пустой.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sections"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted applications"; |
| | | $wb['website_path_txt'] = "Website path"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost config enabled dir"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter path"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter script"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini Path"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. Requests"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Module"; |
| | | $wb['maildir_path_txt'] = "Maildir Path"; |
| | | $wb['homedir_path_txt'] = "Homedir Path"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Mailuser Name"; |
| | | $wb['mailuser_group_txt'] = "Mailuser Group"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost User"; |
| | | $wb['relayhost_password_txt'] = "Relayhost Password"; |
| | | $wb['mailbox_size_limit_txt'] = "Mailbox Size Limit"; |
| | | $wb['message_size_limit_txt'] = "Message Size Limit"; |
| | | $wb['ip_address_txt'] = "IP Address"; |
| | | $wb['netmask_txt'] = "Netmask"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameservers"; |
| | | $wb['auto_network_configuration_txt'] = "Network Configuration"; |
| | | $wb['website_basedir_txt'] = "Website basedir"; |
| | | $wb['ip_address_error_wrong'] = "Invalid IP address format."; |
| | | $wb['netmask_error_wrong'] = "Invalid Netmask format."; |
| | | $wb['gateway_error_wrong'] = "Invalid Gateway format."; |
| | | $wb['hostname_error_empty'] = "Hostname is empty."; |
| | | $wb['nameservers_error_empty'] = "Nameserver is empty."; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applications"; |
| | | $wb['config_dir_txt'] = "Config directory"; |
| | | $wb['init_script_txt'] = "Cron init script name"; |
| | | $wb['crontab_dir_txt'] = "Path for individual crontabs"; |
| | | $wb['wget_txt'] = "Path to wget program"; |
| | | $wb['security_level_txt'] = "Security level"; |
| | | $wb['web_user_txt'] = "Apache user"; |
| | | $wb['web_group_txt'] = "Apache group"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "BIND User"; |
| | | $wb['bind_group_txt'] = "BIND Group"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sections'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted applications'; |
| | | $wb['website_path_txt'] = 'Website path'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled dir'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter path'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter script'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini Path'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. Requests'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Module'; |
| | | $wb['maildir_path_txt'] = 'Maildir Path'; |
| | | $wb['homedir_path_txt'] = 'Homedir Path'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailuser Name'; |
| | | $wb['mailuser_group_txt'] = 'Mailuser Group'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost User'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Password'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mailbox Size Limit'; |
| | | $wb['message_size_limit_txt'] = 'Message Size Limit'; |
| | | $wb['ip_address_txt'] = 'IP Address'; |
| | | $wb['netmask_txt'] = 'Netmask'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameservers'; |
| | | $wb['auto_network_configuration_txt'] = 'Network Configuration'; |
| | | $wb['website_basedir_txt'] = 'Website basedir'; |
| | | $wb['ip_address_error_wrong'] = 'Invalid IP address format.'; |
| | | $wb['netmask_error_wrong'] = 'Invalid Netmask format.'; |
| | | $wb['gateway_error_wrong'] = 'Invalid Gateway format.'; |
| | | $wb['hostname_error_empty'] = 'Hostname is empty.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applications'; |
| | | $wb['config_dir_txt'] = 'Config directory'; |
| | | $wb['init_script_txt'] = 'Cron init script name'; |
| | | $wb['crontab_dir_txt'] = 'Path for individual crontabs'; |
| | | $wb['wget_txt'] = 'Path to wget program'; |
| | | $wb['security_level_txt'] = 'Security level'; |
| | | $wb['web_user_txt'] = 'Apache user'; |
| | | $wb['web_group_txt'] = 'Apache group'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["Directive Snippets"] = 'Directive Snippets'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["snippet_txt"] = 'Snippet'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["directive_snippets_name_empty"] = 'Please specify a name for the snippet.'; |
| | | $wb["directive_snippets_name_error_unique"] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Directive Snippets'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["name_txt"] = 'Name of Snippet'; |
| | | $wb["type_txt"] = 'Type'; |
| | | $wb["add_new_record_txt"] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot domov"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sekcia"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted aplikácia"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted aplikácia"; |
| | | $wb['website_path_txt'] = "Website cesta"; |
| | | $wb['website_symlinks_txt'] = "Website symlinky"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['website_basedir_txt'] = "Website základny adresár"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost konfig adresár"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost konfig odblokovaný adresár"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail konfig adresár"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter cesta"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter skript"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini Cesta"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. Requests"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Modul"; |
| | | $wb['maildir_path_txt'] = "Maildir Cesta"; |
| | | $wb['homedir_path_txt'] = "Cesta k domovskému adresáru"; |
| | | $wb['mailuser_uid_txt'] = "Mailuser UID"; |
| | | $wb['mailuser_gid_txt'] = "Mailuser GID"; |
| | | $wb['mailuser_name_txt'] = "Mailuser Meno"; |
| | | $wb['mailuser_group_txt'] = "Mailuser Skupina"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost uživateľ"; |
| | | $wb['relayhost_password_txt'] = "Relayhost heslo"; |
| | | $wb['mailbox_size_limit_txt'] = "Limit ve?kosti poštovej schránky"; |
| | | $wb['message_size_limit_txt'] = "Limit ve?kosti správy"; |
| | | $wb['ip_address_txt'] = "IP Adresa"; |
| | | $wb['netmask_txt'] = "Netmask"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameservery"; |
| | | $wb['auto_network_configuration_txt'] = "Konfigurácia siete"; |
| | | $wb['ip_address_error_wrong'] = "IP adresa v neplatnom formáte."; |
| | | $wb['netmask_error_wrong'] = "Maska siete má neplatný formát."; |
| | | $wb['gateway_error_wrong'] = "Neplatný formát Gateway."; |
| | | $wb['hostname_error_empty'] = "Hostname je prázdny."; |
| | | $wb['nameservers_error_empty'] = "Nameserver je prázdny."; |
| | | $wb['config_dir_txt'] = "Konfiguračný adresár"; |
| | | $wb['init_script_txt'] = "Meno cron init skript "; |
| | | $wb['crontab_dir_txt'] = "Cesta pre jednotlivé crontaby"; |
| | | $wb['wget_txt'] = "Cesta k wget programu"; |
| | | $wb['web_user_txt'] = "Apache uživateľ"; |
| | | $wb['web_group_txt'] = "Apache skupina"; |
| | | $wb['security_level_txt'] = "Stupeň zabezpečenia"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "BIND User"; |
| | | $wb['bind_group_txt'] = "BIND Group"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot domov'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sekcia'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted aplikácia'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted aplikácia'; |
| | | $wb['website_path_txt'] = 'Website cesta'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinky'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'Website základny adresár'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost konfig adresár'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost konfig odblokovaný adresár'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail konfig adresár'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter cesta'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter skript'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini Cesta'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. Requests'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['maildir_path_txt'] = 'Maildir Cesta'; |
| | | $wb['homedir_path_txt'] = 'Cesta k domovskému adresáru'; |
| | | $wb['mailuser_uid_txt'] = 'Mailuser UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mailuser GID'; |
| | | $wb['mailuser_name_txt'] = 'Mailuser Meno'; |
| | | $wb['mailuser_group_txt'] = 'Mailuser Skupina'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost uživateľ'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost heslo'; |
| | | $wb['mailbox_size_limit_txt'] = 'Limit ve?kosti poštovej schránky'; |
| | | $wb['message_size_limit_txt'] = 'Limit ve?kosti správy'; |
| | | $wb['ip_address_txt'] = 'IP Adresa'; |
| | | $wb['netmask_txt'] = 'Netmask'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameservery'; |
| | | $wb['auto_network_configuration_txt'] = 'Konfigurácia siete'; |
| | | $wb['ip_address_error_wrong'] = 'IP adresa v neplatnom formáte.'; |
| | | $wb['netmask_error_wrong'] = 'Maska siete má neplatný formát.'; |
| | | $wb['gateway_error_wrong'] = 'Neplatný formát Gateway.'; |
| | | $wb['hostname_error_empty'] = 'Hostname je prázdny.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver je prázdny.'; |
| | | $wb['config_dir_txt'] = 'Konfiguračný adresár'; |
| | | $wb['init_script_txt'] = 'Meno cron init skript '; |
| | | $wb['crontab_dir_txt'] = 'Cesta pre jednotlivé crontaby'; |
| | | $wb['wget_txt'] = 'Cesta k wget programu'; |
| | | $wb['web_user_txt'] = 'Apache uživateľ'; |
| | | $wb['web_group_txt'] = 'Apache skupina'; |
| | | $wb['security_level_txt'] = 'Stupeň zabezpečenia'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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['Remote Actions'] = 'Remote Actions'; |
| | | $wb['Do OS-Update'] = 'Do OS-Update'; |
| | | $wb['Do ISPConfig-Update'] = 'Do ISPConfig-Update'; |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['Directive Snippets'] = 'Directive Snippets'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['snippet_txt'] = 'Snippet'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['directive_snippets_name_empty'] = 'Please specify a name for the snippet.'; |
| | | $wb['directive_snippets_name_error_unique'] = 'There is already a directive snippet with this name.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Directive Snippets'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['name_txt'] = 'Name of Snippet'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['add_new_record_txt'] = 'Add Directive Snippet'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['jailkit_chroot_home_txt'] = "Jailkit chroot home"; |
| | | $wb['jailkit_chroot_app_sections_txt'] = "Jailkit chroot app sections"; |
| | | $wb['jailkit_chroot_app_programs_txt'] = "Jailkit chrooted applications"; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = "Jailkit cron chrooted applications"; |
| | | $wb['website_path_txt'] = "Website yolu"; |
| | | $wb['website_symlinks_txt'] = "Website symlinks"; |
| | | $wb['website_symlinks_rel_txt'] = "Make relative symlinks"; |
| | | $wb['website_basedir_txt'] = "Website klasörü"; |
| | | $wb['vhost_conf_dir_txt'] = "Vhost config dir"; |
| | | $wb['vhost_conf_enabled_dir_txt'] = "Vhost config enabled dir"; |
| | | $wb['getmail_config_dir_txt'] = "Getmail config dir"; |
| | | $wb['fastcgi_starter_path_txt'] = "FastCGI starter path"; |
| | | $wb['fastcgi_starter_script_txt'] = "FastCGI starter script"; |
| | | $wb['fastcgi_alias_txt'] = "FastCGI Alias"; |
| | | $wb['fastcgi_phpini_path_txt'] = "FastCGI php.ini Path"; |
| | | $wb['fastcgi_children_txt'] = "FastCGI Children"; |
| | | $wb['fastcgi_max_requests_txt'] = "FastCGI max. Requests"; |
| | | $wb['fastcgi_bin_txt'] = "FastCGI Bin"; |
| | | $wb['module_txt'] = "Modül"; |
| | | $wb['maildir_path_txt'] = "Mail dizini yolu"; |
| | | $wb['homedir_path_txt'] = "Kullanıcı dizini yolu"; |
| | | $wb['mailuser_uid_txt'] = "Mail kullanıcısı UID"; |
| | | $wb['mailuser_gid_txt'] = "Mail kullanıcısı GID"; |
| | | $wb['mailuser_name_txt'] = "Mail kullanıcısı Adı"; |
| | | $wb['mailuser_group_txt'] = "Mail kullanıcısı Grubu"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost Kullanıcı"; |
| | | $wb['relayhost_password_txt'] = "Relayhost Şifre"; |
| | | $wb['mailbox_size_limit_txt'] = "Mail kutusu boyutu"; |
| | | $wb['message_size_limit_txt'] = "Mesaj boyutu"; |
| | | $wb['ip_address_txt'] = "IP Adresleri"; |
| | | $wb['netmask_txt'] = "Netmask"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameservers"; |
| | | $wb['auto_network_configuration_txt'] = "Ağ Konfigurasyonu"; |
| | | $wb['ip_address_error_wrong'] = "Geçersiz IP adresi formatı."; |
| | | $wb['netmask_error_wrong'] = "Geçersiz Netmask formatı."; |
| | | $wb['gateway_error_wrong'] = "Geçersiz Gateway formatı."; |
| | | $wb['hostname_error_empty'] = "Hostname boş."; |
| | | $wb['nameservers_error_empty'] = "Nameserver boş."; |
| | | $wb['config_dir_txt'] = "Config dizini"; |
| | | $wb['init_script_txt'] = "Cron init script name"; |
| | | $wb['crontab_dir_txt'] = "Path for individual crontabs"; |
| | | $wb['wget_txt'] = "Path to wget program"; |
| | | $wb['web_user_txt'] = "Apache kullanıcısı"; |
| | | $wb['web_group_txt'] = "Apache grubu"; |
| | | $wb['security_level_txt'] = "Güvenlik seviyesi"; |
| | | $wb['loglevel_txt'] = "Loglevel"; |
| | | $wb['apps_vhost_port_txt'] = "Apps-vhost port"; |
| | | $wb['apps_vhost_ip_txt'] = "Apps-vhost IP"; |
| | | $wb['apps_vhost_servername_txt'] = "Apps-vhost Domain"; |
| | | $wb['bind_user_txt'] = "BIND User"; |
| | | $wb['bind_group_txt'] = "BIND Group"; |
| | | $wb['bind_zonefiles_dir_txt'] = "BIND zonefiles directory"; |
| | | $wb['named_conf_path_txt'] = "BIND named.conf path"; |
| | | $wb['bind_user_error_empty'] = "BIND user is empty."; |
| | | $wb['bind_group_error_empty'] = "BIND group is empty."; |
| | | $wb['bind_zonefiles_dir_error_empty'] = "BIND zonefiles directory is empty."; |
| | | $wb['named_conf_path_error_empty'] = "BIND named.conf path is empty."; |
| | | $wb['named_conf_local_path_error_empty'] = "BIND named.conf.local path is empty."; |
| | | $wb['mail_filter_syntax_txt'] = "Mailfilter Syntax"; |
| | | $wb['pop3_imap_daemon_txt'] = "POP3/IMAP Daemon"; |
| | | $wb['php_open_basedir_txt'] = "PHP open_basedir"; |
| | | $wb['php_open_basedir_error_empty'] = "PHP open_basedir is empty."; |
| | | $wb['htaccess_allow_override_txt'] = ".htaccess AllowOverride"; |
| | | $wb['htaccess_allow_override_error_empty'] = ".htaccess AllowOverride is empty."; |
| | | $wb['awstats_conf_dir_txt'] = "awstats conf folder"; |
| | | $wb['awstats_data_dir_txt'] = "awstats data folder"; |
| | | $wb['awstats_pl_txt'] = "awstats.pl script"; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = "awstats_buildstaticpages.pl script"; |
| | | $wb['backup_dir_txt'] = "Backup directory"; |
| | | $wb['named_conf_local_path_txt'] = "BIND named.conf.local path"; |
| | | $wb['php_ini_path_cgi_txt'] = "CGI php.ini path"; |
| | | $wb['php_ini_path_apache_txt'] = "Apache php.ini path"; |
| | | $wb['check_apache_config_txt'] = "Test apache configuration on restart"; |
| | | $wb['CA_path_txt'] = "CA Path"; |
| | | $wb['CA_pass_txt'] = "CA passphrase"; |
| | | $wb['ufw_enable_txt'] = "Enable"; |
| | | $wb['ufw_manage_builtins_txt'] = "Manage Builtin Rules"; |
| | | $wb['ufw_ipv6_txt'] = "Enable IPv6"; |
| | | $wb['ufw_default_input_policy_txt'] = "Default Input Policy"; |
| | | $wb['ufw_default_output_policy_txt'] = "Default Output Policy"; |
| | | $wb['ufw_default_forward_policy_txt'] = "Default Forward Policy"; |
| | | $wb['ufw_default_application_policy_txt'] = "Default Application Policy"; |
| | | $wb['ufw_log_level_txt'] = "Log Level"; |
| | | $wb['network_config_warning_txt'] = "The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0."; |
| | | $wb['fastcgi_config_syntax_txt'] = "FastCGI config syntax"; |
| | | $wb['server_type_txt'] = "Server Type"; |
| | | $wb['nginx_vhost_conf_dir_txt'] = "Nginx Vhost config dir"; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = "Nginx Vhost config enabled dir"; |
| | | $wb['nginx_user_txt'] = "Nginx user"; |
| | | $wb['nginx_group_txt'] = "Nginx group"; |
| | | $wb['nginx_cgi_socket_txt'] = "Nginx CGI Socket"; |
| | | $wb['backup_dir_error_empty'] = "Backup directory is empty."; |
| | | $wb['maildir_path_error_empty'] = "Maildir Path is empty."; |
| | | $wb['homedir_path_error_empty'] = "Homedir Path is empty."; |
| | | $wb['mailuser_uid_error_empty'] = "Mailuser UID is empty."; |
| | | $wb['mailuser_gid_error_empty'] = "Mailuser GID is empty."; |
| | | $wb['mailuser_name_error_empty'] = "Mailuser Name is empty."; |
| | | $wb['mailuser_group_error_empty'] = "Mailuser Group is empty."; |
| | | $wb['getmail_config_dir_error_empty'] = "Getmail config dir is empty."; |
| | | $wb['website_basedir_error_empty'] = "Website basedir is empty."; |
| | | $wb['website_path_error_empty'] = "Website path is empty."; |
| | | $wb['website_symlinks_error_empty'] = "Website symlinks is empty."; |
| | | $wb['vhost_conf_dir_error_empty'] = "Vhost config dir is empty."; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = "Vhost config enabled dir is empty."; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = "Nginx Vhost config dir is empty."; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = "Nginx Vhost config enabled dir is empty."; |
| | | $wb['apache_user_error_empty'] = "Apache user is empty."; |
| | | $wb['apache_group_error_empty'] = "Apache group is empty."; |
| | | $wb['nginx_user_error_empty'] = "Nginx user is empty."; |
| | | $wb['nginx_group_error_empty'] = "Nginx group is empty."; |
| | | $wb['php_ini_path_apache_error_empty'] = "Apache php.ini path is empty."; |
| | | $wb['php_ini_path_cgi_error_empty'] = "CGI php.ini path is empty."; |
| | | $wb['nginx_cgi_socket_empty'] = "Nginx CGI Socket is empty."; |
| | | $wb['apps_vhost_port_error_empty'] = "Apps-vhost port is empty."; |
| | | $wb['apps_vhost_ip_error_empty'] = "Apps-vhost IP is empty."; |
| | | $wb['fastcgi_starter_path_error_empty'] = "FastCGI starter path is empty."; |
| | | $wb['fastcgi_starter_script_error_empty'] = "FastCGI starter script is empty."; |
| | | $wb['fastcgi_alias_error_empty'] = "FastCGI Alias is empty."; |
| | | $wb['fastcgi_phpini_path_error_empty'] = "FastCGI php.ini Path is empty."; |
| | | $wb['fastcgi_children_error_empty'] = "FastCGI Children is empty."; |
| | | $wb['fastcgi_max_requests_error_empty'] = "FastCGI max. Requests is empty."; |
| | | $wb['fastcgi_bin_error_empty'] = "FastCGI Bin is empty."; |
| | | $wb['jailkit_chroot_home_error_empty'] = "Jailkit chroot home is empty."; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = "Jailkit chroot app sections is empty."; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = "Jailkit chrooted applications is empty."; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = "Jailkit cron chrooted applications is empty."; |
| | | $wb['vlogger_config_dir_error_empty'] = "Config directory is empty."; |
| | | $wb['cron_init_script_error_empty'] = "Cron init script name is empty."; |
| | | $wb['crontab_dir_error_empty'] = "Path for individual crontabs is empty."; |
| | | $wb['cron_wget_error_empty'] = "Path to wget program is empty."; |
| | | $wb['php_fpm_init_script_txt'] = "PHP-FPM init script"; |
| | | $wb['php_fpm_init_script_error_empty'] = "PHP-FPM init script is empty."; |
| | | $wb['php_fpm_ini_path_txt'] = "PHP-FPM php.ini path"; |
| | | $wb['php_fpm_ini_path_error_empty'] = "PHP-FPM php.ini path is empty."; |
| | | $wb['php_fpm_pool_dir_txt'] = "PHP-FPM pool directory"; |
| | | $wb['php_fpm_pool_dir_error_empty'] = "PHP-FPM pool directory is empty."; |
| | | $wb['php_fpm_start_port_txt'] = "PHP-FPM start port"; |
| | | $wb['php_fpm_start_port_error_empty'] = "PHP-FPM start port is empty."; |
| | | $wb['php_fpm_socket_dir_txt'] = "PHP-FPM socket directory"; |
| | | $wb['php_fpm_socket_dir_error_empty'] = "PHP-FPM socket directory is empty."; |
| | | $wb['try_rescue_txt'] = "Enable service monitoring and restart on failure"; |
| | | $wb['do_not_try_rescue_mysql_txt'] = "Disable MySQL monitoring"; |
| | | $wb['do_not_try_rescue_mail_txt'] = "Disable Email monitoring"; |
| | | $wb['rescue_description_txt'] = "<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!"; |
| | | $wb['enable_sni_txt'] = "Enable SNI"; |
| | | $wb['do_not_try_rescue_httpd_txt'] = "Disable HTTPD monitoring"; |
| | | $wb['set_folder_permissions_on_update_txt'] = "Set folder permissions on update"; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = "Add web users to -sshusers- group"; |
| | | $wb['connect_userid_to_webid_txt'] = "Connect Linux userid to webid"; |
| | | $wb['connect_userid_to_webid_start_txt'] = "Start ID for userid/webid connect"; |
| | | $wb['website_autoalias_txt'] = "Website auto alias"; |
| | | $wb['website_autoalias_note_txt'] = "Placeholders:"; |
| | | $wb['backup_mode_txt'] = "Backup mode"; |
| | | $wb['backup_mode_userzip'] = "Backup web files owned by web user as zip"; |
| | | $wb['backup_mode_rootgz'] = "Backup all files in web directory as root user"; |
| | | $wb['realtime_blackhole_list_txt'] = "Real-time Blackhole List"; |
| | | $wb['realtime_blackhole_list_note_txt'] = "(Separate RBL's with commas)"; |
| | | $wb['ssl_settings_txt'] = "SSL Settings"; |
| | | $wb['permissions_txt'] = "Permissions"; |
| | | $wb['php_settings_txt'] = "PHP Settings"; |
| | | $wb['apps_vhost_settings_txt'] = "Apps Vhost Settings"; |
| | | $wb['awstats_settings_txt'] = "AWStats Settings"; |
| | | $wb['firewall_txt'] = "Firewall"; |
| | | $wb['mailbox_quota_stats_txt'] = "Mailbox quota statistics"; |
| | | $wb['enable_ip_wildcard_txt'] = "Enable IP wildcard (*)"; |
| | | $wb['web_folder_protection_txt'] = "Make web folders immutable (extended attributes)"; |
| | | $wb['jailkit_chroot_home_txt'] = 'Jailkit chroot home'; |
| | | $wb['jailkit_chroot_app_sections_txt'] = 'Jailkit chroot app sections'; |
| | | $wb['jailkit_chroot_app_programs_txt'] = 'Jailkit chrooted applications'; |
| | | $wb['jailkit_chroot_cron_programs_txt'] = 'Jailkit cron chrooted applications'; |
| | | $wb['website_path_txt'] = 'Website yolu'; |
| | | $wb['website_symlinks_txt'] = 'Website symlinks'; |
| | | $wb['website_symlinks_rel_txt'] = 'Make relative symlinks'; |
| | | $wb['website_basedir_txt'] = 'Website klasörü'; |
| | | $wb['vhost_conf_dir_txt'] = 'Vhost config dir'; |
| | | $wb['vhost_conf_enabled_dir_txt'] = 'Vhost config enabled dir'; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail config dir'; |
| | | $wb['fastcgi_starter_path_txt'] = 'FastCGI starter path'; |
| | | $wb['fastcgi_starter_script_txt'] = 'FastCGI starter script'; |
| | | $wb['fastcgi_alias_txt'] = 'FastCGI Alias'; |
| | | $wb['fastcgi_phpini_path_txt'] = 'FastCGI php.ini Path'; |
| | | $wb['fastcgi_children_txt'] = 'FastCGI Children'; |
| | | $wb['fastcgi_max_requests_txt'] = 'FastCGI max. Requests'; |
| | | $wb['fastcgi_bin_txt'] = 'FastCGI Bin'; |
| | | $wb['module_txt'] = 'Modül'; |
| | | $wb['maildir_path_txt'] = 'Mail dizini yolu'; |
| | | $wb['homedir_path_txt'] = 'Kullanıcı dizini yolu'; |
| | | $wb['mailuser_uid_txt'] = 'Mail kullanıcısı UID'; |
| | | $wb['mailuser_gid_txt'] = 'Mail kullanıcısı GID'; |
| | | $wb['mailuser_name_txt'] = 'Mail kullanıcısı Adı'; |
| | | $wb['mailuser_group_txt'] = 'Mail kullanıcısı Grubu'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost Kullanıcı'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Şifre'; |
| | | $wb['mailbox_size_limit_txt'] = 'Mail kutusu boyutu'; |
| | | $wb['message_size_limit_txt'] = 'Mesaj boyutu'; |
| | | $wb['ip_address_txt'] = 'IP Adresleri'; |
| | | $wb['netmask_txt'] = 'Netmask'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameservers'; |
| | | $wb['auto_network_configuration_txt'] = 'Ağ Konfigurasyonu'; |
| | | $wb['ip_address_error_wrong'] = 'Geçersiz IP adresi formatı.'; |
| | | $wb['netmask_error_wrong'] = 'Geçersiz Netmask formatı.'; |
| | | $wb['gateway_error_wrong'] = 'Geçersiz Gateway formatı.'; |
| | | $wb['hostname_error_empty'] = 'Hostname boş.'; |
| | | $wb['nameservers_error_empty'] = 'Nameserver boş.'; |
| | | $wb['config_dir_txt'] = 'Config dizini'; |
| | | $wb['init_script_txt'] = 'Cron init script name'; |
| | | $wb['crontab_dir_txt'] = 'Path for individual crontabs'; |
| | | $wb['wget_txt'] = 'Path to wget program'; |
| | | $wb['web_user_txt'] = 'Apache kullanıcısı'; |
| | | $wb['web_group_txt'] = 'Apache grubu'; |
| | | $wb['security_level_txt'] = 'Güvenlik seviyesi'; |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['apps_vhost_port_txt'] = 'Apps-vhost port'; |
| | | $wb['apps_vhost_ip_txt'] = 'Apps-vhost IP'; |
| | | $wb['apps_vhost_servername_txt'] = 'Apps-vhost Domain'; |
| | | $wb['bind_user_txt'] = 'BIND User'; |
| | | $wb['bind_group_txt'] = 'BIND Group'; |
| | | $wb['bind_zonefiles_dir_txt'] = 'BIND zonefiles directory'; |
| | | $wb['named_conf_path_txt'] = 'BIND named.conf path'; |
| | | $wb['bind_user_error_empty'] = 'BIND user is empty.'; |
| | | $wb['bind_group_error_empty'] = 'BIND group is empty.'; |
| | | $wb['bind_zonefiles_dir_error_empty'] = 'BIND zonefiles directory is empty.'; |
| | | $wb['named_conf_path_error_empty'] = 'BIND named.conf path is empty.'; |
| | | $wb['named_conf_local_path_error_empty'] = 'BIND named.conf.local path is empty.'; |
| | | $wb['mail_filter_syntax_txt'] = 'Mailfilter Syntax'; |
| | | $wb['pop3_imap_daemon_txt'] = 'POP3/IMAP Daemon'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['php_open_basedir_error_empty'] = 'PHP open_basedir is empty.'; |
| | | $wb['htaccess_allow_override_txt'] = '.htaccess AllowOverride'; |
| | | $wb['htaccess_allow_override_error_empty'] = '.htaccess AllowOverride is empty.'; |
| | | $wb['awstats_conf_dir_txt'] = 'awstats conf folder'; |
| | | $wb['awstats_data_dir_txt'] = 'awstats data folder'; |
| | | $wb['awstats_pl_txt'] = 'awstats.pl script'; |
| | | $wb['awstats_buildstaticpages_pl_txt'] = 'awstats_buildstaticpages.pl script'; |
| | | $wb['backup_dir_txt'] = 'Backup directory'; |
| | | $wb['named_conf_local_path_txt'] = 'BIND named.conf.local path'; |
| | | $wb['php_ini_path_cgi_txt'] = 'CGI php.ini path'; |
| | | $wb['php_ini_path_apache_txt'] = 'Apache php.ini path'; |
| | | $wb['check_apache_config_txt'] = 'Test apache configuration on restart'; |
| | | $wb['CA_path_txt'] = 'CA Path'; |
| | | $wb['CA_pass_txt'] = 'CA passphrase'; |
| | | $wb['ufw_enable_txt'] = 'Enable'; |
| | | $wb['ufw_manage_builtins_txt'] = 'Manage Builtin Rules'; |
| | | $wb['ufw_ipv6_txt'] = 'Enable IPv6'; |
| | | $wb['ufw_default_input_policy_txt'] = 'Default Input Policy'; |
| | | $wb['ufw_default_output_policy_txt'] = 'Default Output Policy'; |
| | | $wb['ufw_default_forward_policy_txt'] = 'Default Forward Policy'; |
| | | $wb['ufw_default_application_policy_txt'] = 'Default Application Policy'; |
| | | $wb['ufw_log_level_txt'] = 'Log Level'; |
| | | $wb['network_config_warning_txt'] = 'The network configuration option is only available for Debian and Ubuntu Servers. Do not enable this option if your network interface is not eth0.'; |
| | | $wb['fastcgi_config_syntax_txt'] = 'FastCGI config syntax'; |
| | | $wb['server_type_txt'] = 'Server Type'; |
| | | $wb['nginx_vhost_conf_dir_txt'] = 'Nginx Vhost config dir'; |
| | | $wb['nginx_vhost_conf_enabled_dir_txt'] = 'Nginx Vhost config enabled dir'; |
| | | $wb['nginx_user_txt'] = 'Nginx user'; |
| | | $wb['nginx_group_txt'] = 'Nginx group'; |
| | | $wb['nginx_cgi_socket_txt'] = 'Nginx CGI Socket'; |
| | | $wb['backup_dir_error_empty'] = 'Backup directory is empty.'; |
| | | $wb['maildir_path_error_empty'] = 'Maildir Path is empty.'; |
| | | $wb['homedir_path_error_empty'] = 'Homedir Path is empty.'; |
| | | $wb['mailuser_uid_error_empty'] = 'Mailuser UID is empty.'; |
| | | $wb['mailuser_gid_error_empty'] = 'Mailuser GID is empty.'; |
| | | $wb['mailuser_name_error_empty'] = 'Mailuser Name is empty.'; |
| | | $wb['mailuser_group_error_empty'] = 'Mailuser Group is empty.'; |
| | | $wb['getmail_config_dir_error_empty'] = 'Getmail config dir is empty.'; |
| | | $wb['website_basedir_error_empty'] = 'Website basedir is empty.'; |
| | | $wb['website_path_error_empty'] = 'Website path is empty.'; |
| | | $wb['website_symlinks_error_empty'] = 'Website symlinks is empty.'; |
| | | $wb['vhost_conf_dir_error_empty'] = 'Vhost config dir is empty.'; |
| | | $wb['vhost_conf_enabled_dir_error_empty'] = 'Vhost config enabled dir is empty.'; |
| | | $wb['nginx_vhost_conf_dir_error_empty'] = 'Nginx Vhost config dir is empty.'; |
| | | $wb['nginx_vhost_conf_enabled_dir_error_empty'] = 'Nginx Vhost config enabled dir is empty.'; |
| | | $wb['apache_user_error_empty'] = 'Apache user is empty.'; |
| | | $wb['apache_group_error_empty'] = 'Apache group is empty.'; |
| | | $wb['nginx_user_error_empty'] = 'Nginx user is empty.'; |
| | | $wb['nginx_group_error_empty'] = 'Nginx group is empty.'; |
| | | $wb['php_ini_path_apache_error_empty'] = 'Apache php.ini path is empty.'; |
| | | $wb['php_ini_path_cgi_error_empty'] = 'CGI php.ini path is empty.'; |
| | | $wb['nginx_cgi_socket_empty'] = 'Nginx CGI Socket is empty.'; |
| | | $wb['apps_vhost_port_error_empty'] = 'Apps-vhost port is empty.'; |
| | | $wb['apps_vhost_ip_error_empty'] = 'Apps-vhost IP is empty.'; |
| | | $wb['fastcgi_starter_path_error_empty'] = 'FastCGI starter path is empty.'; |
| | | $wb['fastcgi_starter_script_error_empty'] = 'FastCGI starter script is empty.'; |
| | | $wb['fastcgi_alias_error_empty'] = 'FastCGI Alias is empty.'; |
| | | $wb['fastcgi_phpini_path_error_empty'] = 'FastCGI php.ini Path is empty.'; |
| | | $wb['fastcgi_children_error_empty'] = 'FastCGI Children is empty.'; |
| | | $wb['fastcgi_max_requests_error_empty'] = 'FastCGI max. Requests is empty.'; |
| | | $wb['fastcgi_bin_error_empty'] = 'FastCGI Bin is empty.'; |
| | | $wb['jailkit_chroot_home_error_empty'] = 'Jailkit chroot home is empty.'; |
| | | $wb['jailkit_chroot_app_sections_error_empty'] = 'Jailkit chroot app sections is empty.'; |
| | | $wb['jailkit_chroot_app_programs_error_empty'] = 'Jailkit chrooted applications is empty.'; |
| | | $wb['jailkit_chroot_cron_programs_error_empty'] = 'Jailkit cron chrooted applications is empty.'; |
| | | $wb['vlogger_config_dir_error_empty'] = 'Config directory is empty.'; |
| | | $wb['cron_init_script_error_empty'] = 'Cron init script name is empty.'; |
| | | $wb['crontab_dir_error_empty'] = 'Path for individual crontabs is empty.'; |
| | | $wb['cron_wget_error_empty'] = 'Path to wget program is empty.'; |
| | | $wb['php_fpm_init_script_txt'] = 'PHP-FPM init script'; |
| | | $wb['php_fpm_init_script_error_empty'] = 'PHP-FPM init script is empty.'; |
| | | $wb['php_fpm_ini_path_txt'] = 'PHP-FPM php.ini path'; |
| | | $wb['php_fpm_ini_path_error_empty'] = 'PHP-FPM php.ini path is empty.'; |
| | | $wb['php_fpm_pool_dir_txt'] = 'PHP-FPM pool directory'; |
| | | $wb['php_fpm_pool_dir_error_empty'] = 'PHP-FPM pool directory is empty.'; |
| | | $wb['php_fpm_start_port_txt'] = 'PHP-FPM start port'; |
| | | $wb['php_fpm_start_port_error_empty'] = 'PHP-FPM start port is empty.'; |
| | | $wb['php_fpm_socket_dir_txt'] = 'PHP-FPM socket directory'; |
| | | $wb['php_fpm_socket_dir_error_empty'] = 'PHP-FPM socket directory is empty.'; |
| | | $wb['try_rescue_txt'] = 'Enable service monitoring and restart on failure'; |
| | | $wb['do_not_try_rescue_mysql_txt'] = 'Disable MySQL monitoring'; |
| | | $wb['do_not_try_rescue_mail_txt'] = 'Disable Email monitoring'; |
| | | $wb['rescue_description_txt'] = '<b>Information:</b> If you want to shut down mysql you have to select the Disable MySQL monitor checkbox and then wait 2-3 minutes.<br>if you do not wait 2-3 minutes, rescue will try to restart mysql!'; |
| | | $wb['enable_sni_txt'] = 'Enable SNI'; |
| | | $wb['do_not_try_rescue_httpd_txt'] = 'Disable HTTPD monitoring'; |
| | | $wb['set_folder_permissions_on_update_txt'] = 'Set folder permissions on update'; |
| | | $wb['add_web_users_to_sshusers_group_txt'] = 'Add web users to -sshusers- group'; |
| | | $wb['connect_userid_to_webid_txt'] = 'Connect Linux userid to webid'; |
| | | $wb['connect_userid_to_webid_start_txt'] = 'Start ID for userid/webid connect'; |
| | | $wb['website_autoalias_txt'] = 'Website auto alias'; |
| | | $wb['website_autoalias_note_txt'] = 'Placeholders:'; |
| | | $wb['backup_mode_txt'] = 'Backup mode'; |
| | | $wb['backup_mode_userzip'] = 'Backup web files owned by web user as zip'; |
| | | $wb['backup_mode_rootgz'] = 'Backup all files in web directory as root user'; |
| | | $wb['realtime_blackhole_list_txt'] = 'Real-time Blackhole List'; |
| | | $wb['realtime_blackhole_list_note_txt'] = '(Separate RBL\'s with commas)'; |
| | | $wb['ssl_settings_txt'] = 'SSL Settings'; |
| | | $wb['permissions_txt'] = 'Permissions'; |
| | | $wb['php_settings_txt'] = 'PHP Settings'; |
| | | $wb['apps_vhost_settings_txt'] = 'Apps Vhost Settings'; |
| | | $wb['awstats_settings_txt'] = 'AWStats Settings'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'Mailbox quota statistics'; |
| | | $wb['enable_ip_wildcard_txt'] = 'Enable IP wildcard (*)'; |
| | | $wb['web_folder_protection_txt'] = 'Make web folders immutable (extended attributes)'; |
| | | $wb['overtraffic_notify_admin_txt'] = 'Send overtraffic notification to admin'; |
| | | $wb['overtraffic_notify_client_txt'] = 'Send overtraffic notification to client'; |
| | | ?> |
| | |
| | | $wb['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!'; |
| | | ?> |
| | |
| | | 'prefix' => "", |
| | | 'suffix' => "", |
| | | 'width' => "", |
| | | 'value' => array('apache' => 'Apache', 'nginx' => 'nginx', 'php' => 'PHP')); |
| | | 'value' => array('apache' => 'Apache', 'nginx' => 'nginx', 'php' => 'PHP', 'proxy' => 'Proxy')); |
| | | |
| | | ?> |
| | |
| | | if(@is_array($this->dataRecord['modules']) && !in_array($this->dataRecord['startmodule'],$this->dataRecord['modules'])) { |
| | | $app->tform->errorMessage .= $app->tform->wordbook['startmodule_err']; |
| | | } |
| | | $this->oldDataRecord = $app->tform->getDataRecord($this->id); |
| | | } |
| | | |
| | | /* |
| | | This function is called automatically right after |
| | | the data was successful updated in the database. |
| | | */ |
| | | function onAfterUpdate() { |
| | | global $app, $conf; |
| | | |
| | | $client = $app->db->queryOneRecord("SELECT * FROM sys_user WHERE userid = ".$this->id); |
| | | $client_id = $client['client_id']; |
| | | $username = $app->db->quote($this->dataRecord["username"]); |
| | | $old_username = $app->db->quote($this->oldDataRecord['username']); |
| | | |
| | | // username changed |
| | | if(isset($conf['demo_mode']) && $conf['demo_mode'] != true && isset($this->dataRecord['username']) && $this->dataRecord['username'] != '' && $this->oldDataRecord['username'] != $this->dataRecord['username']) { |
| | | $sql = "UPDATE client SET username = '$username' WHERE client_id = $client_id AND username = '$old_username'"; |
| | | $app->db->query($sql); |
| | | $tmp = $app->db->queryOneRecord("SELECT * FROM sys_group WHERE client_id = $client_id"); |
| | | $app->db->datalogUpdate("sys_group", "name = '$username'", 'groupid', $tmp['groupid']); |
| | | unset($tmp); |
| | | } |
| | | |
| | | // password changed |
| | | if(isset($conf['demo_mode']) && $conf['demo_mode'] != true && isset($this->dataRecord["passwort"]) && $this->dataRecord["passwort"] != '') { |
| | | $password = $app->db->quote($this->dataRecord["passwort"]); |
| | | $salt="$1$"; |
| | | $base64_alphabet='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; |
| | | for ($n=0;$n<8;$n++) { |
| | | $salt.=$base64_alphabet[mt_rand(0,63)]; |
| | | } |
| | | $salt.="$"; |
| | | $password = crypt(stripslashes($password),$salt); |
| | | $sql = "UPDATE client SET password = '$password' WHERE client_id = $client_id AND username = '$username'"; |
| | | $app->db->query($sql); |
| | | } |
| | | |
| | | // language changed |
| | | if(isset($conf['demo_mode']) && $conf['demo_mode'] != true && isset($this->dataRecord['language']) && $this->dataRecord['language'] != '' && $this->oldDataRecord['language'] != $this->dataRecord['language']) { |
| | | $language = $app->db->quote($this->dataRecord["language"]); |
| | | $sql = "UPDATE client SET language = '$language' WHERE client_id = $client_id AND username = '$username'"; |
| | | $app->db->query($sql); |
| | | } |
| | | |
| | | // reseller status changed |
| | | /* |
| | | if(isset($this->dataRecord["limit_client"]) && $this->dataRecord["limit_client"] != $this->oldDataRecord["limit_client"]) { |
| | | $modules = $conf['interface_modules_enabled']; |
| | | if($this->dataRecord["limit_client"] > 0) $modules .= ',client'; |
| | | $modules = $app->db->quote($modules); |
| | | $client_id = $this->id; |
| | | $sql = "UPDATE sys_user SET modules = '$modules' WHERE client_id = $client_id"; |
| | | $app->db->query($sql); |
| | | } |
| | | */ |
| | | parent::onAfterUpdate(); |
| | | } |
| | | |
| | | } |
| | |
| | | $client_group = $app->db->queryOneRecord("SELECT groupid FROM sys_group WHERE client_id = $client_id"); |
| | | |
| | | // Get all records (sub-clients, mail, web, etc....) of this client. |
| | | $tables = 'cron,client,dns_rr,dns_soa,dns_slave,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_domain'; |
| | | $tables = 'cron,client,dns_rr,dns_soa,dns_slave,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_database_user,web_domain'; |
| | | $tables_array = explode(',',$tables); |
| | | $client_group_id = $app->functions->intval($client_group['groupid']); |
| | | |
| | |
| | | $app->db->query("DELETE FROM sys_user WHERE client_id = $client_id"); |
| | | |
| | | // Delete all records (sub-clients, mail, web, etc....) of this client. |
| | | $tables = 'client,dns_rr,dns_soa,dns_slave,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_domain,web_folder,web_folder_user,domain'; |
| | | $tables = 'client,dns_rr,dns_soa,dns_slave,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_database_user,web_domain,web_folder,web_folder_user,domain'; |
| | | $tables_array = explode(',',$tables); |
| | | $client_group_id = $app->functions->intval($client_group['groupid']); |
| | | if($client_group_id > 1) { |
| | | foreach($tables_array as $table) { |
| | | if($table != '') { |
| | | $records = $app->db->queryAllRecords("SELECT * FROM $table WHERE sys_groupid = ".$client_group_id); |
| | | // find the primary ID of the table |
| | | //* find the primary ID of the table |
| | | $table_info = $app->db->tableInfo($table); |
| | | $index_field = ''; |
| | | foreach($table_info as $tmp) { |
| | | if($tmp['option'] == 'primary') $index_field = $tmp['name']; |
| | | } |
| | | // Delete the records |
| | | //* Delete the records |
| | | if($index_field != '') { |
| | | if(is_array($records)) { |
| | | foreach($records as $rec) { |
| | |
| | | the data was successful updated in the database. |
| | | */ |
| | | function onAfterUpdate() { |
| | | global $app; |
| | | global $app, $conf; |
| | | // username changed |
| | | if(isset($conf['demo_mode']) && $conf['demo_mode'] != true && isset($this->dataRecord['username']) && $this->dataRecord['username'] != '' && $this->oldDataRecord['username'] != $this->dataRecord['username']) { |
| | | $username = $app->db->quote($this->dataRecord["username"]); |
| | |
| | | 'rows' => '10', |
| | | 'cols' => '30' |
| | | ), |
| | | 'paypal_email' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'filters' => array( 0 => array( 'event' => 'SAVE', |
| | | 'type' => 'IDNTOASCII'), |
| | | 1 => array( 'event' => 'SHOW', |
| | | 'type' => 'IDNTOUTF8'), |
| | | 2 => array( 'event' => 'SAVE', |
| | | 'type' => 'TOLOWER') |
| | | ), |
| | | 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^(\w+[\w\.\-\+]*\w{0,}@\w+[\w.-]*\.[a-z\-]{2,10}){0,1}$/i', |
| | | 'errmsg'=> 'paypal_email_error_isemail'), |
| | | ), |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255', |
| | | 'rows' => '', |
| | | 'cols' => '', |
| | | 'searchable' => 2 |
| | | ), |
| | | ################################## |
| | | # END Datatable fields |
| | | ################################## |
| | |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | 'company_id' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '20', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | 'bank_account_owner' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | 'bank_account_number' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | 'bank_code' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | 'bank_name' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | 'bank_account_iban' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | 'bank_account_swift' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255', |
| | | 'rows' => '', |
| | | 'cols' => '' |
| | | ), |
| | | 'notes' => array ( |
| | | 'datatype' => 'TEXT', |
| | | 'formtype' => 'TEXTAREA', |
| | |
| | | 'rows' => '10', |
| | | 'cols' => '30' |
| | | ), |
| | | 'paypal_email' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'filters' => array( 0 => array( 'event' => 'SAVE', |
| | | 'type' => 'IDNTOASCII'), |
| | | 1 => array( 'event' => 'SHOW', |
| | | 'type' => 'IDNTOUTF8'), |
| | | 2 => array( 'event' => 'SAVE', |
| | | 'type' => 'TOLOWER') |
| | | ), |
| | | 'validators' => array ( 0 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^(\w+[\w\.\-\+]*\w{0,}@\w+[\w.-]*\.[a-z\-]{2,10}){0,1}$/i', |
| | | 'errmsg'=> 'paypal_email_error_isemail'), |
| | | ), |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'separator' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255', |
| | | 'rows' => '', |
| | | 'cols' => '', |
| | | 'searchable' => 2 |
| | | ), |
| | | ################################## |
| | | # END Datatable fields |
| | | ################################## |
| | |
| | | $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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['limit_hterror_txt'] = 'Custom error docs available'; |
| | | $wb['limit_wildcard_txt'] = 'Wildcard subdomain available'; |
| | | $wb['limit_ssl_txt'] = 'SSL available'; |
| | | $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['limit_hterror_txt'] = 'Custom error docs available'; |
| | | $wb['limit_wildcard_txt'] = 'Wildcard subdomain available'; |
| | | $wb['limit_ssl_txt'] = 'SSL available'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | ?> |
| | |
| | | $wb['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['telephone_txt'] = 'Telefon'; |
| | | $wb['mobile_txt'] = 'Mobilní telefon'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['email_txt'] = 'Kontaktní email na klienta'; |
| | | $wb['internet_txt'] = 'WWW stránky klienta'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Poznámky'; |
| | | $wb['company_txt'] = 'Společnost'; |
| | |
| | | $wb['limit_trafficquota_error_notint'] = 'Přenosová kvót musí být číslo.'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. number of Webdav users'; |
| | | $wb['limit_webdav_user_error_notint'] = 'The webdav user limit must be a number.'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['vat_id_txt'] = 'VAT ID'; |
| | | $wb['required_fields_txt'] = '* Required fields'; |
| | | $wb['customer_no_txt'] = 'Zákaznické číslo'; |
| | | $wb['vat_id_txt'] = 'DIČ'; |
| | | $wb['required_fields_txt'] = '* Povinná pole'; |
| | | $wb['company_id_txt'] = 'IČO'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. number of mailing lists'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'The mailing list record 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['bank_account_number_txt'] = 'Bank account no.'; |
| | | $wb['bank_code_txt'] = 'Bank code'; |
| | | $wb['bank_name_txt'] = 'Bank name'; |
| | | $wb['bank_account_number_txt'] = 'Číslo účtu'; |
| | | $wb['bank_code_txt'] = 'Kód banky'; |
| | | $wb['bank_name_txt'] = 'Název banky'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC / Swift'; |
| | | $wb['web_limits_txt'] = 'Web Limits'; |
| | |
| | | $wb['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['generate_password_txt'] = 'Generovat heslo'; |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | $wb['active_template_additional_txt'] = 'Active Addons'; |
| | | $wb['bank_account_owner_txt'] = 'Bankovní účet vlastníka'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | ?> |
| | |
| | | $wb['confirm_action_txt'] = 'Potvrdit akci'; |
| | | $wb['delete_explanation'] = 'Tato akce smaže následující počet záznamů přidružených s tímto klientem'; |
| | | $wb['btn_save_txt'] = 'Smazat klienta'; |
| | | $wb['btn_cancel_txt'] = 'Storno bez smazání klienta'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit bez smazání klienta'; |
| | | ?> |
| | |
| | | $wb['limit_traffic_quota_txt'] = 'Přenosová kvóta'; |
| | | $wb['limit_trafficquota_error_notint'] = 'Přenosová kvót musí být číslo.'; |
| | | $wb['limit_dns_record_error_notint'] = 'The dns record limit must be a number.'; |
| | | $wb['customer_no_txt'] = 'Customer No.'; |
| | | $wb['vat_id_txt'] = 'VAT ID'; |
| | | $wb['required_fields_txt'] = '* Required fields'; |
| | | $wb['customer_no_txt'] = 'Zákaznické číslo'; |
| | | $wb['vat_id_txt'] = 'DIČ'; |
| | | $wb['required_fields_txt'] = '* Povinná pole'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. number of Webdav users'; |
| | | $wb['limit_webdav_user_error_notint'] = 'The webdav user limit must be a number.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. number of mailing lists'; |
| | |
| | | $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['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['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['customer_no_error_unique'] = 'The customer no. must be unique (or empty).'; |
| | | ?> |
| | |
| | | $wb['error_client_can_not_add_domain'] = 'Sie können keine neue Domain anlegen'; |
| | | $wb['error_client_group_id_empty'] = 'Sie müssen ein Benutzerdefiniertes auswählen<br>'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['limit_maildomain_txt'] = "Max. Anzahl an E-Mail Domains"; |
| | | $wb['limit_mailbox_txt'] = "Max. Anzahl an Mailboxen"; |
| | | $wb['limit_mailalias_txt'] = "Max. Anzahl an E-Mail Aliases"; |
| | | $wb['limit_mailforward_txt'] = "Max. Anzahl an E-Mail Weiterleitungen"; |
| | | $wb['limit_mailcatchall_txt'] = "Max. Anzahl an E-Mail Catchall Konten"; |
| | | $wb['limit_mailrouting_txt'] = "Max. Anzahl an E-Mail Routen"; |
| | | $wb['limit_mailfilter_txt'] = "Max. Anzahl an E-Mail Filter"; |
| | | $wb['limit_fetchmail_txt'] = "Max. Anzahl an Fetchmail Konten"; |
| | | $wb['limit_mailquota_txt'] = "Mailboxbeschränkung"; |
| | | $wb['limit_spamfilter_wblist_txt'] = "Max. Anzahl an Spamfilter (White-/Blacklist)"; |
| | | $wb['limit_spamfilter_user_txt'] = "Max. Anzahl an Spamfilter Benutzern"; |
| | | $wb['limit_spamfilter_policy_txt'] = "Max. Anzahl an Spamfilter Richtlinien"; |
| | | $wb['default_mailserver_txt'] = "Standardmailserver"; |
| | | $wb['company_name_txt'] = "Firmenname"; |
| | | $wb['contact_name_txt'] = "Kontakt"; |
| | | $wb['username_txt'] = "Benutzername"; |
| | | $wb['password_txt'] = "Passwort"; |
| | | $wb['language_txt'] = "Sprache"; |
| | | $wb['usertheme_txt'] = "Design"; |
| | | $wb['street_txt'] = "Straße"; |
| | | $wb['zip_txt'] = "PLZ"; |
| | | $wb['city_txt'] = "Ort"; |
| | | $wb['state_txt'] = "Bundesland"; |
| | | $wb['country_txt'] = "Land"; |
| | | $wb['telephone_txt'] = "Telefon"; |
| | | $wb['mobile_txt'] = "Mobiltelefon"; |
| | | $wb['fax_txt'] = "Fax"; |
| | | $wb['email_txt'] = "E-Mail"; |
| | | $wb['internet_txt'] = "Internet"; |
| | | $wb['icq_txt'] = "ICQ"; |
| | | $wb['notes_txt'] = "Notizen"; |
| | | $wb['company_txt'] = "Firma"; |
| | | $wb['title_txt'] = "Titel"; |
| | | $wb['firstname_txt'] = "Vorname"; |
| | | $wb['surname_txt'] = "Nachname"; |
| | | $wb['limit_client_txt'] = "Max. Anzahl an Kunden"; |
| | | $wb['limit_domain_txt'] = "Max. Anzahl an Domains"; |
| | | $wb['limit_subdomain_txt'] = "Max. Anzahl an Subdomains"; |
| | | $wb['limit_webquota_txt'] = "Max. Webbeschränkung"; |
| | | $wb['limit_database_txt'] = "Max. Anzahl an Datenbanken"; |
| | | $wb['limit_cron_txt'] = "Max. Anzahl an Cronjobs"; |
| | | $wb['limit_cron_type_txt'] = "Erlaubte Cronjob Typen (chrooted und full erlauben auch url)"; |
| | | $wb['limit_cron_frequency_txt'] = "Min. Abstand zwischen Ausführungen"; |
| | | $wb['ip_address_txt'] = "IP Adresse"; |
| | | $wb['limit_client_error_notint'] = "Das Subkunden Limit muss eine Zahl sein."; |
| | | $wb['firstname_error_empty'] = "Vorname ist leer."; |
| | | $wb['contact_error_empty'] = "Kontakt ist leer."; |
| | | $wb['default_webserver_txt'] = "Standardwebserver"; |
| | | $wb['limit_web_domain_txt'] = "Max. Anzahl an Webdomains"; |
| | | $wb['limit_web_aliasdomain_txt'] = "Max. Anzahl an Webaliasdomains"; |
| | | $wb['limit_web_subdomain_txt'] = "Max. Anzahl an Websubdomains"; |
| | | $wb['limit_ftp_user_txt'] = "Max. Anzahl an FTP Benutzer"; |
| | | $wb['default_dnsserver_txt'] = "Standard DNS Server"; |
| | | $wb['limit_dns_zone_txt'] = "Max. Anzahl an DNS Zonen"; |
| | | $wb['limit_dns_record_txt'] = "Max. Anzahl an DNS Einträgen"; |
| | | $wb['limit_shell_user_txt'] = "Max. Anzahl an Shell Benutzer"; |
| | | $wb['username_error_empty'] = "Benutzername ist leer."; |
| | | $wb['username_error_unique'] = "Der Benutzername muss einzigartig sein."; |
| | | $wb['limit_maildomain_error_notint'] = "Das E-Mail Domain Limit muss eine Zahl sein."; |
| | | $wb['limit_mailbox_error_notint'] = "Das Mailbox Limit muss eine Zahl sein."; |
| | | $wb['limit_mailalias_error_notint'] = "Das E-Mail Alias Limit muss eine Zahl sein."; |
| | | $wb['limit_mailforward_error_notint'] = "Das E-Mail Weiterleitung Limit muss eine Zahl sein."; |
| | | $wb['limit_mailcatchall_error_notint'] = "Das E-Mail Catchall Limit muss eine Zahl sein."; |
| | | $wb['limit_mailrouting_error_notint'] = "Das E-Mail Routing Limit muss eine Zahl sein."; |
| | | $wb['limit_mailfilter_error_notint'] = "Das E-Mail Filter Limit muss eine Zahl sein."; |
| | | $wb['limit_mailfetchmail_error_notint'] = "Das Fetchmail Limit muss eine Zahl sein."; |
| | | $wb['limit_mailquota_error_notint'] = "Das E-Mailbeschränkungs Limit muss eine Zahl sein."; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = "Das Spamfilter White-/Blacklist Limit muss eine Zahl sein."; |
| | | $wb['limit_spamfilter_user_error_notint'] = "Das Spamfilter Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_spamfilter_policy_error_notint'] = "Das Spamfilter Richtlinien Limit muss eine Zahl sein."; |
| | | $wb['limit_web_domain_error_notint'] = "Das Domain Limit muss eine Zahl sein."; |
| | | $wb['limit_web_aliasdomain_error_notint'] = "Das Aliasdomain Limit muss eine Zahl sein."; |
| | | $wb['limit_web_subdomain_error_notint'] = "Das Subdomain Limit muss eine Zahl sein."; |
| | | $wb['limit_ftp_user_error_notint'] = "Das FTP Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_shell_user_error_notint'] = "Das Shell Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_dns_zone_error_notint'] = "Das DNS Einträge Limit muss eine Zahl sein."; |
| | | $wb['default_dbserver_txt'] = "Standarddatenbankserver"; |
| | | $wb['limit_database_error_notint'] = "Das Datenbank Limit muss eine Zahl sein."; |
| | | $wb['limit_cron_error_notint'] = "Das Cronjob Limit muss eine Zahl sein."; |
| | | $wb['limit_cron_error_frequency'] = "Das Cronjob Intervall muss eine Zahl sein."; |
| | | $wb['username_error_regex'] = "Der Benutzername enthält ungültige Zeichen."; |
| | | $wb['password_strength_txt'] = "Passwortkomplexität"; |
| | | $wb['template_master_txt'] = "Mastervorlage"; |
| | | $wb['template_additional_txt'] = "Add-Ons"; |
| | | $wb['active_template_additional_txt'] = "Aktive Add-Ons"; |
| | | $wb['add_additional_template_txt'] = "Zusätzliches Template hinzufügen"; |
| | | $wb['delete_additional_template_txt'] = "Zusätzliches Template löschen"; |
| | | $wb['ssh_chroot_txt'] = "SSH Chroot Optionen"; |
| | | $wb['web_php_options_txt'] = "PHP Optionen"; |
| | | $wb['limit_cgi_txt'] = "CGI verfügbar"; |
| | | $wb['limit_ssi_txt'] = "SSI verfügbar"; |
| | | $wb['limit_perl_txt'] = "Perl verfügbar"; |
| | | $wb['limit_ruby_txt'] = "Ruby verfügbar"; |
| | | $wb['limit_python_txt'] = "Python verfügbar"; |
| | | $wb['force_suexec_txt'] = "SuEXEC erzwungen"; |
| | | $wb['limit_hterror_txt'] = "Eigene Fehlerseiten verfügbar"; |
| | | $wb['limit_wildcard_txt'] = "Wildcard Subdomain verfügbar"; |
| | | $wb['limit_ssl_txt'] = "SSL verfügbar"; |
| | | $wb['limit_client_error'] = "Die maximale Anzahl an Kunden wurde erreicht."; |
| | | $wb['limit_mailaliasdomain_txt'] = "Max. Anzahl an Domain Aliases"; |
| | | $wb['limit_mailaliasdomain_error_notint'] = "Das E-Mail Domain Alias Limit muss eine Zahl sein."; |
| | | $wb['limit_web_quota_txt'] = "Webbeschränkung"; |
| | | $wb['limit_traffic_quota_txt'] = "Trafficbeschränkung"; |
| | | $wb['limit_trafficquota_error_notint'] = "Trafficbeschränkung muss eine Zahl sein."; |
| | | $wb['limit_dns_slave_zone_txt'] = "Max. Anzahl an Secondary DNS Zonen"; |
| | | $wb['limit_webdav_user_txt'] = "Max. Anzahl an WebDAV Benutzern"; |
| | | $wb['limit_webdav_user_error_notint'] = "Das WebDAV Benutzer-Limit muss eine Zahl sein."; |
| | | $wb['limit_dns_slave_zone_error_notint'] = "Das Secondary DNS Zonen Limit muss eine Zahl sein."; |
| | | $wb['customer_no_txt'] = "Kundennummer"; |
| | | $wb['vat_id_txt'] = "USt-ID"; |
| | | $wb['required_fields_txt'] = "* Benötigte Felder"; |
| | | $wb['limit_mailmailinglist_txt'] = "Max. Anzahl an Mailinglisten"; |
| | | $wb['limit_mailmailinglist_error_notint'] = "Das Mailinglisten Limit muss eine Zahl sein."; |
| | | $wb['company_id_txt'] = "Firmen/Entrepreneur ID"; |
| | | $wb['limit_openvz_vm_txt'] = "Max. Anzahl an virtuellen Servern"; |
| | | $wb['limit_openvz_vm_template_id_txt'] = "Template für virtuelle Server erzwingen"; |
| | | $wb['limit_openvz_vm_error_notint'] = "Das Limit virtueller Server muss eine Zahl sein."; |
| | | $wb['web_php_options_notempty'] = "Keine PHP Option ausgewählt. Wähle mindestens eine PHP Option."; |
| | | $wb['ssh_chroot_notempty'] = "Keine SSH Chroot Option ausgewählt. Wähle mindestens eine SSH Option."; |
| | | $wb['username_error_collision'] = "Der Benutzername sollte nicht mit dem Wort -web- oder -web- gefolgt von einer Nummer anfangen."; |
| | | $wb['bank_account_number_txt'] = "Kontonummer"; |
| | | $wb['bank_account_owner_txt'] = "Kontoinhaber"; |
| | | $wb['bank_code_txt'] = "BLZ"; |
| | | $wb['bank_name_txt'] = "Bank"; |
| | | $wb['bank_account_iban_txt'] = "IBAN"; |
| | | $wb['bank_account_swift_txt'] = "BIC"; |
| | | $wb['web_limits_txt'] = "Web Limits"; |
| | | $wb['email_limits_txt'] = "E-Mail Limits"; |
| | | $wb['database_limits_txt'] = "Datenbank Limits"; |
| | | $wb['cron_job_limits_txt'] = "Cronjob Limits"; |
| | | $wb['dns_limits_txt'] = "DNS Limits"; |
| | | $wb['virtualization_limits_txt'] = "Virtualisierungs Limits"; |
| | | $wb['generate_password_txt'] = "Passwort erzeugen"; |
| | | $wb['repeat_password_txt'] = "Passwort wiederholen"; |
| | | $wb['password_mismatch_txt'] = "Die Passwörter stimmen nicht überein."; |
| | | $wb['password_match_txt'] = "Die Passwörter stimmen überein."; |
| | | $wb["customer_no_error_unique"] = 'Die Kundennummer muß einzigartig sein (oder leer).'; |
| | | $wb['limit_maildomain_txt'] = 'Max. Anzahl an E-Mail Domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. Anzahl an Mailboxen'; |
| | | $wb['limit_mailalias_txt'] = 'Max. Anzahl an E-Mail Aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. Anzahl an E-Mail Weiterleitungen'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. Anzahl an E-Mail Catchall Konten'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. Anzahl an E-Mail Routen'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. Anzahl an E-Mail Filter'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. Anzahl an Fetchmail Konten'; |
| | | $wb['limit_mailquota_txt'] = 'Mailboxbeschränkung'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. Anzahl an Spamfilter (White-/Blacklist)'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. Anzahl an Spamfilter Benutzern'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. Anzahl an Spamfilter Richtlinien'; |
| | | $wb['default_mailserver_txt'] = 'Standardmailserver'; |
| | | $wb['company_name_txt'] = 'Firmenname'; |
| | | $wb['contact_name_txt'] = 'Kontakt'; |
| | | $wb['username_txt'] = 'Benutzername'; |
| | | $wb['password_txt'] = 'Passwort'; |
| | | $wb['language_txt'] = 'Sprache'; |
| | | $wb['usertheme_txt'] = 'Design'; |
| | | $wb['street_txt'] = 'Straße'; |
| | | $wb['zip_txt'] = 'PLZ'; |
| | | $wb['city_txt'] = 'Ort'; |
| | | $wb['state_txt'] = 'Bundesland'; |
| | | $wb['country_txt'] = 'Land'; |
| | | $wb['telephone_txt'] = 'Telefon'; |
| | | $wb['mobile_txt'] = 'Mobiltelefon'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'E-Mail'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notizen'; |
| | | $wb['company_txt'] = 'Firma'; |
| | | $wb['title_txt'] = 'Titel'; |
| | | $wb['firstname_txt'] = 'Vorname'; |
| | | $wb['surname_txt'] = 'Nachname'; |
| | | $wb['limit_client_txt'] = 'Max. Anzahl an Kunden'; |
| | | $wb['limit_domain_txt'] = 'Max. Anzahl an Domains'; |
| | | $wb['limit_subdomain_txt'] = 'Max. Anzahl an Subdomains'; |
| | | $wb['limit_webquota_txt'] = 'Max. Webbeschränkung'; |
| | | $wb['limit_database_txt'] = 'Max. Anzahl an Datenbanken'; |
| | | $wb['limit_cron_txt'] = 'Max. Anzahl an Cronjobs'; |
| | | $wb['limit_cron_type_txt'] = 'Erlaubte Cronjob Typen (chrooted und full erlauben auch url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. Abstand zwischen Ausführungen'; |
| | | $wb['ip_address_txt'] = 'IP Adresse'; |
| | | $wb['limit_client_error_notint'] = 'Das Subkunden Limit muss eine Zahl sein.'; |
| | | $wb['firstname_error_empty'] = 'Vorname ist leer.'; |
| | | $wb['contact_error_empty'] = 'Kontakt ist leer.'; |
| | | $wb['default_webserver_txt'] = 'Standardwebserver'; |
| | | $wb['limit_web_domain_txt'] = 'Max. Anzahl an Webdomains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. Anzahl an Webaliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. Anzahl an Websubdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. Anzahl an FTP Benutzer'; |
| | | $wb['default_dnsserver_txt'] = 'Standard DNS Server'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. Anzahl an DNS Zonen'; |
| | | $wb['limit_dns_record_txt'] = 'Max. Anzahl an DNS Einträgen'; |
| | | $wb['limit_shell_user_txt'] = 'Max. Anzahl an Shell Benutzer'; |
| | | $wb['username_error_empty'] = 'Benutzername ist leer.'; |
| | | $wb['username_error_unique'] = 'Der Benutzername muss einzigartig sein.'; |
| | | $wb['limit_maildomain_error_notint'] = 'Das E-Mail Domain Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Das Mailbox Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailalias_error_notint'] = 'Das E-Mail Alias Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailforward_error_notint'] = 'Das E-Mail Weiterleitung Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'Das E-Mail Catchall Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'Das E-Mail Routing Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'Das E-Mail Filter Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'Das Fetchmail Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailquota_error_notint'] = 'Das E-Mailbeschränkungs Limit muss eine Zahl sein.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'Das Spamfilter White-/Blacklist Limit muss eine Zahl sein.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'Das Spamfilter Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'Das Spamfilter Richtlinien Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_domain_error_notint'] = 'Das Domain Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'Das Aliasdomain Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'Das Subdomain Limit muss eine Zahl sein.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'Das FTP Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_shell_user_error_notint'] = 'Das Shell Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'Das DNS Einträge Limit muss eine Zahl sein.'; |
| | | $wb['default_dbserver_txt'] = 'Standarddatenbankserver'; |
| | | $wb['limit_database_error_notint'] = 'Das Datenbank Limit muss eine Zahl sein.'; |
| | | $wb['limit_cron_error_notint'] = 'Das Cronjob Limit muss eine Zahl sein.'; |
| | | $wb['limit_cron_error_frequency'] = 'Das Cronjob Intervall muss eine Zahl sein.'; |
| | | $wb['username_error_regex'] = 'Der Benutzername enthält ungültige Zeichen.'; |
| | | $wb['password_strength_txt'] = 'Passwortkomplexität'; |
| | | $wb['template_master_txt'] = 'Mastervorlage'; |
| | | $wb['template_additional_txt'] = 'Add-Ons'; |
| | | $wb['active_template_additional_txt'] = 'Aktive Add-Ons'; |
| | | $wb['add_additional_template_txt'] = 'Zusätzliches Template hinzufügen'; |
| | | $wb['delete_additional_template_txt'] = 'Zusätzliches Template löschen'; |
| | | $wb['ssh_chroot_txt'] = 'SSH Chroot Optionen'; |
| | | $wb['web_php_options_txt'] = 'PHP Optionen'; |
| | | $wb['limit_cgi_txt'] = 'CGI verfügbar'; |
| | | $wb['limit_ssi_txt'] = 'SSI verfügbar'; |
| | | $wb['limit_perl_txt'] = 'Perl verfügbar'; |
| | | $wb['limit_ruby_txt'] = 'Ruby verfügbar'; |
| | | $wb['limit_python_txt'] = 'Python verfügbar'; |
| | | $wb['force_suexec_txt'] = 'SuEXEC erzwungen'; |
| | | $wb['limit_hterror_txt'] = 'Eigene Fehlerseiten verfügbar'; |
| | | $wb['limit_wildcard_txt'] = 'Wildcard Subdomain verfügbar'; |
| | | $wb['limit_ssl_txt'] = 'SSL verfügbar'; |
| | | $wb['limit_client_error'] = 'Die maximale Anzahl an Kunden wurde erreicht.'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Max. Anzahl an Domain Aliases'; |
| | | $wb['limit_mailaliasdomain_error_notint'] = 'Das E-Mail Domain Alias Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_quota_txt'] = 'Webbeschränkung'; |
| | | $wb['limit_traffic_quota_txt'] = 'Trafficbeschränkung'; |
| | | $wb['limit_trafficquota_error_notint'] = 'Trafficbeschränkung muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Max. Anzahl an Secondary DNS Zonen'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. Anzahl an WebDAV Benutzern'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Das WebDAV Benutzer-Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_error_notint'] = 'Das Secondary DNS Zonen Limit muss eine Zahl sein.'; |
| | | $wb['customer_no_txt'] = 'Kundennummer'; |
| | | $wb['vat_id_txt'] = 'USt-ID'; |
| | | $wb['required_fields_txt'] = '* Benötigte Felder'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. Anzahl an Mailinglisten'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'Das Mailinglisten Limit muss eine Zahl sein.'; |
| | | $wb['company_id_txt'] = 'Firmen/Entrepreneur ID'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. Anzahl an virtuellen Servern'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Template für virtuelle Server erzwingen'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'Das Limit virtueller Server muss eine Zahl sein.'; |
| | | $wb['web_php_options_notempty'] = 'Keine PHP Option ausgewählt. Wähle mindestens eine PHP Option.'; |
| | | $wb['ssh_chroot_notempty'] = 'Keine SSH Chroot Option ausgewählt. Wähle mindestens eine SSH Option.'; |
| | | $wb['username_error_collision'] = 'Der Benutzername sollte nicht mit dem Wort -web- oder -web- gefolgt von einer Nummer anfangen.'; |
| | | $wb['bank_account_number_txt'] = 'Kontonummer'; |
| | | $wb['bank_account_owner_txt'] = 'Kontoinhaber'; |
| | | $wb['bank_code_txt'] = 'BLZ'; |
| | | $wb['bank_name_txt'] = 'Bank'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC'; |
| | | $wb['web_limits_txt'] = 'Web Limits'; |
| | | $wb['email_limits_txt'] = 'E-Mail Limits'; |
| | | $wb['database_limits_txt'] = 'Datenbank Limits'; |
| | | $wb['cron_job_limits_txt'] = 'Cronjob Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualisierungs Limits'; |
| | | $wb['generate_password_txt'] = 'Passwort erzeugen'; |
| | | $wb['repeat_password_txt'] = 'Passwort wiederholen'; |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | $wb['customer_no_error_unique'] = 'Die Kundennummer muß einzigartig sein (oder leer).'; |
| | | $wb['email_error_isemail'] = 'Bitte geben Sie eine gültige Email-Adresse an.'; |
| | | $wb['paypal_email_error_isemail'] = 'Bitte geben Sie eine gültige PayPal-E-Mail-Adresse an.'; |
| | | $wb['paypal_email_txt'] = 'PayPal-E-Mail'; |
| | | ?> |
| | | |
| | |
| | | $wb['description_txt'] = 'Beschreibung'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | ?> |
| | | |
| | |
| | | $wb['delete_txt'] = 'Löschen'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Kunden löschen'; |
| | | $wb['btn_cancel_txt'] = 'Abbrechen, ohne den Kunden zu löschen'; |
| | | ?> |
| | | |
| | |
| | | $wb['all_clients_txt'] = 'Alle Kunden'; |
| | | $wb['variables_txt'] = 'Variablen:'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['limit_client_error_notint'] = "Das Subkunden Limit muss eine Zahl sein."; |
| | | $wb['limit_maildomain_txt'] = "Max. Anzahl an E-Mail Domains"; |
| | | $wb['limit_mailbox_txt'] = "Max. Anzahl an E-Mail Konten"; |
| | | $wb['limit_mailalias_txt'] = "Max. Anzahl an E-Mail Aliassen"; |
| | | $wb['limit_mailforward_txt'] = "Max. Anzahl an E-Mail Weiterleitungen"; |
| | | $wb['limit_mailcatchall_txt'] = "Max. Anzahl an E-Mail Catchall Konten"; |
| | | $wb['limit_mailrouting_txt'] = "Max. Anzahl E-Mail Routen"; |
| | | $wb['limit_mailfilter_txt'] = "Max. Anzahl an E-Mail Filtern"; |
| | | $wb['limit_fetchmail_txt'] = "Max. Anzahl an E-Mail Sammeldienst Konten"; |
| | | $wb['limit_mailquota_txt'] = "E-Mail Konto Beschränkung"; |
| | | $wb['limit_spamfilter_wblist_txt'] = "Max. Anzahl an Spamfilter (White-/Blacklist)"; |
| | | $wb['limit_spamfilter_user_txt'] = "Max. Anzahl Spamfilter Benutzer"; |
| | | $wb['limit_spamfilter_policy_txt'] = "Max. Anzahl an Spamfilter Richtlinien"; |
| | | $wb['limit_client_txt'] = "Max. Anzahl an Kunden"; |
| | | $wb['limit_domain_txt'] = "Max. Anzahl an Domains"; |
| | | $wb['limit_subdomain_txt'] = "Max. Anzahl an Subdomains"; |
| | | $wb['limit_webquota_txt'] = "Max. Speicherplatzbeschränkung"; |
| | | $wb['limit_database_txt'] = "Max. Anzahl an Datenbanken"; |
| | | $wb['limit_cron_txt'] = "Max. Anzahl an Cronjobs"; |
| | | $wb['limit_cron_type_txt'] = "Max. erlaubter Typ von Cronjobs (chrooted und full erlauben auch url)"; |
| | | $wb['limit_cron_frequency_txt'] = "Min. Abstand zwischen Ausführungen"; |
| | | $wb['limit_web_domain_txt'] = "Max. Anzahl an Web Domains"; |
| | | $wb['limit_web_aliasdomain_txt'] = "Max. Anzahl an Web Aliasdomains"; |
| | | $wb['limit_web_subdomain_txt'] = "Max. Anzahl an Web Subdomains"; |
| | | $wb['limit_ftp_user_txt'] = "Max. Anzahl an FTP Benutzern"; |
| | | $wb['limit_dns_zone_txt'] = "Max. Anzahl an DNS Zonen"; |
| | | $wb['limit_dns_record_txt'] = "Max. Anzahl an DNS Einträgen"; |
| | | $wb['limit_shell_user_txt'] = "Max. Anzahl an Shell Benutzern"; |
| | | $wb['limit_maildomain_error_notint'] = "Das E-Mail Domain Limit muss eine Zahl sein."; |
| | | $wb['limit_mailbox_error_notint'] = "Das E-Mail Konto Limit muss eine Zahl sein."; |
| | | $wb['limit_mailalias_error_notint'] = "Das E-Mail Alias Limit muss eine Zahl sein."; |
| | | $wb['limit_mailforward_error_notint'] = "Das E-Mail Weiterleitung Limit muss eine Zahl sein."; |
| | | $wb['limit_mailcatchall_error_notint'] = "Das E-Mail Catchall Limit muss eine Zahl sein."; |
| | | $wb['limit_mailrouting_error_notint'] = "Das E-Mail Routing Limit muss eine Zahl sein."; |
| | | $wb['limit_mailfilter_error_notint'] = "Das E-Mail Filter Limit muss eine Zahl sein."; |
| | | $wb['limit_mailfetchmail_error_notint'] = "Das E-Mail Sammeldienst Limit muss eine Zahl sein."; |
| | | $wb['limit_mailquota_error_notint'] = "Das E-Mail Beschränkungs Limit muss eine Zahl sein."; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = "Das Spamfilter White-/Blacklist Limit muss eine Zahl sein."; |
| | | $wb['limit_spamfilter_user_error_notint'] = "Das Spamfilter Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_spamfilter_policy_error_notint'] = "Das Spamfilter Richtlinien Limit muss eine Zahl sein."; |
| | | $wb['limit_web_domain_error_notint'] = "Das Webseiten Limit muss eine Zahl sein."; |
| | | $wb['limit_web_aliasdomain_error_notint'] = "Das Webseiten Aliasdomain Limit muss eine Zahl sein."; |
| | | $wb['limit_web_subdomain_error_notint'] = "Das Subdomain Limit muss eine Zahl sein."; |
| | | $wb['limit_ftp_user_error_notint'] = "Das FTP Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_shell_user_error_notint'] = "Das Shell Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_dns_zone_error_notint'] = "Das DNS Einträge Limit muss eine Zahl sein."; |
| | | $wb['limit_database_error_notint'] = "Das Datenbanken Limit muss eine Zahl sein."; |
| | | $wb['limit_cron_error_notint'] = "Das Cronjob Limit muss eine Zahl sein."; |
| | | $wb['limit_cron_error_frequency'] = "Das Cronjob Intervall Limit muss eine Zahl sein."; |
| | | $wb['error_template_name_empty'] = "Bitte geben Sie einen Vorlagenamen ein"; |
| | | $wb['limit_mailaliasdomain_txt'] = "Max. Anzahl an Domain Aliase"; |
| | | $wb['limit_mailaliasdomain_error_notint'] = "Das E-Mail Domain Alias Limit muss eine Zahl sein."; |
| | | $wb['limit_web_quota_txt'] = "Speicherplatzbeschränkung"; |
| | | $wb['limit_traffic_quota_txt'] = "Transfervolumenbeschränkung"; |
| | | $wb['limit_trafficquota_error_notint'] = "Transfervolumenbeschränkung muss eine Zahl sein."; |
| | | $wb['limit_dns_slave_zone_txt'] = "Max. Anzahl an Secondary DNS Zonen"; |
| | | $wb['limit_webdav_user_txt'] = "Max. Anzahl an WebDAV Benutzern"; |
| | | $wb['limit_webdav_user_error_notint'] = "Das WebDAV Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_dns_slave_zone_error_notint'] = "Das Secondary DNS Zonen Limit muss eine Zahl sein."; |
| | | $wb['limit_dns_record_error_notint'] = "Das DNS Eintrag Limit muss eine Zahl sein."; |
| | | $wb['template_del_aborted_txt'] = "Löschung abgebrochen. Ein Kunde hat das Template noch ausgewählt."; |
| | | $wb['limit_mailmailinglist_txt'] = "Max. Anzahl an Mailinglisten"; |
| | | $wb['limit_mailmailinglist_error_notint'] = "Das Mailinglisten Limit muss eine Zahl sein."; |
| | | $wb['limit_openvz_vm_txt'] = "Max. Anzahl an virtuellen Servern"; |
| | | $wb['limit_openvz_vm_template_id_txt'] = "Template für virtuelle Server erzwingen"; |
| | | $wb['limit_openvz_vm_error_notint'] = "Das Limit virtueller Server muss eine Zahl sein."; |
| | | $wb['ssh_chroot_txt'] = "SSH Chroot Optionen"; |
| | | $wb['web_php_options_txt'] = "PHP Optionen"; |
| | | $wb['limit_cgi_txt'] = "CGI verfügbar"; |
| | | $wb['limit_ssi_txt'] = "SSI verfügbar"; |
| | | $wb['limit_perl_txt'] = "Perl verfügbar"; |
| | | $wb['limit_ruby_txt'] = "Ruby verfügbar"; |
| | | $wb['limit_python_txt'] = "Python verfügbar"; |
| | | $wb['force_suexec_txt'] = "SuEXEC erzwungen"; |
| | | $wb['limit_hterror_txt'] = "Eigene Fehlerseiten verfügbar"; |
| | | $wb['limit_wildcard_txt'] = "Wildcard Subdomain verfügbar"; |
| | | $wb['limit_ssl_txt'] = "SSL verfügbar"; |
| | | $wb['template_type_txt'] = "Template Typ"; |
| | | $wb['template_name_txt'] = "Template Name"; |
| | | $wb['web_limits_txt'] = "Web Limits"; |
| | | $wb['email_limits_txt'] = "E-Mail Limits"; |
| | | $wb['database_limits_txt'] = "Datenbank Limits"; |
| | | $wb['cron_job_limits_txt'] = "Cronjob Limits"; |
| | | $wb['dns_limits_txt'] = "DNS Limits"; |
| | | $wb['virtualization_limits_txt'] = "Virtualisierungs Limits"; |
| | | $wb['limit_client_error_notint'] = 'Das Subkunden Limit muss eine Zahl sein.'; |
| | | $wb['limit_maildomain_txt'] = 'Max. Anzahl an E-Mail Domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. Anzahl an E-Mail Konten'; |
| | | $wb['limit_mailalias_txt'] = 'Max. Anzahl an E-Mail Aliassen'; |
| | | $wb['limit_mailforward_txt'] = 'Max. Anzahl an E-Mail Weiterleitungen'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. Anzahl an E-Mail Catchall Konten'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. Anzahl E-Mail Routen'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. Anzahl an E-Mail Filtern'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. Anzahl an E-Mail Sammeldienst Konten'; |
| | | $wb['limit_mailquota_txt'] = 'E-Mail Konto Beschränkung'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. Anzahl an Spamfilter (White-/Blacklist)'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. Anzahl Spamfilter Benutzer'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. Anzahl an Spamfilter Richtlinien'; |
| | | $wb['limit_client_txt'] = 'Max. Anzahl an Kunden'; |
| | | $wb['limit_domain_txt'] = 'Max. Anzahl an Domains'; |
| | | $wb['limit_subdomain_txt'] = 'Max. Anzahl an Subdomains'; |
| | | $wb['limit_webquota_txt'] = 'Max. Speicherplatzbeschränkung'; |
| | | $wb['limit_database_txt'] = 'Max. Anzahl an Datenbanken'; |
| | | $wb['limit_cron_txt'] = 'Max. Anzahl an Cronjobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. erlaubter Typ von Cronjobs (chrooted und full erlauben auch url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. Abstand zwischen Ausführungen'; |
| | | $wb['limit_web_domain_txt'] = 'Max. Anzahl an Web Domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. Anzahl an Web Aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. Anzahl an Web Subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. Anzahl an FTP Benutzern'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. Anzahl an DNS Zonen'; |
| | | $wb['limit_dns_record_txt'] = 'Max. Anzahl an DNS Einträgen'; |
| | | $wb['limit_shell_user_txt'] = 'Max. Anzahl an Shell Benutzern'; |
| | | $wb['limit_maildomain_error_notint'] = 'Das E-Mail Domain Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Das E-Mail Konto Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailalias_error_notint'] = 'Das E-Mail Alias Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailforward_error_notint'] = 'Das E-Mail Weiterleitung Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'Das E-Mail Catchall Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'Das E-Mail Routing Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'Das E-Mail Filter Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'Das E-Mail Sammeldienst Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailquota_error_notint'] = 'Das E-Mail Beschränkungs Limit muss eine Zahl sein.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'Das Spamfilter White-/Blacklist Limit muss eine Zahl sein.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'Das Spamfilter Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'Das Spamfilter Richtlinien Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_domain_error_notint'] = 'Das Webseiten Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'Das Webseiten Aliasdomain Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'Das Subdomain Limit muss eine Zahl sein.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'Das FTP Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_shell_user_error_notint'] = 'Das Shell Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'Das DNS Einträge Limit muss eine Zahl sein.'; |
| | | $wb['limit_database_error_notint'] = 'Das Datenbanken Limit muss eine Zahl sein.'; |
| | | $wb['limit_cron_error_notint'] = 'Das Cronjob Limit muss eine Zahl sein.'; |
| | | $wb['limit_cron_error_frequency'] = 'Das Cronjob Intervall Limit muss eine Zahl sein.'; |
| | | $wb['error_template_name_empty'] = 'Bitte geben Sie einen Vorlagenamen ein'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Max. Anzahl an Domain Aliase'; |
| | | $wb['limit_mailaliasdomain_error_notint'] = 'Das E-Mail Domain Alias Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_quota_txt'] = 'Speicherplatzbeschränkung'; |
| | | $wb['limit_traffic_quota_txt'] = 'Transfervolumenbeschränkung'; |
| | | $wb['limit_trafficquota_error_notint'] = 'Transfervolumenbeschränkung muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Max. Anzahl an Secondary DNS Zonen'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. Anzahl an WebDAV Benutzern'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Das WebDAV Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_error_notint'] = 'Das Secondary DNS Zonen Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_record_error_notint'] = 'Das DNS Eintrag Limit muss eine Zahl sein.'; |
| | | $wb['template_del_aborted_txt'] = 'Löschung abgebrochen. Ein Kunde hat das Template noch ausgewählt.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. Anzahl an Mailinglisten'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'Das Mailinglisten Limit muss eine Zahl sein.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. Anzahl an virtuellen Servern'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Template für virtuelle Server erzwingen'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'Das Limit virtueller Server muss eine Zahl sein.'; |
| | | $wb['ssh_chroot_txt'] = 'SSH Chroot Optionen'; |
| | | $wb['web_php_options_txt'] = 'PHP Optionen'; |
| | | $wb['limit_cgi_txt'] = 'CGI verfügbar'; |
| | | $wb['limit_ssi_txt'] = 'SSI verfügbar'; |
| | | $wb['limit_perl_txt'] = 'Perl verfügbar'; |
| | | $wb['limit_ruby_txt'] = 'Ruby verfügbar'; |
| | | $wb['limit_python_txt'] = 'Python verfügbar'; |
| | | $wb['force_suexec_txt'] = 'SuEXEC erzwungen'; |
| | | $wb['limit_hterror_txt'] = 'Eigene Fehlerseiten verfügbar'; |
| | | $wb['limit_wildcard_txt'] = 'Wildcard Subdomain verfügbar'; |
| | | $wb['limit_ssl_txt'] = 'SSL verfügbar'; |
| | | $wb['template_type_txt'] = 'Template Typ'; |
| | | $wb['template_name_txt'] = 'Template Name'; |
| | | $wb['web_limits_txt'] = 'Web Limits'; |
| | | $wb['email_limits_txt'] = 'E-Mail Limits'; |
| | | $wb['database_limits_txt'] = 'Datenbank Limits'; |
| | | $wb['cron_job_limits_txt'] = 'Cronjob Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualisierungs Limits'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_type_txt'] = 'Typ'; |
| | | $wb['template_name_txt'] = 'Vorlagenname'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Kunden hinzufügen'; |
| | | $wb['username_txt'] = 'Benutzername'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_regex'] = 'Dieser Domain Name ist nicht gültig'; |
| | | $wb['Domain'] = 'Domain'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['user_txt'] = 'Kunde'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['limit_maildomain_txt'] = "Max. Anzahl an E-Mail Domains"; |
| | | $wb['limit_mailbox_txt'] = "Max. Anzahl an Mailboxen"; |
| | | $wb['limit_mailalias_txt'] = "Max. Anzahl an E-Mail Aliases"; |
| | | $wb['limit_mailforward_txt'] = "Max. Anzahl an E-Mail Weiterleitungen"; |
| | | $wb['limit_mailcatchall_txt'] = "Max. Anzahl an E-Mail Catchall Konten"; |
| | | $wb['limit_mailrouting_txt'] = "Max. Anzahl an E-Mail Routen"; |
| | | $wb['limit_mailfilter_txt'] = "Max. Anzahl an E-Mail Filtern"; |
| | | $wb['limit_fetchmail_txt'] = "Max. Anzahl an Fetchmail Konten"; |
| | | $wb['limit_mailquota_txt'] = "Mailbox Beschränkung"; |
| | | $wb['limit_spamfilter_wblist_txt'] = "Max. Anzahl an White-/Blacklist Filter"; |
| | | $wb['limit_spamfilter_user_txt'] = "Max. Anzahl an Spamfilter Benutzern"; |
| | | $wb['limit_spamfilter_policy_txt'] = "Max. Anzahl an Spamfilter Richtlinien"; |
| | | $wb['default_mailserver_txt'] = "Standardmailserver"; |
| | | $wb['company_name_txt'] = "Firmenname"; |
| | | $wb['contact_name_txt'] = "Kontakt"; |
| | | $wb['username_txt'] = "Benutzername"; |
| | | $wb['password_txt'] = "Passwort"; |
| | | $wb['password_strength_txt'] = "Passwortkomplexität"; |
| | | $wb['language_txt'] = "Sprache"; |
| | | $wb['usertheme_txt'] = "Oberflächen Design"; |
| | | $wb['street_txt'] = "Straße"; |
| | | $wb['zip_txt'] = "PLZ"; |
| | | $wb['city_txt'] = "Ort"; |
| | | $wb['state_txt'] = "Bundesland"; |
| | | $wb['country_txt'] = "Land"; |
| | | $wb['telephone_txt'] = "Telefon"; |
| | | $wb['mobile_txt'] = "Mobiltelefon"; |
| | | $wb['fax_txt'] = "Fax"; |
| | | $wb['email_txt'] = "E-Mail"; |
| | | $wb['internet_txt'] = "Internet"; |
| | | $wb['icq_txt'] = "ICQ"; |
| | | $wb['notes_txt'] = "Notizen"; |
| | | $wb['company_txt'] = "Firma"; |
| | | $wb['title_txt'] = "Titel"; |
| | | $wb['firstname_txt'] = "Vorname"; |
| | | $wb['surname_txt'] = "Nachname"; |
| | | $wb['limit_domain_txt'] = "Max. Anzahl an Domains"; |
| | | $wb['limit_subdomain_txt'] = "Max. Anzahl an Subdomains"; |
| | | $wb['limit_webquota_txt'] = "Max. Speicherplatzbeschränkung"; |
| | | $wb['limit_database_txt'] = "Max. Anzahl an Datenbanken"; |
| | | $wb['limit_cron_txt'] = "Max. Anzahl an Cronjobs"; |
| | | $wb['limit_cron_type_txt'] = "Erlaubter Cronjob Typen (chrooted und full erlauben auch url)"; |
| | | $wb['limit_cron_frequency_txt'] = "Min. Abstand zwischen Ausführungen"; |
| | | $wb['ip_address_txt'] = "IP Adresse"; |
| | | $wb['limit_client_error_notint'] = "Das Subkunden Limit muss eine Zahl sein."; |
| | | $wb['firstname_error_empty'] = "Vorname ist leer."; |
| | | $wb['contact_error_empty'] = "Kontakt ist leer."; |
| | | $wb['default_webserver_txt'] = "Standardwebserver"; |
| | | $wb['limit_web_domain_txt'] = "Max. Anzahl an Webdomains"; |
| | | $wb['limit_web_aliasdomain_txt'] = "Max. Anzahl an Webaliasdomains"; |
| | | $wb['limit_web_subdomain_txt'] = "Max. Anzahl an Websubdomains"; |
| | | $wb['limit_ftp_user_txt'] = "Max. Anzahl an FTP Benutzern"; |
| | | $wb['default_dnsserver_txt'] = "Standard DNS Server"; |
| | | $wb['limit_dns_zone_txt'] = "Max. Anzahl an DNS Zonen"; |
| | | $wb['limit_dns_record_txt'] = "Max. Anzahl an DNS Einträgen"; |
| | | $wb['limit_shell_user_txt'] = "Max. Anzahl an Shell Benutzern"; |
| | | $wb['limit_client_txt'] = "Max. Anzahl an Kunden"; |
| | | $wb['username_error_empty'] = "Benutzername ist leer."; |
| | | $wb['username_error_unique'] = "Der Benutzername muss einzigartig sein."; |
| | | $wb['limit_maildomain_error_notint'] = "Das E-Mail Domain Limit muss eine Nummer sein."; |
| | | $wb['limit_mailbox_error_notint'] = "Das Mailbox Limit muss eine Nummer sein."; |
| | | $wb['limit_mailalias_error_notint'] = "Das E-Mail Alias Limit muss eine Zahl sein."; |
| | | $wb['limit_mailforward_error_notint'] = "Das E-Mail Weiterleitungs Limit muss eine Zahl sein."; |
| | | $wb['limit_mailcatchall_error_notint'] = "Das E-Mail Catchall Limit muss eine Zahl sein."; |
| | | $wb['limit_mailrouting_error_notint'] = "Das E-Mail Routing Limit muss eine Zahl sein."; |
| | | $wb['limit_mailfilter_error_notint'] = "Das E-Mail Filter Limit muss eine Zahl sein."; |
| | | $wb['limit_mailfetchmail_error_notint'] = "Das Fetchmail Limit muss eine Zahl sein."; |
| | | $wb['limit_mailquota_error_notint'] = "Das E-Mail Beschräkungs Limit muss eine Zahl sein."; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = "Das Spamfilter White-/Blacklist Limit muss eine Zahl sein."; |
| | | $wb['limit_spamfilter_user_error_notint'] = "Das Spamfilter Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_spamfilter_policy_error_notint'] = "Das Spamfilter Richtlinien Limit muss eine Zahl sein."; |
| | | $wb['limit_web_domain_error_notint'] = "Das Webseiten Limit muss eine Zahl sein."; |
| | | $wb['limit_web_aliasdomain_error_notint'] = "Das Webseiten Aliasdomain Limit muss eine Zahl sein."; |
| | | $wb['limit_web_subdomain_error_notint'] = "Das Webseiten Subdomain Limit muss eine Zahl sein."; |
| | | $wb['limit_ftp_user_error_notint'] = "Das FTP Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_shell_user_error_notint'] = "Das Shell Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_dns_zone_error_notint'] = "Das DNS Einträge Limit muss eine Zahl sein."; |
| | | $wb['default_dbserver_txt'] = "Standarddatenbankserver"; |
| | | $wb['limit_database_error_notint'] = "Das Datenbank Limit muss eine Zahl sein."; |
| | | $wb['limit_cron_error_notint'] = "Das Cronjob Limit muss eine Zahl sein."; |
| | | $wb['limit_cron_error_frequency'] = "Das Cronjob Intervall Limit muss eine Zahl sein."; |
| | | $wb['username_error_regex'] = "Der Benutzername enthält ungültige Zeichen."; |
| | | $wb['template_master_txt'] = "Mastervorlage"; |
| | | $wb['template_additional_txt'] = "Add-Ons"; |
| | | $wb['add_additional_template_txt'] = "Zusätzliches Template hinzufügen"; |
| | | $wb['delete_additional_template_txt'] = "Zusätzliches Template löschen"; |
| | | $wb['ssh_chroot_txt'] = "SSH Chroot Optionen"; |
| | | $wb['web_php_options_txt'] = "PHP Optionen"; |
| | | $wb['limit_cgi_txt'] = "CGI verfügbar"; |
| | | $wb['limit_ssi_txt'] = "SSI verfügbar"; |
| | | $wb['limit_perl_txt'] = "Perl verfügbar"; |
| | | $wb['limit_ruby_txt'] = "Ruby verfügbar"; |
| | | $wb['limit_python_txt'] = "Python verfügbar"; |
| | | $wb['force_suexec_txt'] = "SuEXEC erzwungen"; |
| | | $wb['limit_hterror_txt'] = "Eigene Fehlerseiten verfügbar"; |
| | | $wb['limit_wildcard_txt'] = "Wildcard Subdomain verfügbar"; |
| | | $wb['limit_ssl_txt'] = "SSL verfügbar"; |
| | | $wb['limit_client_error'] = "Die maximale Anzahl an Kunden wurde erreicht."; |
| | | $wb['limit_client_error_positive'] = "Die Anzahl an Kunden muss > 0 sein"; |
| | | $wb['limit_web_quota_txt'] = "Speicherplatzbeschränkung"; |
| | | $wb['limit_traffic_quota_txt'] = "Transfervolumenbeschränkung"; |
| | | $wb['limit_trafficquota_error_notint'] = "Transfervolumenbeschränkung muss eine Zahl sein."; |
| | | $wb['limit_dns_slave_zone_txt'] = "Max. Anzahl an Secondary DNS Zonen"; |
| | | $wb['limit_dns_slave_zone_error_notint'] = "Das Secondary DNS Zonen Limit muss eine Zahl sein."; |
| | | $wb['limit_dns_record_error_notint'] = "Das DNS Eintrag Limit muss eine Zahl sein."; |
| | | $wb['customer_no_txt'] = "Kundennummer"; |
| | | $wb['vat_id_txt'] = "USt-ID"; |
| | | $wb['required_fields_txt'] = "* Benötigte Felder"; |
| | | $wb['limit_webdav_user_txt'] = "Max. Anzahl an WebDAV Benutzern"; |
| | | $wb['limit_webdav_user_error_notint'] = "Das WebDAV Benutzer Limit muss eine Zahl sein."; |
| | | $wb['limit_mailmailinglist_txt'] = "Max. Anzahl an Mailinglisten"; |
| | | $wb['limit_mailaliasdomain_txt'] = "Max. Anzahl an E-Mail Domainaliases"; |
| | | $wb['limit_mailmailinglist_error_notint'] = "Das Mailinglisten Limit muss eine Zahl sein."; |
| | | $wb['limit_openvz_vm_txt'] = "Max. Anzahl an virtuellen Servern"; |
| | | $wb['limit_openvz_vm_template_id_txt'] = "Template für virtuelle Server erzwingen"; |
| | | $wb['limit_openvz_vm_error_notint'] = "Das Limit virtueller Server muss eine Zahl sein."; |
| | | $wb['web_php_options_notempty'] = "Keine PHP Option ausgewählt. Wähle mindestens eine PHP Option."; |
| | | $wb['ssh_chroot_notempty'] = "Keine SSH Chroot-Option ausgewählt. Wähle mindestens eine SSH Option."; |
| | | $wb['username_error_collision'] = "Der Benutzername sollte nicht mit dem Wort -web- oder -web- gefolgt von einer Nummer anfangen."; |
| | | $wb['web_limits_txt'] = "Web Limits"; |
| | | $wb['email_limits_txt'] = "E-Mail Limits"; |
| | | $wb['database_limits_txt'] = "Datenbank Limits"; |
| | | $wb['cron_job_limits_txt'] = "Cronjob Limits"; |
| | | $wb['dns_limits_txt'] = "DNS Limits"; |
| | | $wb['virtualization_limits_txt'] = "Virtualisierungs Limits"; |
| | | $wb['generate_password_txt'] = "Passwort erzeugen"; |
| | | $wb['repeat_password_txt'] = "Passwort wiederholen"; |
| | | $wb['password_mismatch_txt'] = "Die Passwörter stimmen nicht überein."; |
| | | $wb['password_match_txt'] = "Die Passwörter stimmen überein."; |
| | | $wb["customer_no_error_unique"] = 'Die Kundennummer muß einzigartig sein (oder leer).'; |
| | | $wb['limit_maildomain_txt'] = 'Max. Anzahl an E-Mail Domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. Anzahl an Mailboxen'; |
| | | $wb['limit_mailalias_txt'] = 'Max. Anzahl an E-Mail Aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. Anzahl an E-Mail Weiterleitungen'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. Anzahl an E-Mail Catchall Konten'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. Anzahl an E-Mail Routen'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. Anzahl an E-Mail Filtern'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. Anzahl an Fetchmail Konten'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox Beschränkung'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. Anzahl an White-/Blacklist Filter'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. Anzahl an Spamfilter Benutzern'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. Anzahl an Spamfilter Richtlinien'; |
| | | $wb['default_mailserver_txt'] = 'Standardmailserver'; |
| | | $wb['company_name_txt'] = 'Firmenname'; |
| | | $wb['contact_name_txt'] = 'Kontakt'; |
| | | $wb['username_txt'] = 'Benutzername'; |
| | | $wb['password_txt'] = 'Passwort'; |
| | | $wb['password_strength_txt'] = 'Passwortkomplexität'; |
| | | $wb['language_txt'] = 'Sprache'; |
| | | $wb['usertheme_txt'] = 'Oberflächen Design'; |
| | | $wb['street_txt'] = 'Straße'; |
| | | $wb['zip_txt'] = 'PLZ'; |
| | | $wb['city_txt'] = 'Ort'; |
| | | $wb['state_txt'] = 'Bundesland'; |
| | | $wb['country_txt'] = 'Land'; |
| | | $wb['telephone_txt'] = 'Telefon'; |
| | | $wb['mobile_txt'] = 'Mobiltelefon'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'E-Mail'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notizen'; |
| | | $wb['company_txt'] = 'Firma'; |
| | | $wb['title_txt'] = 'Titel'; |
| | | $wb['firstname_txt'] = 'Vorname'; |
| | | $wb['surname_txt'] = 'Nachname'; |
| | | $wb['limit_domain_txt'] = 'Max. Anzahl an Domains'; |
| | | $wb['limit_subdomain_txt'] = 'Max. Anzahl an Subdomains'; |
| | | $wb['limit_webquota_txt'] = 'Max. Speicherplatzbeschränkung'; |
| | | $wb['limit_database_txt'] = 'Max. Anzahl an Datenbanken'; |
| | | $wb['limit_cron_txt'] = 'Max. Anzahl an Cronjobs'; |
| | | $wb['limit_cron_type_txt'] = 'Erlaubter Cronjob Typen (chrooted und full erlauben auch url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. Abstand zwischen Ausführungen'; |
| | | $wb['ip_address_txt'] = 'IP Adresse'; |
| | | $wb['limit_client_error_notint'] = 'Das Subkunden Limit muss eine Zahl sein.'; |
| | | $wb['firstname_error_empty'] = 'Vorname ist leer.'; |
| | | $wb['contact_error_empty'] = 'Kontakt ist leer.'; |
| | | $wb['default_webserver_txt'] = 'Standardwebserver'; |
| | | $wb['limit_web_domain_txt'] = 'Max. Anzahl an Webdomains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. Anzahl an Webaliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. Anzahl an Websubdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. Anzahl an FTP Benutzern'; |
| | | $wb['default_dnsserver_txt'] = 'Standard DNS Server'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. Anzahl an DNS Zonen'; |
| | | $wb['limit_dns_record_txt'] = 'Max. Anzahl an DNS Einträgen'; |
| | | $wb['limit_shell_user_txt'] = 'Max. Anzahl an Shell Benutzern'; |
| | | $wb['limit_client_txt'] = 'Max. Anzahl an Kunden'; |
| | | $wb['username_error_empty'] = 'Benutzername ist leer.'; |
| | | $wb['username_error_unique'] = 'Der Benutzername muss einzigartig sein.'; |
| | | $wb['limit_maildomain_error_notint'] = 'Das E-Mail Domain Limit muss eine Nummer sein.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Das Mailbox Limit muss eine Nummer sein.'; |
| | | $wb['limit_mailalias_error_notint'] = 'Das E-Mail Alias Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailforward_error_notint'] = 'Das E-Mail Weiterleitungs Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'Das E-Mail Catchall Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'Das E-Mail Routing Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'Das E-Mail Filter Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'Das Fetchmail Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailquota_error_notint'] = 'Das E-Mail Beschräkungs Limit muss eine Zahl sein.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'Das Spamfilter White-/Blacklist Limit muss eine Zahl sein.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'Das Spamfilter Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'Das Spamfilter Richtlinien Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_domain_error_notint'] = 'Das Webseiten Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'Das Webseiten Aliasdomain Limit muss eine Zahl sein.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'Das Webseiten Subdomain Limit muss eine Zahl sein.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'Das FTP Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_shell_user_error_notint'] = 'Das Shell Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'Das DNS Einträge Limit muss eine Zahl sein.'; |
| | | $wb['default_dbserver_txt'] = 'Standarddatenbankserver'; |
| | | $wb['limit_database_error_notint'] = 'Das Datenbank Limit muss eine Zahl sein.'; |
| | | $wb['limit_cron_error_notint'] = 'Das Cronjob Limit muss eine Zahl sein.'; |
| | | $wb['limit_cron_error_frequency'] = 'Das Cronjob Intervall Limit muss eine Zahl sein.'; |
| | | $wb['username_error_regex'] = 'Der Benutzername enthält ungültige Zeichen.'; |
| | | $wb['template_master_txt'] = 'Mastervorlage'; |
| | | $wb['template_additional_txt'] = 'Add-Ons'; |
| | | $wb['add_additional_template_txt'] = 'Zusätzliches Template hinzufügen'; |
| | | $wb['delete_additional_template_txt'] = 'Zusätzliches Template löschen'; |
| | | $wb['ssh_chroot_txt'] = 'SSH Chroot Optionen'; |
| | | $wb['web_php_options_txt'] = 'PHP Optionen'; |
| | | $wb['limit_cgi_txt'] = 'CGI verfügbar'; |
| | | $wb['limit_ssi_txt'] = 'SSI verfügbar'; |
| | | $wb['limit_perl_txt'] = 'Perl verfügbar'; |
| | | $wb['limit_ruby_txt'] = 'Ruby verfügbar'; |
| | | $wb['limit_python_txt'] = 'Python verfügbar'; |
| | | $wb['force_suexec_txt'] = 'SuEXEC erzwungen'; |
| | | $wb['limit_hterror_txt'] = 'Eigene Fehlerseiten verfügbar'; |
| | | $wb['limit_wildcard_txt'] = 'Wildcard Subdomain verfügbar'; |
| | | $wb['limit_ssl_txt'] = 'SSL verfügbar'; |
| | | $wb['limit_client_error'] = 'Die maximale Anzahl an Kunden wurde erreicht.'; |
| | | $wb['limit_client_error_positive'] = 'Die Anzahl an Kunden muss > 0 sein'; |
| | | $wb['limit_web_quota_txt'] = 'Speicherplatzbeschränkung'; |
| | | $wb['limit_traffic_quota_txt'] = 'Transfervolumenbeschränkung'; |
| | | $wb['limit_trafficquota_error_notint'] = 'Transfervolumenbeschränkung muss eine Zahl sein.'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Max. Anzahl an Secondary DNS Zonen'; |
| | | $wb['limit_dns_slave_zone_error_notint'] = 'Das Secondary DNS Zonen Limit muss eine Zahl sein.'; |
| | | $wb['limit_dns_record_error_notint'] = 'Das DNS Eintrag Limit muss eine Zahl sein.'; |
| | | $wb['customer_no_txt'] = 'Kundennummer'; |
| | | $wb['vat_id_txt'] = 'USt-ID'; |
| | | $wb['required_fields_txt'] = '* Benötigte Felder'; |
| | | $wb['limit_webdav_user_txt'] = 'Max. Anzahl an WebDAV Benutzern'; |
| | | $wb['limit_webdav_user_error_notint'] = 'Das WebDAV Benutzer Limit muss eine Zahl sein.'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Max. Anzahl an Mailinglisten'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Max. Anzahl an E-Mail Domainaliases'; |
| | | $wb['limit_mailmailinglist_error_notint'] = 'Das Mailinglisten Limit muss eine Zahl sein.'; |
| | | $wb['limit_openvz_vm_txt'] = 'Max. Anzahl an virtuellen Servern'; |
| | | $wb['limit_openvz_vm_template_id_txt'] = 'Template für virtuelle Server erzwingen'; |
| | | $wb['limit_openvz_vm_error_notint'] = 'Das Limit virtueller Server muss eine Zahl sein.'; |
| | | $wb['web_php_options_notempty'] = 'Keine PHP Option ausgewählt. Wähle mindestens eine PHP Option.'; |
| | | $wb['ssh_chroot_notempty'] = 'Keine SSH Chroot-Option ausgewählt. Wähle mindestens eine SSH Option.'; |
| | | $wb['username_error_collision'] = 'Der Benutzername sollte nicht mit dem Wort -web- oder -web- gefolgt von einer Nummer anfangen.'; |
| | | $wb['web_limits_txt'] = 'Web Limits'; |
| | | $wb['email_limits_txt'] = 'E-Mail Limits'; |
| | | $wb['database_limits_txt'] = 'Datenbank Limits'; |
| | | $wb['cron_job_limits_txt'] = 'Cronjob Limits'; |
| | | $wb['dns_limits_txt'] = 'DNS Limits'; |
| | | $wb['virtualization_limits_txt'] = 'Virtualisierungs Limits'; |
| | | $wb['generate_password_txt'] = 'Passwort erzeugen'; |
| | | $wb['repeat_password_txt'] = 'Passwort wiederholen'; |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | $wb['customer_no_error_unique'] = 'Die Kundennummer muß einzigartig sein (oder leer).'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb['paypal_email_error_isemail'] = 'Bitte geben Sie eine gültige PayPal-E-Mail-Adresse an.'; |
| | | $wb['paypal_email_txt'] = 'PayPal-E-Mail'; |
| | | $wb['company_id_txt'] = 'Firmen/Entrepreneur ID'; |
| | | $wb['bank_account_number_txt'] = 'Kontonummer'; |
| | | $wb['bank_account_owner_txt'] = 'Kontoinhaber'; |
| | | $wb['bank_code_txt'] = 'BLZ'; |
| | | $wb['bank_name_txt'] = 'Bank'; |
| | | $wb['bank_account_iban_txt'] = 'IBAN'; |
| | | $wb['bank_account_swift_txt'] = 'BIC'; |
| | | ?> |
| | | |
| | |
| | | $wb['country_txt'] = 'Land'; |
| | | $wb['add_new_record_txt'] = 'Neuen Reseller hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | $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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['email_error_isemail'] = 'Please enter a valid email address.'; |
| | | $wb["customer_no_error_unique"] = 'The customer no. must be unique (or empty).'; |
| | | $wb['paypal_email_error_isemail'] = 'Please enter a valid PayPal email address.'; |
| | | $wb['paypal_email_txt'] = 'PayPal Email'; |
| | | $wb['company_id_txt'] = 'Company/Entrepreneur ID'; |
| | | $wb["bank_account_number_txt"] = 'Bank account no.'; |
| | | $wb["bank_account_owner_txt"] = 'Bank account owner'; |
| | | $wb["bank_code_txt"] = 'Bank code'; |
| | | $wb["bank_name_txt"] = 'Bank name'; |
| | | $wb["bank_account_iban_txt"] = 'IBAN'; |
| | | $wb["bank_account_swift_txt"] = 'BIC / Swift'; |
| | | ?> |
| | |
| | | $wb['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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['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).'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Client Circle"] = 'Client Circle'; |
| | | $wb["Circle"] = 'Circle'; |
| | | $wb["circle_txt"] = 'Circle'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["client_ids_txt"] = 'Clients/Resellers'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['Client Circle'] = 'Client Circle'; |
| | | $wb['Circle'] = 'Circle'; |
| | | $wb['circle_txt'] = 'Circle'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['client_ids_txt'] = 'Clients/Resellers'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client Circles'; |
| | | $wb["circle_id_txt"] = 'Circle ID'; |
| | | $wb["circle_name_txt"] = 'Circle Name'; |
| | | $wb["description_txt"] = 'Description'; |
| | | $wb["add_new_record_txt"] = 'Add new circle'; |
| | | $wb["filter_txt"] = 'Filter'; |
| | | $wb["delete_txt"] = 'Delete'; |
| | | $wb["active_txt"] = 'Active'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Client Circles'; |
| | | $wb['circle_id_txt'] = 'Circle ID'; |
| | | $wb['circle_name_txt'] = 'Circle Name'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['add_new_record_txt'] = 'Add new circle'; |
| | | $wb['filter_txt'] = 'Filter'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | |
| | | $wb['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).'; |
| | | ?> |
| | |
| | | global $app, $conf; |
| | | |
| | | // username changed |
| | | if($conf['demo_mode'] != true && isset($this->dataRecord['username']) && $this->dataRecord['username'] != '' && $this->oldDataRecord['username'] != $this->dataRecord['username']) { |
| | | if(isset($conf['demo_mode']) && $conf['demo_mode'] != true && isset($this->dataRecord['username']) && $this->dataRecord['username'] != '' && $this->oldDataRecord['username'] != $this->dataRecord['username']) { |
| | | $username = $app->db->quote($this->dataRecord["username"]); |
| | | $client_id = $this->id; |
| | | $sql = "UPDATE sys_user SET username = '$username' WHERE client_id = $client_id"; |
| | |
| | | } |
| | | |
| | | // password changed |
| | | if($conf['demo_mode'] != true && isset($this->dataRecord["password"]) && $this->dataRecord["password"] != '') { |
| | | if(isset($conf['demo_mode']) && $conf['demo_mode'] != true && isset($this->dataRecord["password"]) && $this->dataRecord["password"] != '') { |
| | | $password = $app->db->quote($this->dataRecord["password"]); |
| | | $client_id = $this->id; |
| | | $salt="$1$"; |
| | |
| | | } |
| | | |
| | | // language changed |
| | | if($conf['demo_mode'] != true && isset($this->dataRecord['language']) && $this->dataRecord['language'] != '' && $this->oldDataRecord['language'] != $this->dataRecord['language']) { |
| | | if(isset($conf['demo_mode']) && $conf['demo_mode'] != true && isset($this->dataRecord['language']) && $this->dataRecord['language'] != '' && $this->oldDataRecord['language'] != $this->dataRecord['language']) { |
| | | $language = $app->db->quote($this->dataRecord["language"]); |
| | | $client_id = $this->id; |
| | | $sql = "UPDATE sys_user SET language = '$language' WHERE client_id = $client_id"; |
| | |
| | | } |
| | | |
| | | // ensure that a reseller is not converted to a client in demo mode when client_id <= 2 |
| | | if($conf['demo_mode'] == true && $this->id <= 2) { |
| | | if(isset($conf['demo_mode']) && $conf['demo_mode'] == true && $this->id <= 2) { |
| | | if(isset($this->dataRecord["limit_client"]) && $this->dataRecord["limit_client"] != -1) { |
| | | $app->db->query('UPDATE client set limit_client = -1 WHERE client_id = '.$this->id); |
| | | } |
| | |
| | | <label for="bank_account_swift">{tmpl_var name='bank_account_swift_txt'}</label> |
| | | <input name="bank_account_swift" id="bank_account_swift" value="{tmpl_var name='bank_account_swift'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="paypal_email">{tmpl_var name='paypal_email_txt'}</label> |
| | | <input name="paypal_email" id="paypal_email" value="{tmpl_var name='paypal_email'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="notes">{tmpl_var name='notes_txt'}</label> |
| | | <textarea name="notes" id="notes" rows='10' cols='30'>{tmpl_var name='notes'}</textarea> |
| | |
| | | <label for="vat_id">{tmpl_var name='vat_id_txt'}</label> |
| | | <input name="vat_id" id="vat_id" value="{tmpl_var name='vat_id'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="company_id">{tmpl_var name='company_id_txt'}</label> |
| | | <input name="company_id" id="company_id" value="{tmpl_var name='company_id'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="bank_account_owner">{tmpl_var name='bank_account_owner_txt'}</label> |
| | | <input name="bank_account_owner" id="bank_account_owner" value="{tmpl_var name='bank_account_owner'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="bank_account_number">{tmpl_var name='bank_account_number_txt'}</label> |
| | | <input name="bank_account_number" id="bank_account_number" value="{tmpl_var name='bank_account_number'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="bank_code">{tmpl_var name='bank_code_txt'}</label> |
| | | <input name="bank_code" id="bank_code" value="{tmpl_var name='bank_code'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="bank_name">{tmpl_var name='bank_name_txt'}</label> |
| | | <input name="bank_name" id="bank_name" value="{tmpl_var name='bank_name'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="bank_account_iban">{tmpl_var name='bank_account_iban_txt'}</label> |
| | | <input name="bank_account_iban" id="bank_account_iban" value="{tmpl_var name='bank_account_iban'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="bank_account_swift">{tmpl_var name='bank_account_swift_txt'}</label> |
| | | <input name="bank_account_swift" id="bank_account_swift" value="{tmpl_var name='bank_account_swift'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="paypal_email">{tmpl_var name='paypal_email_txt'}</label> |
| | | <input name="paypal_email" id="paypal_email" value="{tmpl_var name='paypal_email'}" size="30" maxlength="255" type="text" class="textInput" /> |
| | | </div> |
| | | <div class="ctrlHolder"> |
| | | <label for="notes">{tmpl_var name='notes_txt'}</label> |
| | | <textarea name="notes" id="notes" rows='10' cols='30'>{tmpl_var name='notes'}</textarea> |
| | |
| | | $name = $tmp['contact_name']; |
| | | } |
| | | |
| | | $welcome = sprintf($wb['welcome_user_txt'], htmlentities($name)); |
| | | $welcome = sprintf($wb['welcome_user_txt'], htmlentities($name, ENT_QUOTES, 'UTF-8')); |
| | | $app->tpl->setVar('welcome_user', $welcome); |
| | | |
| | | |
| | |
| | | $wb['limits_txt'] = 'Limity účtu'; |
| | | $wb['of_txt'] = 'z'; |
| | | $wb['unlimited_txt'] = 'neomezeno'; |
| | | $wb['limit_maildomain_txt'] = 'Počet emailových domén'; |
| | | $wb['limit_maildomain_txt'] = 'Počet e-mailových domén'; |
| | | $wb['limit_mailbox_txt'] = 'Počet mailboxů'; |
| | | $wb['limit_mailalias_txt'] = 'Počet emailových aliasů'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Počet doménových aliasů'; |
| | | $wb['limit_mailforward_txt'] = 'Počet emailových přesměrování'; |
| | | $wb['limit_mailcatchall_txt'] = 'Počet externě získávaných emailů'; |
| | | $wb['limit_mailrouting_txt'] = 'Počet emailových směrování'; |
| | | $wb['limit_mailfilter_txt'] = 'Počet emailových filtrů'; |
| | | $wb['limit_fetchmail_txt'] = 'Počet získávaných emailů'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Počet záznamů na black/white listu'; |
| | | $wb['limit_mailalias_txt'] = 'Počet e-mailových aliasů'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Počet e-mailových doménových aliasů'; |
| | | $wb['limit_mailforward_txt'] = 'Počet e-mailových přesměrování'; |
| | | $wb['limit_mailcatchall_txt'] = 'Počet externě získávaných e-mailů'; |
| | | $wb['limit_mailrouting_txt'] = 'Počet e-mailových směrování'; |
| | | $wb['limit_mailfilter_txt'] = 'Počet e-mailových filtrů'; |
| | | $wb['limit_fetchmail_txt'] = 'Počet získávaných e-mailů'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Počet záznamů na černých/bílých listinách'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Počet uživatelů se spamfiltrem'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Počet spamových politik'; |
| | | $wb['limit_cron_txt'] = 'Počet cron úloh'; |
| | | $wb['limit_web_domain_txt'] = 'Počet webových stránek'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Počet doménových aliasů'; |
| | | $wb['limit_web_subdomain_txt'] = 'Počet subdomén'; |
| | | $wb['limit_ftp_user_txt'] = 'Počet FTP uživateů'; |
| | | $wb['limit_dns_zone_txt'] = 'Počet DNS zón'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Počet webových doménových aliasů'; |
| | | $wb['limit_web_subdomain_txt'] = 'Počet webových subdomén'; |
| | | $wb['limit_ftp_user_txt'] = 'Počet FTP uživatelů'; |
| | | $wb['limit_dns_zone_txt'] = 'Počet DNS primárních zón'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Počet DNS sekundárních zón'; |
| | | $wb['limit_dns_record_txt'] = 'Počet DNS záznamů'; |
| | | $wb['limit_shell_user_txt'] = 'Počet Shell uživatelů'; |
| | | $wb['limit_webdav_user_txt'] = 'Počet Webdav uživatelů'; |
| | | $wb['limit_client_txt'] = 'Počet klientů'; |
| | | $wb['limit_database_txt'] = 'Počet databází'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Number of mailing lists'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Počet e-mailových konferencí'; |
| | | ?> |
| | |
| | | $wb['welcome_user_txt'] = 'Herzlich Willkommen %s'; |
| | | $wb['available_modules_txt'] = 'Verfügbare Module'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['limits_txt'] = "Kontolimits"; |
| | | $wb['of_txt'] = "von"; |
| | | $wb['unlimited_txt'] = "unlimitiert"; |
| | | $wb['limit_maildomain_txt'] = "Anzahl der E-Mail Domains"; |
| | | $wb['limit_mailbox_txt'] = "Anzahl der E-Mail Konten"; |
| | | $wb['limit_mailalias_txt'] = "Anzahl der E-Mail Aliases"; |
| | | $wb['limit_mailaliasdomain_txt'] = "Anzahl der Domain Aliases"; |
| | | $wb['limit_mailforward_txt'] = "Anzahl der E-Mail Weiterleitungen"; |
| | | $wb['limit_mailcatchall_txt'] = "Anzahl der E-Mail Catchall Konten"; |
| | | $wb['limit_mailrouting_txt'] = "Anzahl der E-Mail Routen"; |
| | | $wb['limit_mailfilter_txt'] = "Anzahl der E-Mail Filter"; |
| | | $wb['limit_fetchmail_txt'] = "Anzahl der Fetchmail Konten"; |
| | | $wb['limit_spamfilter_wblist_txt'] = "Anzahl der Spamfilter (White-/Blacklist)"; |
| | | $wb['limit_spamfilter_user_txt'] = "Anzahl der Spamfilter Benutzer"; |
| | | $wb['limit_spamfilter_policy_txt'] = "Anzahl der Spamfilter Richtlinien"; |
| | | $wb['limit_cron_txt'] = "Anzahl der Cronjobs"; |
| | | $wb['limit_web_domain_txt'] = "Anzahl der Web Domains"; |
| | | $wb['limit_web_aliasdomain_txt'] = "Anzahl der Web Aliasdomains"; |
| | | $wb['limit_web_subdomain_txt'] = "Anzahl der Web Subdomains"; |
| | | $wb['limit_ftp_user_txt'] = "Anzahl der FTP Benutzer"; |
| | | $wb['limit_dns_zone_txt'] = "Anzahl der DNS Zonen"; |
| | | $wb['limit_dns_slave_zone_txt'] = "Anzahl der Secondary DNS Zonen"; |
| | | $wb['limit_dns_record_txt'] = "Anzahl der DNS Einträge"; |
| | | $wb['limit_shell_user_txt'] = "Anzahl der Shell Benutzer"; |
| | | $wb['limit_webdav_user_txt'] = "Anzahl der WebDAV Benutzer"; |
| | | $wb['limit_client_txt'] = "Anzahl der Kunden"; |
| | | $wb['limit_database_txt'] = "Anzahl der Datenbanken"; |
| | | $wb['limit_mailmailinglist_txt'] = "Anzahl der Mailinglisten"; |
| | | $wb['limits_txt'] = 'Kontolimits'; |
| | | $wb['of_txt'] = 'von'; |
| | | $wb['unlimited_txt'] = 'unlimitiert'; |
| | | $wb['limit_maildomain_txt'] = 'Anzahl der E-Mail Domains'; |
| | | $wb['limit_mailbox_txt'] = 'Anzahl der E-Mail Konten'; |
| | | $wb['limit_mailalias_txt'] = 'Anzahl der E-Mail Aliases'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Anzahl der Domain Aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Anzahl der E-Mail Weiterleitungen'; |
| | | $wb['limit_mailcatchall_txt'] = 'Anzahl der E-Mail Catchall Konten'; |
| | | $wb['limit_mailrouting_txt'] = 'Anzahl der E-Mail Routen'; |
| | | $wb['limit_mailfilter_txt'] = 'Anzahl der E-Mail Filter'; |
| | | $wb['limit_fetchmail_txt'] = 'Anzahl der Fetchmail Konten'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Anzahl der Spamfilter (White-/Blacklist)'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Anzahl der Spamfilter Benutzer'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Anzahl der Spamfilter Richtlinien'; |
| | | $wb['limit_cron_txt'] = 'Anzahl der Cronjobs'; |
| | | $wb['limit_web_domain_txt'] = 'Anzahl der Web Domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Anzahl der Web Aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Anzahl der Web Subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Anzahl der FTP Benutzer'; |
| | | $wb['limit_dns_zone_txt'] = 'Anzahl der DNS Zonen'; |
| | | $wb['limit_dns_slave_zone_txt'] = 'Anzahl der Secondary DNS Zonen'; |
| | | $wb['limit_dns_record_txt'] = 'Anzahl der DNS Einträge'; |
| | | $wb['limit_shell_user_txt'] = 'Anzahl der Shell Benutzer'; |
| | | $wb['limit_webdav_user_txt'] = 'Anzahl der WebDAV Benutzer'; |
| | | $wb['limit_client_txt'] = 'Anzahl der Kunden'; |
| | | $wb['limit_database_txt'] = 'Anzahl der Datenbanken'; |
| | | $wb['limit_mailmailinglist_txt'] = 'Anzahl der Mailinglisten'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['available_modules_txt'] = 'Verfügbare Module'; |
| | | ?> |
| | | |
| | |
| | | $wb['startpage_txt'] = 'Výchozí stránka'; |
| | | $wb['tab_width_txt'] = 'Šířka záložky'; |
| | | $wb['save_txt'] = 'Uložit'; |
| | | $wb['cancel_txt'] = 'Storno'; |
| | | $wb['cancel_txt'] = 'Zrušit'; |
| | | $wb['header_txt'] = 'Vlastnosti formuláře'; |
| | | $wb['description_txt'] = 'Popis'; |
| | | $wb['action_txt'] = 'Akce (skript)'; |
| | |
| | | $wb['startpage_txt'] = 'Výchozí stránka'; |
| | | $wb['tab_width_txt'] = 'Šířka záložky'; |
| | | $wb['save_txt'] = 'Uložit'; |
| | | $wb['cancel_txt'] = 'Storno'; |
| | | $wb['cancel_txt'] = 'Zrušit'; |
| | | $wb['header_txt'] = 'Vlastnosti modulu'; |
| | | $wb['description_txt'] = ' |
| | | <b>Popis</b> |
| | |
| | | $wb['title_txt'] = 'Titulek'; |
| | | $wb['header_txt'] = 'Navi vlastnosti'; |
| | | $wb['save_txt'] = 'Uložit'; |
| | | $wb['cancel_txt'] = 'Storno'; |
| | | $wb['cancel_txt'] = 'Zrušit'; |
| | | ?> |
| | |
| | | $wb['auth_preset_perm_group_txt'] = 'Gruppenberechtigungen'; |
| | | $wb['auth_preset_perm_other_txt'] = 'andere Berechtigungen'; |
| | | ?> |
| | | |
| | |
| | | $wb['title_txt'] = 'Bezeichnung'; |
| | | $wb['description_txt'] = 'Beschreibung'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Menü samt Menüeinträgen löschen?'; |
| | | $wb['item_del_txt'] = 'Menüeintrag löschen?'; |
| | | ?> |
| | | |
| | |
| | | $wb['header_txt'] = 'Moduleigenschaften'; |
| | | $wb['description_txt'] = 'Beschreibung'; |
| | | ?> |
| | | |
| | |
| | | $wb['module_txt'] = 'Modul'; |
| | | $wb['title_txt'] = 'Bezeichnung'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Speichern'; |
| | | $wb['cancel_txt'] = 'Abbrechen'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Speichern'; |
| | | $wb['cancel_txt'] = 'Abbrechen'; |
| | | ?> |
| | | |
| | |
| | | $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['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['DNS'] = 'DNS'; |
| | | $wb['Zones'] = 'Zóny'; |
| | | $wb['DNS'] = 'Primární DNS'; |
| | | $wb['Zones'] = 'Primární DNS zóny'; |
| | | $wb['DNS A'] = 'DNS A'; |
| | | $wb['DNS ALIAS'] = 'DNS ALIAS'; |
| | | $wb['DNS CNAME'] = 'DNS CNAME'; |
| | |
| | | $wb['DNS TXT'] = 'DNS TXT'; |
| | | $wb['DNS Wizard'] = 'DNS průvodce'; |
| | | $wb['Add DNS Zone'] = 'Přidat DNS zónu'; |
| | | $wb['Templates'] = 'Šablony'; |
| | | $wb['Secondary Zones'] = 'Secondary Zones'; |
| | | $wb['Import Zone File'] = 'Import Zone File'; |
| | | $wb['Templates'] = 'Šablony DNS'; |
| | | $wb['Secondary Zones'] = 'Sekundární DNS zóny'; |
| | | $wb['Import Zone File'] = 'Importovat vybraný DNS zonový soubor'; |
| | | ?> |
| | |
| | | <?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['client_txt'] = 'Klient'; |
| | | $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['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['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['title'] = 'Importovat soubory zón'; |
| | | $wb['no_file_uploaded_error'] = 'Nelze odeslat DNS zonový soubor'; |
| | | $wb['zone_file_import_txt'] = 'Importovat vybraný DNS zonový soubor'; |
| | | ?> |
| | |
| | | $wb['mbox_error_empty'] = 'Email je prázdný.'; |
| | | $wb['mbox_error_regex'] = 'Email má chybný formát.'; |
| | | $wb['also_notify_txt'] = 'Také upozornit'; |
| | | $wb['also_notify_error_regex'] = 'Please use an IP address.'; |
| | | $wb['also_notify_error_regex'] = 'Prosím, použijte IP adresu.'; |
| | | $wb['update_acl_txt'] = 'Aktualizovat ACL'; |
| | | $wb['seconds_txt'] = 'vteřin'; |
| | | $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.'] = 'The Domain can not be changed. Please ask your Administrator if you want to change the domain name.'; |
| | | $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.'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'DNS zóny'; |
| | | $wb['list_head_txt'] = 'Primární DNS zóny'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['origin_txt'] = 'Zóna'; |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['btn_save_txt'] = 'Vytvořit DNS záznam'; |
| | | $wb['btn_cancel_txt'] = 'Storno'; |
| | | $wb['btn_cancel_txt'] = 'Zrušit'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['ns1_txt'] = 'NS 1'; |
| | |
| | | $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['Secondary Zones'] = 'Secondary DNS Zonen'; |
| | | $wb['Import Zone File'] = 'Zone File Import'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_regex'] = 'IPv4 Adressen-Format ist ungültig'; |
| | | $wb['data_error_duplicate'] = 'Doppelter A oder CNAME Eintrag'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'von'; |
| | | $wb['delete_confirmation'] = 'Wollen Sie den Datensatz wirklich löschen?'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'IPv6 Adresse ist leer'; |
| | | $wb['data_error_regex'] = 'IPv6 Adressen Format ist ungültig'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Ziel Hostname ist leer'; |
| | | $wb['data_error_regex'] = 'Ziel Hostname Format ist ungültig'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_regex'] = 'Ziel Hostname Format ist ungültig'; |
| | | $wb['data_error_duplicate'] = 'Doppelter A oder CNAME Eintrag'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Host Information ist leer'; |
| | | $wb['data_error_regex'] = 'Host Information Format ist ungültig'; |
| | | ?> |
| | | |
| | |
| | | $wb['title'] = 'Zone File importieren'; |
| | | $wb['no_file_uploaded_error'] = 'Keine Datei hochgeladen'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Mailserver Hostname ist leer'; |
| | | $wb['data_error_regex'] = 'Mailserver Hostname Format ist ungültig'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Nameserver ist leer.'; |
| | | $wb['data_error_regex'] = 'Nameserver Format ist ungültig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Kanonischer Hostname ist leer'; |
| | | $wb['data_error_regex'] = 'Kanonischer Hostname Format ist ungültig'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Kontaktperson Feld leer'; |
| | | $wb['data_error_regex'] = 'Kontaktperson Format ungültig'; |
| | | ?> |
| | | |
| | |
| | | $wb['eg_domain_tld'] = 'Format: domain.tld.'; |
| | | $wb['ipv4_form_txt'] = 'IPv4 Format: 1.2.3.4'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Neue Secondary DNS Zone hinzufügen'; |
| | | $wb['eg_domain_tld'] = 'Format: domain.tld.'; |
| | | ?> |
| | | |
| | |
| | | $wb['minimum_range_error'] = 'Min. Minimum ist 60 Sekunden.'; |
| | | $wb['ttl_range_error'] = 'Min. TTL ist 60 Sekunden.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Neue DNS Zone (SOA) hinzufügen'; |
| | | $wb['add_new_record_wizard_txt'] = 'Neue DNS Zone per Assistent hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | $wb['srv_error_regex'] = 'Ungültiges Server Record Format. Der ServerRecord muss 3 Text Strings getrennt durch Leerzeichen beinhalten.'; |
| | | $wb['aux_txt'] = 'Priorität'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_txt'] = 'Vorlage'; |
| | | $wb['visible_txt'] = 'Sichtbar'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Neuen Eintrag hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Text ist leer'; |
| | | $wb['data_error_regex'] = 'Textformat ungültig'; |
| | | ?> |
| | | |
| | |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Suche'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Vorschläge'; |
| | | ?> |
| | | |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['list_head_txt'] = 'DNS Zone Wizard'; |
| | | $wb['list_desc_txt'] = 'Create a DNS Zone via a wizard'; |
| | | ?> |
| | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons topbuttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('dns/dns_a_edit.php?zone={tmpl_var name='parent_id'}');"><span>A</span></button> |
| | |
| | | <div class="panel panel_list_dns_slave"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('dns/dns_slave_edit.php');"> |
| | |
| | | <div class="panel panel_list_dns_soa"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('dns/dns_wizard.php');"><span>{tmpl_var name="add_new_record_wizard_txt"}</span></button> |
| | |
| | | $wb['Add a Question & Answer Pair'] = 'Neues Frage/Antwort Paar hinzufügen'; |
| | | $wb['Manage Questions'] = 'Fragen verwalten'; |
| | | ?> |
| | | |
| | |
| | | $wb['faq_answer_txt'] = 'Antwort'; |
| | | $wb['faq_section_txt'] = 'Kategorie'; |
| | | ?> |
| | | |
| | |
| | | $wb['faq_faq_questions_txt'] = 'Frequently Asked Questions'; |
| | | $wb['faq_new_question_txt'] = 'Neues Frage/Antwort Paar hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['faq_section_name_txt'] = 'Kategorie Name'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['edit_txt'] = 'Bearbeiten'; |
| | | ?> |
| | | |
| | |
| | | $wb['faq_faq_sections_txt'] = 'FAQ Kategorie'; |
| | | $wb['faq_new_section_txt'] = 'Neue Kategorie hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | $wb['tstamp_txt'] = 'Zeitpunkt'; |
| | | $wb['reply_txt'] = 'Antworten'; |
| | | ?> |
| | | |
| | |
| | | $wb['subject_txt'] = 'Betreff'; |
| | | $wb['add_new_record_txt'] = 'Neue Supportnachricht erstellen'; |
| | | ?> |
| | | |
| | |
| | | var input, |
| | | self = this, |
| | | select = this.element, |
| | | internal = false, |
| | | selected = select.children( ":selected" ), |
| | | value = selected.val() ? selected.text() : "", |
| | | wrapper = this.wrapper = $( "<span>" ) |
| | | .addClass( "ui-combobox" ) |
| | | .insertAfter( select ); |
| | | |
| | | |
| | | input = $( "<input>" ).css( { "width": (select.is(':visible') ? (elwidth > 15 ? elwidth - 15 : 1) : 350), "height": (elheight > 0 ? elheight : 16) }); |
| | | select.hide(); |
| | | input.appendTo( wrapper ) |
| | |
| | | $.ui.autocomplete.escapeRegex(request.term) + |
| | | ")(?![^<>]*>)(?![^&;]+;)", "gi" |
| | | ), "<strong>$1</strong>" )), |
| | | value: text, |
| | | class: (select.hasClass('flags') ? 'country-' + $(this).val().toUpperCase() : $(this).attr('class')), |
| | | 'value': (text ? text : ''), |
| | | 'class': (select.hasClass('flags') ? 'country-' + ($(this).val() ? $(this).val().toUpperCase() : '') : $(this).attr('class')), |
| | | option: this |
| | | }; |
| | | }) ); |
| | |
| | | } else if($(select).attr('onchange')) { |
| | | eval($(select).attr('onchange')); |
| | | } else { |
| | | if(!ui.item.internal) $(select).change(); |
| | | if(!ui.item.internal) { |
| | | internal = true; |
| | | $(select).change(); |
| | | } |
| | | } |
| | | if (jQuery(".panel #Filter").length > 0) { |
| | | jQuery(".panel #Filter").trigger('click'); |
| | |
| | | $(this).autocomplete('option','select').call($(this), event, { item: { option: selected.get(0), internal: true } }); |
| | | } |
| | | }) |
| | | .addClass( "ui-widget ui-widget-content ui-corner-left" ); |
| | | .addClass( "ui-widget ui-widget-content ui-corner-left" ) |
| | | .click(function() { |
| | | // close if already visible |
| | | if ( input.autocomplete( "widget" ).is( ":visible" ) ) { |
| | | //input.autocomplete( "close" ); |
| | | return; |
| | | } |
| | | |
| | | // work around a bug (likely same cause as #5265) |
| | | $( this ).blur(); |
| | | |
| | | // pass empty string as value to search for, displaying all results |
| | | input.autocomplete( "search", "" ); |
| | | input.focus(); |
| | | }); |
| | | if(select.hasClass('flags')) input.addClass('flags'); |
| | | |
| | | input.data( "autocomplete" )._renderItem = function( ul, item ) { |
| | |
| | | .data( "item.autocomplete", item ) |
| | | .append( "<a>" + item.label + "</a>" ) |
| | | .appendTo( ul ); |
| | | if(item.class) el.addClass(item.class); |
| | | if(item && item['class'] && el) el.addClass(item['class']); |
| | | return el; |
| | | }; |
| | | select.change(function(e) { |
| | | if(internal == true) { |
| | | internal = false; |
| | | return; |
| | | } |
| | | var matcher = new RegExp( "" + $.ui.autocomplete.escapeRegex( $(this).val() ) + "", "i" ), |
| | | matchtext = $(this).val(); |
| | | valid = false, |
| | |
| | | $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_button_txt'] = 'Resend password'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['error_maintenance_mode'] = 'This ISPConfig installation is currently under maintenance. We should be back shortly. Thank you for your patience.'; |
| | | $wb['theme_not_compatible'] = 'The chosen theme is not compatible with the current ISPConfig version. Please check for a new version of the theme.<br />The default theme as been activated automatically.'; |
| | | ?> |
| | |
| | | $wb['pw_reset_txt'] = 'Password reset'; |
| | | $wb['pw_button_txt'] = 'Resend password'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['theme_not_compatible'] = 'The chosen theme is not compatible with the current ISPConfig version. Please check for a new version of the theme.<br />The default theme as been activated automatically.'; |
| | | ?> |
| | |
| | | $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['pass_reset_txt'] = 'Bude Vám vygenerováno a zasláno nové heslo na email, pokud Vaše adresa zadaná níže odpovídá adrese ve Vašem klientském nastavení.'; |
| | | $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áš email.'; |
| | | $wb['pw_error'] = 'Uživatelské jméno nebo email neodpovídá.'; |
| | | $wb['pw_error_noinput'] = 'Prosím zadejte uživatelské jméno a email.'; |
| | | $wb['pw_error'] = 'Uživatelské jméno nebo e-mail neodpovídá.'; |
| | | $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['user_regex_error'] = 'Uživatelské jméno obsahuje nepovolené znaky nebo je delší než 64 znaků.'; |
| | |
| | | $wb['username_txt'] = 'Uživatelské jméno'; |
| | | $wb['password_txt'] = 'Heslo'; |
| | | $wb['login_button_txt'] = 'Přihlásit se'; |
| | | $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['pw_lost_txt'] = 'Obnovit zapomenuté heslo'; |
| | | $wb['error_maintenance_mode'] = 'V současné době probíhá údržba systému ISPConfig. Přihlášení zkuste prosím později. Děkujeme Vám za trpělivost.'; |
| | | $wb['login_txt'] = 'Přihlášení'; |
| | | $wb['pw_reset_txt'] = 'Resetování (obnova) hesla'; |
| | | $wb['pw_button_txt'] = 'Znovu odeslat heslo'; |
| | | $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.'; |
| | | ?> |
| | |
| | | $wb['error_maintenance_mode'] = 'Diese ISPConfig Installation wird gerade gewartet. Wir sind in Kürze wieder für Sie da. Vielen Dank für Ihre Geduld.'; |
| | | $wb['theme_not_compatible'] = 'Das gewählte Design ist mit dieser ISPConfig Version nicht kompatibel. Bitte prüfen Sie, ob ein Update des Themes verfügbar ist.<br />Es wurde nun automatisch das Standard Design aktiviert.'; |
| | | ?> |
| | | |
| | |
| | | $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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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.'; |
| | | ?> |
| | |
| | | 'autoresponder_start_date' => array ( |
| | | 'datatype' => 'DATETIME', |
| | | 'formtype' => 'DATETIME', |
| | | 'validators'=> array ( 0 => array ( 'type' => 'CUSTOM', |
| | | 'class' => 'validate_autoresponder', |
| | | 'function' => 'start_date', |
| | | 'errmsg'=> 'autoresponder_start_date_is_required'), |
| | | ) |
| | | ), |
| | | 'autoresponder_end_date' => array ( |
| | | 'datatype' => 'DATETIME', |
| | |
| | | $wb['Filter'] = 'Filtr'; |
| | | $wb['Mail Domain'] = 'Doména e-mailů'; |
| | | $wb['Domain'] = 'Domény'; |
| | | $wb['Email Catchall'] = 'Emailový koš'; |
| | | $wb['Email Catchall'] = 'E-mailový koš'; |
| | | $wb['Email Forward'] = 'Přesměrování e-mailů'; |
| | | $wb['Get Email'] = 'Získat email'; |
| | | $wb['Spamfilter'] = 'Spamfiltr'; |
| | | $wb['Email Routing'] = 'Směrování'; |
| | | $wb['Email transport'] = 'Transport'; |
| | | $wb['Mailbox'] = 'Mailbox'; |
| | | $wb['Autoresponder'] = 'Automatické odpovědi'; |
| | | $wb['Mail Filter'] = 'Mailový filtr'; |
| | | $wb['Autoresponder'] = 'Automatická odpověď'; |
| | | $wb['Mail Filter'] = 'E-mailové filtry'; |
| | | $wb['Custom Rules'] = 'Vlastní pravidla'; |
| | | $wb['Email filter'] = 'Emailový filtr'; |
| | | $wb['Email Whitelist'] = 'Email bílá listina'; |
| | | $wb['Email filter'] = 'E-mailový filtr'; |
| | | $wb['Email Whitelist'] = 'E-mail bílá listina'; |
| | | $wb['Whitelist'] = 'Bílá listina'; |
| | | $wb['Spamfilter blacklist'] = 'Spamfiltr černá listina'; |
| | | $wb['Spamfilter Config'] = 'Konfigurace spamfiltru'; |
| | |
| | | $wb['Spamfilter Whitelist'] = 'Spamfiltr bílá listina'; |
| | | $wb['Email'] = 'Email'; |
| | | $wb['Email Mailbox'] = 'E-mailové schránky'; |
| | | $wb['Email Accounts'] = 'Email účty'; |
| | | $wb['Email Accounts'] = 'E-mail účty'; |
| | | $wb['User / Domain'] = 'Uživatel / Doména'; |
| | | $wb['Server Settings'] = 'Nastavení serveru'; |
| | | $wb['Fetchmail'] = 'Externí získávání emailů'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Email doména'; |
| | | $wb['list_head_txt'] = 'E-mail doména'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['add_new_record_txt'] = 'Přidat doménu'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Email koš'; |
| | | $wb['list_head_txt'] = 'E-mailový koš'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['source_txt'] = 'Zdroj'; |
| | | $wb['destination_txt'] = 'Cílová email adresa'; |
| | | $wb['destination_txt'] = 'Cílová e-mailová adresa'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['add_new_record_txt'] = 'Přidat koš'; |
| | | $wb['domain_txt'] = 'E-malová doména'; |
| | | $wb['add_new_record_txt'] = 'Přidat e-mailový koš'; |
| | | ?> |
| | |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $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'] = 'Generovat heslo'; |
| | | $wb['repeat_password_txt'] = 'Opakujte heslo'; |
| | | $wb['password_mismatch_txt'] = 'Hesla se neshodují.'; |
| | | $wb['password_match_txt'] = 'Hesla se shodují.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['custom_mailfilter_txt'] = 'Vlastní předpis mailového filtru'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['custom_mailfilter_txt'] = 'Vlastní předpis e-mailového filtru'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['cryptpwd_txt'] = 'Heslo'; |
| | | $wb['password_strength_txt'] = 'Bezpečnost hesla'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['email_error_isemail'] = 'Email adresa je chybná.'; |
| | | $wb['email_error_isemail'] = 'E-mail adresa je chybná.'; |
| | | $wb['email_error_unique'] = 'Duplikování email adresy.'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Aktivní'; |
| | |
| | | $wb['quota_txt'] = 'Kvóta'; |
| | | $wb['server_id_txt'] = 'Server_id'; |
| | | $wb['password_txt'] = 'Heslo'; |
| | | $wb['maildir_txt'] = 'Mailový adresář'; |
| | | $wb['maildir_txt'] = 'E-mailový adresář'; |
| | | $wb['postfix_txt'] = 'Povolit příjem'; |
| | | $wb['access_txt'] = 'Povolit přístup'; |
| | | $wb['policy_txt'] = 'Spamfiltr'; |
| | | $wb['policy_txt'] = 'Spamový filtr'; |
| | | $wb['no_policy'] = '- nepovoleno -'; |
| | | $wb['limit_mailbox_txt'] = 'Dosažen maximální počet mailboxů pro Váš účet.'; |
| | | $wb['limit_mailquota_txt'] = 'Dosažen maximální prostor pro mailboxy. Max. dostupné místo v MB je'; |
| | |
| | | $wb['name_optional_txt'] = '(volitelné)'; |
| | | $wb['autoresponder_active'] = 'Povolit automatický odpovídač'; |
| | | $wb['cc_txt'] = 'Přeposílat na'; |
| | | $wb['cc_error_isemail'] = 'Adresa uvedená v poli Přeposílat na je neplatná'; |
| | | $wb['cc_error_isemail'] = 'Adresa uvedená v poli přeposílat na je neplatná'; |
| | | $wb['domain_txt'] = 'Doména'; |
| | | $wb['now_txt'] = 'Nyní'; |
| | | $wb['login_error_unique'] = 'Login is already taken.'; |
| | | $wb['login_error_regex'] = 'Valid characters are A-Z, a-z, 0-9, ., _ and -.'; |
| | | $wb['login_txt'] = 'Login (optional)'; |
| | | $wb['error_login_email_txt'] = 'This login is not allowed. Please enter a different login or use the mail address as login.'; |
| | | $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['login_error_unique'] = 'Přihlášovací jméno je již obsazeno.'; |
| | | $wb['login_error_regex'] = 'Platné znaky jsou A-Z, a-z, 0-9, ., _ a -.'; |
| | | $wb['login_txt'] = 'Přihlásit se (volitelně)'; |
| | | $wb['error_login_email_txt'] = 'Toto přihlášení není povoleno. Zadejte prosím jiné přihlašovací nebo použijte mailovou adresu jako přihlašovací jméno.'; |
| | | $wb['autoresponder_subject_txt'] = 'Předmět e-mailu'; |
| | | $wb['autoresponder_subject'] = 'Oznámení o nepřítomnosti'; |
| | | $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í.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['rulename_txt'] = 'Název'; |
| | | $wb['rulename_txt'] = 'Název pravidla'; |
| | | $wb['action_txt'] = 'Akce'; |
| | | $wb['target_txt'] = 'Složka'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | |
| | | $wb['searchterm_is_empty'] = 'Vyhledávací řádek je prázdný.'; |
| | | $wb['source_txt'] = 'Zdroj'; |
| | | $wb['target_error_regex'] = 'Cíl může obsahovat jen tyto znaky: a-z, 0-9, -, ., _, a {mezeru}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['limit_mailfilter_txt'] = 'Byl dosažen max. počet e-mailový filtrovacích pravidel.'; |
| | | $wb['subject_txt'] = 'Předmět'; |
| | | $wb['from_txt'] = 'Odesílatel'; |
| | | $wb['to_txt'] = 'Adresát'; |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'E-mailové schránky'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['autoresponder_txt'] = 'Automatická odpověď'; |
| | | $wb['add_new_record_txt'] = 'Přidat e-mailovou schránku'; |
| | | $wb['name_txt'] = 'Skutečný název'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['login_txt'] = 'Přihlášení'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['wb_txt'] = 'wb'; |
| | | $wb['rid_txt'] = 'Uživatel'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['priority_txt'] = 'Priorita'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Dosažen maximální počet záznamů pro bílou / černou listinu pro Váš účet.'; |
| | |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost uživatel'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost heslo'; |
| | | $wb['mailbox_size_limit_txt'] = 'Limit velikosti mailboxut'; |
| | | $wb['mailbox_size_limit_txt'] = 'Limit velikosti e-mailové schránky'; |
| | | $wb['message_size_limit_txt'] = 'Limit velikosti zprávy'; |
| | | ?> |
| | |
| | | $wb['bypass_virus_checks_txt'] = 'Obejít kontrolu virů'; |
| | | $wb['bypass_banned_checks_txt'] = 'Obejít kontrolu zabanovaných'; |
| | | $wb['bypass_header_checks_txt'] = 'Obejít kontrolu hlavičky'; |
| | | $wb['virus_quarantine_to_txt'] = 'Předat virus na email'; |
| | | $wb['virus_quarantine_to_txt'] = 'Předat virus na e-mail'; |
| | | $wb['spam_quarantine_to_txt'] = 'Předat spam na email'; |
| | | $wb['banned_quarantine_to_txt'] = 'Předat zabanované na email'; |
| | | $wb['bad_header_quarantine_to_txt'] = 'Předat špatnou hlavičku na email'; |
| | | $wb['clean_quarantine_to_txt'] = 'Předat čisté na email'; |
| | | $wb['other_quarantine_to_txt'] = 'Předat ostatní na email'; |
| | | $wb['banned_quarantine_to_txt'] = 'Předat zabanované na e-mail'; |
| | | $wb['bad_header_quarantine_to_txt'] = 'Předat špatnou hlavičku na e-mail'; |
| | | $wb['clean_quarantine_to_txt'] = 'Předat čisté na e-mail'; |
| | | $wb['other_quarantine_to_txt'] = 'Předat ostatní na e-mail'; |
| | | $wb['spam_tag_level_txt'] = 'SPAM tag úroveň'; |
| | | $wb['spam_tag2_level_txt'] = 'SPAM tag2 úroveň'; |
| | | $wb['spam_kill_level_txt'] = 'SPAM kill úroveň'; |
| | |
| | | <?php |
| | | $wb['Email Alias'] = "E-Mail Alias"; |
| | | $wb['Email Blacklist'] = "E-Mail Blacklist"; |
| | | $wb['Blacklist'] = "Blacklist"; |
| | | $wb['Mail Content Filter'] = "E-Mail Inhaltsfilter"; |
| | | $wb['Filter'] = "Filter"; |
| | | $wb['Mail Domain'] = "E-Mail Domain"; |
| | | $wb['Domain'] = "E-Mail Domain"; |
| | | $wb['Email Catchall'] = "E-Mail Catchall"; |
| | | $wb['Email Forward'] = "E-Mail Weiterleitung"; |
| | | $wb['Get Email'] = "E-Mail Sammeldienst"; |
| | | $wb['Spamfilter'] = "Spamfilter"; |
| | | $wb['Email Routing'] = "E-Mail Routing"; |
| | | $wb['Email transport'] = "E-Mail Transport"; |
| | | $wb['Mailbox'] = "E-Mail Konto"; |
| | | $wb['Autoresponder'] = "Autoresponder"; |
| | | $wb['Mail Filter'] = "E-Mail Filter"; |
| | | $wb['Custom Rules'] = "eigene Regeln"; |
| | | $wb['Email filter'] = "E-Mail Filter"; |
| | | $wb['Email Whitelist'] = "E-Mail Whitelist"; |
| | | $wb['Whitelist'] = "Whitelist"; |
| | | $wb['Spamfilter blacklist'] = "Spamfilter Blacklist"; |
| | | $wb['Spamfilter Config'] = "Spamfilter Konfiguration"; |
| | | $wb['Server'] = "Server"; |
| | | $wb['Spamfilter policy'] = "Spamfilter Richtlinie"; |
| | | $wb['Policy'] = "Richtlinie"; |
| | | $wb['Quarantine'] = "Quarantäne"; |
| | | $wb['Tag-Level'] = "Tag Level"; |
| | | $wb['Other'] = "Andere"; |
| | | $wb['Spamfilter users'] = "Spamfilter Benutzer"; |
| | | $wb['Users'] = "Benutzer"; |
| | | $wb['Spamfilter Whitelist'] = "Spamfilter Whitelist"; |
| | | $wb['Email'] = "E-Mail"; |
| | | $wb['Email Mailbox'] = "E-Mail Konto"; |
| | | $wb['Email Accounts'] = "E-Mail Konten"; |
| | | $wb['User / Domain'] = "Benutzer / Domain"; |
| | | $wb['Server Settings'] = "Servereinstellungen"; |
| | | $wb['Fetchmail'] = "E-Mail Sammeldienst"; |
| | | $wb['Mailbox traffic'] = "E-Mail Konto Datenverkehr"; |
| | | $wb['Mailbox quota'] = "E-Mail Konto Belegung"; |
| | | $wb['Statistics'] = "Statistiken"; |
| | | $wb['Postfix Whitelist'] = "Postfix Whitelist"; |
| | | $wb['Postfix Blacklist'] = "Postfix Blacklist"; |
| | | $wb['Content Filter'] = "Inhaltsfilter"; |
| | | $wb['Global Filters'] = "Globale Filter"; |
| | | $wb['Domain Alias'] = "E-Mail Domain Alias"; |
| | | $wb['Relay Recipients'] = "Relay Empfänger"; |
| | | $wb['Email Alias'] = 'E-Mail Alias'; |
| | | $wb['Email Blacklist'] = 'E-Mail Blacklist'; |
| | | $wb['Blacklist'] = 'Blacklist'; |
| | | $wb['Mail Content Filter'] = 'E-Mail Inhaltsfilter'; |
| | | $wb['Filter'] = 'Filter'; |
| | | $wb['Mail Domain'] = 'E-Mail Domain'; |
| | | $wb['Domain'] = 'E-Mail Domain'; |
| | | $wb['Email Catchall'] = 'E-Mail Catchall'; |
| | | $wb['Email Forward'] = 'E-Mail Weiterleitung'; |
| | | $wb['Get Email'] = 'E-Mail Sammeldienst'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Routing'] = 'E-Mail Routing'; |
| | | $wb['Email transport'] = 'E-Mail Transport'; |
| | | $wb['Mailbox'] = 'E-Mail Konto'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Mail Filter'] = 'E-Mail Filter'; |
| | | $wb['Custom Rules'] = 'eigene Regeln'; |
| | | $wb['Email filter'] = 'E-Mail Filter'; |
| | | $wb['Email Whitelist'] = 'E-Mail Whitelist'; |
| | | $wb['Whitelist'] = 'Whitelist'; |
| | | $wb['Spamfilter blacklist'] = 'Spamfilter Blacklist'; |
| | | $wb['Spamfilter Config'] = 'Spamfilter Konfiguration'; |
| | | $wb['Server'] = 'Server'; |
| | | $wb['Spamfilter policy'] = 'Spamfilter Richtlinie'; |
| | | $wb['Policy'] = 'Richtlinie'; |
| | | $wb['Quarantine'] = 'Quarantäne'; |
| | | $wb['Tag-Level'] = 'Tag Level'; |
| | | $wb['Other'] = 'Andere'; |
| | | $wb['Spamfilter users'] = 'Spamfilter Benutzer'; |
| | | $wb['Users'] = 'Benutzer'; |
| | | $wb['Spamfilter Whitelist'] = 'Spamfilter Whitelist'; |
| | | $wb['Email'] = 'E-Mail'; |
| | | $wb['Email Mailbox'] = 'E-Mail Konto'; |
| | | $wb['Email Accounts'] = 'E-Mail Konten'; |
| | | $wb['User / Domain'] = 'Benutzer / Domain'; |
| | | $wb['Server Settings'] = 'Servereinstellungen'; |
| | | $wb['Fetchmail'] = 'E-Mail Sammeldienst'; |
| | | $wb['Mailbox traffic'] = 'E-Mail Konto Datenverkehr'; |
| | | $wb['Statistics'] = 'Statistiken'; |
| | | $wb['Postfix Whitelist'] = 'Postfix Whitelist'; |
| | | $wb['Postfix Blacklist'] = 'Postfix Blacklist'; |
| | | $wb['Content Filter'] = 'Inhaltsfilter'; |
| | | $wb['Global Filters'] = 'Globale Filter'; |
| | | $wb['Domain Alias'] = 'E-Mail Domain Alias'; |
| | | $wb['Relay Recipients'] = 'Relay Empfänger'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['email_txt'] = "E-Mail Adresse"; |
| | | $wb['destination_txt'] = "Ziel"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['email_error_isemail'] = "E-Mail Adresse ist ungültig"; |
| | | $wb['email_error_unique'] = "Doppelte E-Mail Adresse."; |
| | | $wb['no_domain_perm'] = "Sie haben keine Berechtigung für diese Domain."; |
| | | $wb['destination_error_isemail'] = "Zieladresse ist ungültig."; |
| | | $wb['limit_mailalias_txt'] = "Die maximale Anzahl an E-Mail Aliasen für Ihr Konto wurde erreicht."; |
| | | $wb['duplicate_mailbox_txt'] = "Es existiert bereits eineE-Mail Konto mit dieser E-Mail Adresse."; |
| | | $wb['domain_txt'] = "Domain"; |
| | | $wb['duplicate_email_alias_txt'] = "Dieser E-Mail Alias existiert bereits."; |
| | | $wb['source_txt'] = "Alias"; |
| | | $wb['email_txt'] = 'E-Mail Adresse'; |
| | | $wb['destination_txt'] = 'Ziel'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['email_error_isemail'] = 'E-Mail Adresse ist ungültig'; |
| | | $wb['email_error_unique'] = 'Doppelte E-Mail Adresse.'; |
| | | $wb['no_domain_perm'] = 'Sie haben keine Berechtigung für diese Domain.'; |
| | | $wb['destination_error_isemail'] = 'Zieladresse ist ungültig.'; |
| | | $wb['limit_mailalias_txt'] = 'Die maximale Anzahl an E-Mail Aliasen für Ihr Konto wurde erreicht.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Es existiert bereits eineE-Mail Konto mit dieser E-Mail Adresse.'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['duplicate_email_alias_txt'] = 'Dieser E-Mail Alias existiert bereits.'; |
| | | $wb['source_txt'] = 'Alias'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-Mail Adresse'; |
| | | $wb['add_new_record_txt'] = 'Neuen E-Mail Alias hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['source_txt'] = "Quelle"; |
| | | $wb['destination_txt'] = "Ziel"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['no_domain_perm'] = "Sie haben keine Rechte für diese Domain."; |
| | | $wb['limit_mailaliasdomain_txt'] = "Die maximale Anzahl an E-Mail Alias Domains für Ihr Konto wurde erreicht."; |
| | | $wb['source_destination_identical_txt'] = "Quell- und Ziel Domain sind identisch."; |
| | | $wb['source_error_empty'] = "Quell Domain ist leer."; |
| | | $wb['source_error_unique'] = "Quell Domain duplizieren."; |
| | | $wb['source_error_regex'] = "Ungültiger Quell Domainname."; |
| | | $wb['source_txt'] = 'Quelle'; |
| | | $wb['destination_txt'] = 'Ziel'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['no_domain_perm'] = 'Sie haben keine Rechte für diese Domain.'; |
| | | $wb['limit_mailaliasdomain_txt'] = 'Die maximale Anzahl an E-Mail Alias Domains für Ihr Konto wurde erreicht.'; |
| | | $wb['source_destination_identical_txt'] = 'Quell- und Ziel Domain sind identisch.'; |
| | | $wb['source_error_empty'] = 'Quell Domain ist leer.'; |
| | | $wb['source_error_unique'] = 'Quell Domain duplizieren.'; |
| | | $wb['source_error_regex'] = 'Ungültiger Quell Domainname.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "E-Mail Domain Alias"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['source_txt'] = "Quelle"; |
| | | $wb['destination_txt'] = "Ziel"; |
| | | $wb['add_new_record_txt'] = "Neuen E-Mail Domain Alias hinzufügen"; |
| | | $wb['list_head_txt'] = 'E-Mail Domain Alias'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['source_txt'] = 'Quelle'; |
| | | $wb['destination_txt'] = 'Ziel'; |
| | | $wb['add_new_record_txt'] = 'Neuen E-Mail Domain Alias hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['source_txt'] = "Blacklist E-Mail Adresse"; |
| | | $wb['recipient_txt'] = "Empfänger"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['source_error_notempty'] = "Adresse ist leer."; |
| | | $wb['type_txt'] = "Typ"; |
| | | $wb['limit_mailfilter_txt'] = "Die maximale Anzahl an E-Mail Filter für Ihr Konto wurde erreicht."; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['source_txt'] = 'Blacklist E-Mail Adresse'; |
| | | $wb['recipient_txt'] = 'Empfänger'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['source_error_notempty'] = 'Adresse ist leer.'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Die maximale Anzahl an E-Mail Filter für Ihr Konto wurde erreicht.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Neuen Blacklist Eintrag hinzufügen'; |
| | | $wb['access_txt'] = 'Zugriff'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['pattern_error_empty'] = 'Zeichenkette ist leer'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Aktion'; |
| | | $wb['add_new_record_txt'] = 'Neuen Inhaltsfilter hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['domain_txt'] = "Domain"; |
| | | $wb['type_txt'] = "Typ"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['domain_error_empty'] = "Domain ist leer"; |
| | | $wb['domain_error_unique'] = "Doppelte Domain."; |
| | | $wb['domain_error_regex'] = "Ungültiger Domainname."; |
| | | $wb['client_txt'] = "Kunde"; |
| | | $wb['limit_maildomain_txt'] = "Die maximale Anzahl an E-Mail Domains für Ihr Konto wurde erreicht."; |
| | | $wb['policy_txt'] = "Spamfilter"; |
| | | $wb['no_policy'] = "- nicht aktiviert -"; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['domain_error_empty'] = 'Domain ist leer'; |
| | | $wb['domain_error_unique'] = 'Doppelte Domain.'; |
| | | $wb['domain_error_regex'] = 'Ungültiger Domainname.'; |
| | | $wb['client_txt'] = 'Kunde'; |
| | | $wb['limit_maildomain_txt'] = 'Die maximale Anzahl an E-Mail Domains für Ihr Konto wurde erreicht.'; |
| | | $wb['policy_txt'] = 'Spamfilter'; |
| | | $wb['no_policy'] = '- nicht aktiviert -'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "E-Mail Domain"; |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['domain_txt'] = "Domain"; |
| | | $wb['add_new_record_txt'] = "Neue Domain hinzufügen"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['sys_groupid_txt'] = "Kunde"; |
| | | $wb['list_head_txt'] = 'E-Mail Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['add_new_record_txt'] = 'Neue Domain hinzufügen'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['sys_groupid_txt'] = 'Kunde'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['domain_txt'] = "Domain"; |
| | | $wb['destination_txt'] = "Ziel E-Mail"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['domain_error_unique'] = "Es besteht bereits ein Catchall Eintrag für diese Domain."; |
| | | $wb['no_domain_perm'] = "Sie haben keine Berechtigung für diese Domain."; |
| | | $wb['domain_error_regex'] = "Ungültiger Domainname oder ungültige Zeichen im Domainnamen."; |
| | | $wb['limit_mailcatchall_txt'] = "Die maximale Anzahl an Catchall Einträgen für Ihr Konto wurde erreicht."; |
| | | $wb['source_txt'] = "Quelle"; |
| | | $wb['destination_error_isemail'] = "Das Ziel ist keine gültige E-Mail Adresse."; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['destination_txt'] = 'Ziel E-Mail'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['domain_error_unique'] = 'Es besteht bereits ein Catchall Eintrag für diese Domain.'; |
| | | $wb['no_domain_perm'] = 'Sie haben keine Berechtigung für diese Domain.'; |
| | | $wb['domain_error_regex'] = 'Ungültiger Domainname oder ungültige Zeichen im Domainnamen.'; |
| | | $wb['limit_mailcatchall_txt'] = 'Die maximale Anzahl an Catchall Einträgen für Ihr Konto wurde erreicht.'; |
| | | $wb['source_txt'] = 'Quelle'; |
| | | $wb['destination_error_isemail'] = 'Das Ziel ist keine gültige E-Mail Adresse.'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['add_new_record_txt'] = 'Neuen Catchall hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "E-Mail Domain"; |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['domain_txt'] = "Domain"; |
| | | $wb['add_new_record_txt'] = "Neue Domain hinzufügen"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['list_head_txt'] = 'E-Mail Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['add_new_record_txt'] = 'Neue Domain hinzufügen'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['email_txt'] = "E-Mail Adresse"; |
| | | $wb['destination_txt'] = "Ziel E-Mail Adresse"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['limit_mailforward_txt'] = "Die maximale Anzahl an E-Mail Weiterleitungen für Ihr Konto wurde erreicht."; |
| | | $wb['duplicate_mailbox_txt'] = "Es existiert bereits ein E-Mail Konto mit dieser Adresse."; |
| | | $wb['domain_txt'] = "Domain"; |
| | | $wb['source_txt'] = "Quell E-Mail Adresse"; |
| | | $wb['email_txt'] = 'E-Mail Adresse'; |
| | | $wb['destination_txt'] = 'Ziel E-Mail Adresse'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['limit_mailforward_txt'] = 'Die maximale Anzahl an E-Mail Weiterleitungen für Ihr Konto wurde erreicht.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Es existiert bereits ein E-Mail Konto mit dieser Adresse.'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['source_txt'] = 'Quell E-Mail Adresse'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-Mail'; |
| | | $wb['add_new_record_txt'] = 'Neue E-Mail Weiterleitung hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['type_txt'] = "Typ"; |
| | | $wb['source_server_txt'] = "POP3/IMAP Server"; |
| | | $wb['source_username_txt'] = "Benutzername"; |
| | | $wb['source_password_txt'] = "Passwort"; |
| | | $wb['source_delete_txt'] = "E-Mails nach Empfang löschen"; |
| | | $wb['destination_txt'] = "Ziel"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['limit_fetchmail_txt'] = "Die maximale Anzahl an Sammelkonto Einträgen für Ihr Konto wurde erreicht."; |
| | | $wb['source_server_error_isempty'] = "Server ist leer."; |
| | | $wb['source_username_error_isempty'] = "Benutzername ist leer."; |
| | | $wb['source_password_error_isempty'] = "Passwort ist leer."; |
| | | $wb['destination_error_isemail'] = "Kein Ziel gewählt."; |
| | | $wb['source_server_error_regex'] = "POP3/IMAP Server ist kein gültiger Domainname."; |
| | | $wb['source_read_all_txt'] = "Alle E-Mails abrufen (inkl. bereits gelesene E-Mails)"; |
| | | $wb['error_delete_read_all_combination'] = "Unzulässige Kombination von Optionen. Sie können "; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['source_server_txt'] = 'POP3/IMAP Server'; |
| | | $wb['source_username_txt'] = 'Benutzername'; |
| | | $wb['source_password_txt'] = 'Passwort'; |
| | | $wb['source_delete_txt'] = 'E-Mails nach Empfang löschen'; |
| | | $wb['destination_txt'] = 'Ziel'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['limit_fetchmail_txt'] = 'Die maximale Anzahl an Sammelkonto Einträgen für Ihr Konto wurde erreicht.'; |
| | | $wb['source_server_error_isempty'] = 'Server ist leer.'; |
| | | $wb['source_username_error_isempty'] = 'Benutzername ist leer.'; |
| | | $wb['source_password_error_isempty'] = 'Passwort ist leer.'; |
| | | $wb['destination_error_isemail'] = 'Kein Ziel gewählt.'; |
| | | $wb['source_server_error_regex'] = 'POP3/IMAP Server ist kein gültiger Domainname.'; |
| | | $wb['source_read_all_txt'] = 'Alle E-Mails abrufen (inkl. bereits gelesene E-Mails)'; |
| | | $wb['error_delete_read_all_combination'] = 'Unzulässige Kombination von Optionen. Sie können '; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "E-Mails von externem POP3 / IMAP Server abholen"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['source_server_txt'] = "Externer Server"; |
| | | $wb['source_username_txt'] = "Benutzername"; |
| | | $wb['destination_txt'] = "Ziel"; |
| | | $wb['add_new_record_txt'] = "Neues Konto hinzufügen"; |
| | | $wb['list_head_txt'] = 'E-Mails von externem POP3 / IMAP Server abholen'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['source_server_txt'] = 'Externer Server'; |
| | | $wb['source_username_txt'] = 'Benutzername'; |
| | | $wb['destination_txt'] = 'Ziel'; |
| | | $wb['add_new_record_txt'] = 'Neues Konto hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['listname_txt'] = 'Listenname'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['source_txt'] = "Relay Empfänger"; |
| | | $wb['recipient_txt'] = "Empfänger"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['source_error_notempty'] = "Adresse ist leer."; |
| | | $wb['type_txt'] = "Typ"; |
| | | $wb['limit_mailfilter_txt'] = "Die maximale Anzahl an E-Mail Filtern für Ihr Konto wurde erreicht."; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['source_txt'] = 'Relay Empfänger'; |
| | | $wb['recipient_txt'] = 'Empfänger'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['source_error_notempty'] = 'Adresse ist leer.'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Die maximale Anzahl an E-Mail Filtern für Ihr Konto wurde erreicht.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Neuen Relay Empfänger hinzufügen'; |
| | | $wb['access_txt'] = 'Zugriff'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['email_txt'] = "E-Mail"; |
| | | $wb['spam_rewrite_score_int_txt'] = "Rewrite Bewertung"; |
| | | $wb['spam_redirect_score_int_txt'] = "Redirect Bewertung"; |
| | | $wb['spam_delete_score_int_txt'] = "Bewertung löschen"; |
| | | $wb['spam_rewrite_subject_txt'] = "Rewrite Betreff"; |
| | | $wb['spam_redirect_maildir_txt'] = "Redirect E-Mail Konto"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['spam_rewrite_txt'] = "Schreibe E-Mail Betreff über dieser Bewertung um."; |
| | | $wb['spam_redirect_txt'] = "Leite E-Mails über dieser Bewertung zur ausgewähltem E-Mail Konto weiter."; |
| | | $wb['spam_delete_txt'] = "Lösche E-Mails über dieser Bewertung."; |
| | | $wb['disable_txt'] = "Tipp: Um eine Filteroption zu deaktivieren, müssen Sie die Bewertung auf 0.00 setzen."; |
| | | $wb['email_error_isemail'] = "E-Mail Adresse ist ungültig."; |
| | | $wb['email_error_unique'] = "Es existiert bereits ein Spamfilter Eintrag für diese E-Mail Adresse."; |
| | | $wb['spam_redirect_maildir_purge_txt'] = "Lösche E-Mail Verzeichnis nach"; |
| | | $wb['days_txt'] = "Tagen."; |
| | | $wb['email_txt'] = 'E-Mail'; |
| | | $wb['spam_rewrite_score_int_txt'] = 'Rewrite Bewertung'; |
| | | $wb['spam_redirect_score_int_txt'] = 'Redirect Bewertung'; |
| | | $wb['spam_delete_score_int_txt'] = 'Bewertung löschen'; |
| | | $wb['spam_rewrite_subject_txt'] = 'Rewrite Betreff'; |
| | | $wb['spam_redirect_maildir_txt'] = 'Redirect E-Mail Konto'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['spam_rewrite_txt'] = 'Schreibe E-Mail Betreff über dieser Bewertung um.'; |
| | | $wb['spam_redirect_txt'] = 'Leite E-Mails über dieser Bewertung zur ausgewähltem E-Mail Konto weiter.'; |
| | | $wb['spam_delete_txt'] = 'Lösche E-Mails über dieser Bewertung.'; |
| | | $wb['disable_txt'] = 'Tipp: Um eine Filteroption zu deaktivieren, müssen Sie die Bewertung auf 0.00 setzen.'; |
| | | $wb['email_error_isemail'] = 'E-Mail Adresse ist ungültig.'; |
| | | $wb['email_error_unique'] = 'Es existiert bereits ein Spamfilter Eintrag für diese E-Mail Adresse.'; |
| | | $wb['spam_redirect_maildir_purge_txt'] = 'Lösche E-Mail Verzeichnis nach'; |
| | | $wb['days_txt'] = 'Tagen.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-Mail'; |
| | | $wb['add_new_record_txt'] = 'Neuen Spamfilter Eintrag hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['domain_txt'] = "Domain"; |
| | | $wb['destination_txt'] = "Ziel"; |
| | | $wb['type_txt'] = "Typ"; |
| | | $wb['mx_txt'] = "Kein MX Lookup"; |
| | | $wb['sort_order_txt'] = "Sortiert nach"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['limit_mailrouting_txt'] = "Die maximale Anzahl an E-Mail Routen für Ihr Konto wurde erreicht."; |
| | | $wb['transport_txt'] = "Transport"; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['destination_txt'] = 'Ziel'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['mx_txt'] = 'Kein MX Lookup'; |
| | | $wb['sort_order_txt'] = 'Sortiert nach'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['limit_mailrouting_txt'] = 'Die maximale Anzahl an E-Mail Routen für Ihr Konto wurde erreicht.'; |
| | | $wb['transport_txt'] = 'Transport'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "E-Mail Routing"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['domain_txt'] = "Domain"; |
| | | $wb['transport_txt'] = "Transport"; |
| | | $wb['sort_order_txt'] = "Sortiert nach"; |
| | | $wb['add_new_record_txt'] = "Neuen Transport hinzufügen"; |
| | | $wb['list_head_txt'] = 'E-Mail Routing'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['transport_txt'] = 'Transport'; |
| | | $wb['sort_order_txt'] = 'Sortiert nach'; |
| | | $wb['add_new_record_txt'] = 'Neuen Transport hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['custom_mailfilter_txt'] = "Benutzerdefinierte E-Mailfilter Regel"; |
| | | $wb['email_txt'] = "E-Mail"; |
| | | $wb['cryptpwd_txt'] = "Passwort"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['email_error_isemail'] = "E-Mail Adresse ist ungültig."; |
| | | $wb['email_error_unique'] = "Doppelte E-Mail Adresse."; |
| | | $wb['autoresponder_subject_txt'] = "E-Mail Betreff"; |
| | | $wb['autoresponder_subject'] = "Abwesenheitsnotiz"; |
| | | $wb['autoresponder_text_txt'] = "Text"; |
| | | $wb['autoresponder_txt'] = "Autoresponder"; |
| | | $wb['no_domain_perm'] = "Sie haben keine Berechtigung für diese Domain."; |
| | | $wb['error_no_pwd'] = "Passwort ist leer."; |
| | | $wb['quota_error_isint'] = "E-Mailkontogröße muss eine Zahl sein."; |
| | | $wb['quota_txt'] = "Beschränkung"; |
| | | $wb['server_id_txt'] = "Server ID"; |
| | | $wb['password_txt'] = "Passwort"; |
| | | $wb['maildir_txt'] = "E-Mail Verzeichnis"; |
| | | $wb['postfix_txt'] = "Aktiviere Empfang"; |
| | | $wb['access_txt'] = "Aktiviere Zugriff"; |
| | | $wb['policy_txt'] = "Spamfilter"; |
| | | $wb['no_policy'] = "- nicht aktiviert -"; |
| | | $wb['limit_mailbox_txt'] = "Die maximale Anzahl an E-Mailkonten für Ihr Konto wurde erreicht."; |
| | | $wb['limit_mailquota_txt'] = "Der maximale Speicherplatz für Ihr E-Mail Konto wurde erreicht. Der maximal verfügbare Speicher in MB ist"; |
| | | $wb['disableimap_txt'] = "IMAP deaktivieren"; |
| | | $wb['disablepop3_txt'] = "POP3 deaktivieren"; |
| | | $wb['password_strength_txt'] = "Passwortkomplexität"; |
| | | $wb['duplicate_alias_or_forward_txt'] = "Es existiert bereits ein Alias oder eine Weiterleitung mit dieser E-Mail Adresse."; |
| | | $wb['quota_error_value'] = "Ungültige Beschränkungseingabe. Erlaubte Größen sind: 0 für unlimitiert oder Nummern > 1"; |
| | | $wb['autoresponder_start_date_txt'] = "Startet am"; |
| | | $wb['autoresponder_start_date_ispast'] = "Startdatum kann nicht in der Vergangenheit liegen."; |
| | | $wb['autoresponder_end_date_txt'] = "Endet am"; |
| | | $wb['autoresponder_end_date_isgreater'] = "Enddatum muss angegeben werden und muss später als das Startdatum sein."; |
| | | $wb['move_junk_txt'] = "Spam E-Mails in das Junk Verzeichnis verschieben"; |
| | | $wb['name_txt'] = "Name"; |
| | | $wb['name_optional_txt'] = "(optional)"; |
| | | $wb['autoresponder_active'] = "Autoresponder aktivieren"; |
| | | $wb['cc_txt'] = "Kopie senden an"; |
| | | $wb['cc_error_isemail'] = "Das -Kopie senden an- Feld enthält keine gültige E-Mail Adresse"; |
| | | $wb['login_error_unique'] = "Benutzername wird bereits verwendet."; |
| | | $wb['login_error_regex'] = "Zulässige Zeichen sind A-Z, a-z, 0-9, ., _ und -."; |
| | | $wb['login_txt'] = "Anmelden"; |
| | | $wb['error_login_email_txt'] = "Dieser Benutzername ist nicht zulässig. Bitte verwenden Sie einen anderen Benutzernamen oder die E-Mail Adresse als Benutzername."; |
| | | $wb['domain_txt'] = "Domain"; |
| | | $wb['now_txt'] = "Jetzt"; |
| | | $wb['generate_password_txt'] = "Passwort erzeugen"; |
| | | $wb['repeat_password_txt'] = "Passwort wiederholen"; |
| | | $wb['password_mismatch_txt'] = "Die Passwörter stimmen nicht überein."; |
| | | $wb['password_match_txt'] = "Die Passwörter stimmen überein."; |
| | | $wb['custom_mailfilter_txt'] = 'Benutzerdefinierte E-Mailfilter Regel'; |
| | | $wb['email_txt'] = 'E-Mail'; |
| | | $wb['cryptpwd_txt'] = 'Passwort'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['email_error_isemail'] = 'E-Mail Adresse ist ungültig.'; |
| | | $wb['email_error_unique'] = 'Doppelte E-Mail Adresse.'; |
| | | $wb['autoresponder_subject_txt'] = 'E-Mail Betreff'; |
| | | $wb['autoresponder_subject'] = 'Abwesenheitsnotiz'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['no_domain_perm'] = 'Sie haben keine Berechtigung für diese Domain.'; |
| | | $wb['error_no_pwd'] = 'Passwort ist leer.'; |
| | | $wb['quota_error_isint'] = 'E-Mailkontogröße muss eine Zahl sein.'; |
| | | $wb['quota_txt'] = 'Beschränkung'; |
| | | $wb['server_id_txt'] = 'Server ID'; |
| | | $wb['password_txt'] = 'Passwort'; |
| | | $wb['maildir_txt'] = 'E-Mail Verzeichnis'; |
| | | $wb['postfix_txt'] = 'Aktiviere Empfang'; |
| | | $wb['access_txt'] = 'Aktiviere Zugriff'; |
| | | $wb['policy_txt'] = 'Spamfilter'; |
| | | $wb['no_policy'] = '- nicht aktiviert -'; |
| | | $wb['limit_mailbox_txt'] = 'Die maximale Anzahl an E-Mailkonten für Ihr Konto wurde erreicht.'; |
| | | $wb['limit_mailquota_txt'] = 'Der maximale Speicherplatz für Ihr E-Mail Konto wurde erreicht. Der maximal verfügbare Speicher in MB ist'; |
| | | $wb['disableimap_txt'] = 'IMAP deaktivieren'; |
| | | $wb['disablepop3_txt'] = 'POP3 deaktivieren'; |
| | | $wb['password_strength_txt'] = 'Passwortkomplexität'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'Es existiert bereits ein Alias oder eine Weiterleitung mit dieser E-Mail Adresse.'; |
| | | $wb['quota_error_value'] = 'Ungültige Beschränkungseingabe. Erlaubte Größen sind: 0 für unlimitiert oder Nummern > 1'; |
| | | $wb['autoresponder_start_date_txt'] = 'Startet am'; |
| | | $wb['autoresponder_start_date_ispast'] = 'Startdatum kann nicht in der Vergangenheit liegen.'; |
| | | $wb['autoresponder_end_date_txt'] = 'Endet am'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'Enddatum muss angegeben werden und muss später als das Startdatum sein.'; |
| | | $wb['move_junk_txt'] = 'Spam E-Mails in das Junk Verzeichnis verschieben'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['name_optional_txt'] = '(optional)'; |
| | | $wb['autoresponder_active'] = 'Autoresponder aktivieren'; |
| | | $wb['cc_txt'] = 'Kopie senden an'; |
| | | $wb['cc_error_isemail'] = 'Das -Kopie senden an- Feld enthält keine gültige E-Mail Adresse'; |
| | | $wb['login_error_unique'] = 'Benutzername wird bereits verwendet.'; |
| | | $wb['login_error_regex'] = 'Zulässige Zeichen sind A-Z, a-z, 0-9, ., _ und -.'; |
| | | $wb['login_txt'] = 'Anmelden'; |
| | | $wb['error_login_email_txt'] = 'Dieser Benutzername ist nicht zulässig. Bitte verwenden Sie einen anderen Benutzernamen oder die E-Mail Adresse als Benutzername.'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['now_txt'] = 'Jetzt'; |
| | | $wb['generate_password_txt'] = 'Passwort erzeugen'; |
| | | $wb['repeat_password_txt'] = 'Passwort wiederholen'; |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['rulename_txt'] = "Name"; |
| | | $wb['action_txt'] = "Aktion"; |
| | | $wb['target_txt'] = "Verzeichnis"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['rulename_error_empty'] = "Name ist leer."; |
| | | $wb['searchterm_is_empty'] = "Suchbegriff ist leer."; |
| | | $wb['source_txt'] = "Quelle"; |
| | | $wb['target_error_regex'] = "Das Ziel beinhaltet wahrscheinlich diese Zeichen: a-z, 0-9, -, ., _, und {raum}"; |
| | | $wb['limit_mailfilter_txt'] = "Die maximale Anzahl an E-Mail Filtern für Ihr Konto wurde erreicht."; |
| | | $wb['subject_txt'] = "Betreff"; |
| | | $wb['from_txt'] = "Von"; |
| | | $wb['to_txt'] = "An"; |
| | | $wb['contains_txt'] = "Enthält"; |
| | | $wb['is_txt'] = "Ist"; |
| | | $wb['begins_with_txt'] = "Beginnt mit"; |
| | | $wb['ends_with_txt'] = "Endet mit"; |
| | | $wb['move_to_txt'] = "Verschieben nach"; |
| | | $wb['delete_txt'] = "Löschen"; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Aktion'; |
| | | $wb['target_txt'] = 'Verzeichnis'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['rulename_error_empty'] = 'Name ist leer.'; |
| | | $wb['searchterm_is_empty'] = 'Suchbegriff ist leer.'; |
| | | $wb['source_txt'] = 'Quelle'; |
| | | $wb['target_error_regex'] = 'Das Ziel beinhaltet wahrscheinlich diese Zeichen: a-z, 0-9, -, ., _, und {raum}'; |
| | | $wb['limit_mailfilter_txt'] = 'Die maximale Anzahl an E-Mail Filtern für Ihr Konto wurde erreicht.'; |
| | | $wb['subject_txt'] = 'Betreff'; |
| | | $wb['from_txt'] = 'Von'; |
| | | $wb['to_txt'] = 'An'; |
| | | $wb['contains_txt'] = 'Enthält'; |
| | | $wb['is_txt'] = 'Ist'; |
| | | $wb['begins_with_txt'] = 'Beginnt mit'; |
| | | $wb['ends_with_txt'] = 'Endet mit'; |
| | | $wb['move_to_txt'] = 'Verschieben nach'; |
| | | $wb['delete_txt'] = 'Löschen'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'von'; |
| | | $wb['delete_confirmation'] = 'Wollen Sie den Filter wirklich löschen?'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "E-Mail Konto"; |
| | | $wb['email_txt'] = "E-Mail Adresse"; |
| | | $wb['autoresponder_txt'] = "Autoresponder"; |
| | | $wb['add_new_record_txt'] = "Neues E-Mail Konto hinzufügen"; |
| | | $wb['name_txt'] = "Realname"; |
| | | $wb['login_txt'] = "Anmelden"; |
| | | $wb['list_head_txt'] = 'E-Mail Konto'; |
| | | $wb['email_txt'] = 'E-Mail Adresse'; |
| | | $wb['autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['add_new_record_txt'] = 'Neues E-Mail Konto hinzufügen'; |
| | | $wb['name_txt'] = 'Realname'; |
| | | $wb['login_txt'] = 'Anmelden'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "E-Mail Datenverkehr"; |
| | | $wb['email_txt'] = "E-Mail Adresse"; |
| | | $wb['this_month_txt'] = "Aktuelles Monat"; |
| | | $wb['last_month_txt'] = "Vergangenes Monat"; |
| | | $wb['this_year_txt'] = "Aktuelles Jahr"; |
| | | $wb['last_year_txt'] = "Vergangenes Jahr"; |
| | | $wb['list_head_txt'] = 'E-Mail Datenverkehr'; |
| | | $wb['email_txt'] = 'E-Mail Adresse'; |
| | | $wb['this_month_txt'] = 'Aktuelles Monat'; |
| | | $wb['last_month_txt'] = 'Vergangenes Monat'; |
| | | $wb['this_year_txt'] = 'Aktuelles Jahr'; |
| | | $wb['last_year_txt'] = 'Vergangenes Jahr'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['source_txt'] = "Whitelist E-Mail Adresse"; |
| | | $wb['recipient_txt'] = "Empfänger"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['source_error_notempty'] = "E-Mail Adresse ist leer."; |
| | | $wb['type_txt'] = "Typ"; |
| | | $wb['limit_mailfilter_txt'] = "Die maximale Anzahl an E-Mail Filtern für Ihr Konto wurde erreicht."; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['source_txt'] = 'Whitelist E-Mail Adresse'; |
| | | $wb['recipient_txt'] = 'Empfänger'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['source_error_notempty'] = 'E-Mail Adresse ist leer.'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Die maximale Anzahl an E-Mail Filtern für Ihr Konto wurde erreicht.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Whitelist Eintrag hinzufügen'; |
| | | $wb['access_txt'] = 'Zugriff'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Die maximale Anzahl an White- oder Blacklist Einträgen für ihr Konto wurde erreicht.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Blacklisted E-Mail Adressen'; |
| | | $wb['add_new_record_txt'] = 'Blacklist Eintrag hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['getmail_config_dir_txt'] = "Getmail Konfigurationspfad"; |
| | | $wb['ip_address_txt'] = "IP Adresse"; |
| | | $wb['netmask_txt'] = "Netzmaske"; |
| | | $wb['gateway_txt'] = "Gateway"; |
| | | $wb['hostname_txt'] = "Hostname"; |
| | | $wb['nameservers_txt'] = "Nameserver"; |
| | | $wb['module_txt'] = "Server Module"; |
| | | $wb['maildir_path_txt'] = "E-Mail Verzeichnis Pfad"; |
| | | $wb['homedir_path_txt'] = "Home Verzeichnis Pfad"; |
| | | $wb['mailuser_uid_txt'] = "E-Mail Benutzer UID"; |
| | | $wb['mailuser_gid_txt'] = "E-Mail Benutzer GID"; |
| | | $wb['mailuser_name_txt'] = "E-Mail Benutzer Name"; |
| | | $wb['mailuser_group_txt'] = "E-Mail Benutzer Gruppe"; |
| | | $wb['relayhost_txt'] = "Relayhost"; |
| | | $wb['relayhost_user_txt'] = "Relayhost Benutzer"; |
| | | $wb['relayhost_password_txt'] = "Relayhost Passwort"; |
| | | $wb['mailbox_size_limit_txt'] = "E-Mail Kontogrössenlimit"; |
| | | $wb['message_size_limit_txt'] = "Nachrichtengrössenlimit"; |
| | | $wb['getmail_config_dir_txt'] = 'Getmail Konfigurationspfad'; |
| | | $wb['ip_address_txt'] = 'IP Adresse'; |
| | | $wb['netmask_txt'] = 'Netzmaske'; |
| | | $wb['gateway_txt'] = 'Gateway'; |
| | | $wb['hostname_txt'] = 'Hostname'; |
| | | $wb['nameservers_txt'] = 'Nameserver'; |
| | | $wb['module_txt'] = 'Server Module'; |
| | | $wb['maildir_path_txt'] = 'E-Mail Verzeichnis Pfad'; |
| | | $wb['homedir_path_txt'] = 'Home Verzeichnis Pfad'; |
| | | $wb['mailuser_uid_txt'] = 'E-Mail Benutzer UID'; |
| | | $wb['mailuser_gid_txt'] = 'E-Mail Benutzer GID'; |
| | | $wb['mailuser_name_txt'] = 'E-Mail Benutzer Name'; |
| | | $wb['mailuser_group_txt'] = 'E-Mail Benutzer Gruppe'; |
| | | $wb['relayhost_txt'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Relayhost Benutzer'; |
| | | $wb['relayhost_password_txt'] = 'Relayhost Passwort'; |
| | | $wb['mailbox_size_limit_txt'] = 'E-Mail Kontogrössenlimit'; |
| | | $wb['message_size_limit_txt'] = 'Nachrichtengrössenlimit'; |
| | | ?> |
| | | |
| | |
| | | $wb['server_name_txt'] = 'Server'; |
| | | $wb['server_id_txt'] = 'Server ID'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['policy_name_txt'] = "Richtlinienname"; |
| | | $wb['virus_lover_txt'] = "Virus Liebhaber"; |
| | | $wb['spam_lover_txt'] = "SPAM Liebhaber"; |
| | | $wb['banned_files_lover_txt'] = "Banned Files Liebhaber"; |
| | | $wb['bad_header_lover_txt'] = "Bad Header Liebhaber"; |
| | | $wb['bypass_virus_checks_txt'] = "Umgehe Virus Überprüfungen"; |
| | | $wb['bypass_banned_checks_txt'] = "Umgehe Banned Überprüfungen"; |
| | | $wb['bypass_header_checks_txt'] = "Umgehe Header Überprüfungen"; |
| | | $wb['virus_quarantine_to_txt'] = "Weiterleiten von Viren zur E-Mail Adresse"; |
| | | $wb['spam_quarantine_to_txt'] = "Weiterleiten von Spam zur E-Mail Adresse"; |
| | | $wb['banned_quarantine_to_txt'] = "Weiterleiten von Banned zur E-Mail Adresse"; |
| | | $wb['bad_header_quarantine_to_txt'] = "Weiterleiten von Bad Header zur E-Mail Adresse"; |
| | | $wb['clean_quarantine_to_txt'] = "Weiterleiten von sauberen E-Mails zur E-Mail Adresse"; |
| | | $wb['other_quarantine_to_txt'] = "Weiterleiten von anderen E-Mails zur E-Mail Adresse"; |
| | | $wb['spam_tag_level_txt'] = "SPAM Markierungslevel"; |
| | | $wb['spam_tag2_level_txt'] = "SPAM Markierungslevel 2"; |
| | | $wb['spam_kill_level_txt'] = "SPAM Markierungslevel Kill"; |
| | | $wb['spam_dsn_cutoff_level_txt'] = "SPAM Markierungslevel DNS Cutoff"; |
| | | $wb['spam_quarantine_cutoff_level_txt'] = "SPAM Markierungslevel Quarantine Cutoff"; |
| | | $wb['spam_modifies_subj_txt'] = "SPAM ändert Betreff"; |
| | | $wb['spam_subject_tag_txt'] = "SPAM Betreff Markierung"; |
| | | $wb['spam_subject_tag2_txt'] = "SPAM Betreff Markierung 2"; |
| | | $wb['addr_extension_virus_txt'] = "Adresserweiterung Virus"; |
| | | $wb['addr_extension_spam_txt'] = "Adresserweiterung SPAM"; |
| | | $wb['addr_extension_banned_txt'] = "Adresserweiterung Banned"; |
| | | $wb['addr_extension_bad_header_txt'] = "Adresserweiterung Bad Header"; |
| | | $wb['warnvirusrecip_txt'] = "Warne Virus Empfänger"; |
| | | $wb['warnbannedrecip_txt'] = "Warne Banned Empfänger"; |
| | | $wb['warnbadhrecip_txt'] = "Warne Bad Header Empfänger"; |
| | | $wb['newvirus_admin_txt'] = "Newvirus Administrator"; |
| | | $wb['virus_admin_txt'] = "Virus Administrator"; |
| | | $wb['banned_admin_txt'] = "Banned Administrator"; |
| | | $wb['bad_header_admin_txt'] = "Bad Header Administrator"; |
| | | $wb['spam_admin_txt'] = "SPAM Administrator"; |
| | | $wb['message_size_limit_txt'] = "Nachrichtengrößen Limit"; |
| | | $wb['banned_rulenames_txt'] = "Banned Richtliniennamen"; |
| | | $wb['policy_name_txt'] = 'Richtlinienname'; |
| | | $wb['virus_lover_txt'] = 'Virus Liebhaber'; |
| | | $wb['spam_lover_txt'] = 'SPAM Liebhaber'; |
| | | $wb['banned_files_lover_txt'] = 'Banned Files Liebhaber'; |
| | | $wb['bad_header_lover_txt'] = 'Bad Header Liebhaber'; |
| | | $wb['bypass_virus_checks_txt'] = 'Umgehe Virus Überprüfungen'; |
| | | $wb['bypass_banned_checks_txt'] = 'Umgehe Banned Überprüfungen'; |
| | | $wb['bypass_header_checks_txt'] = 'Umgehe Header Überprüfungen'; |
| | | $wb['virus_quarantine_to_txt'] = 'Weiterleiten von Viren zur E-Mail Adresse'; |
| | | $wb['spam_quarantine_to_txt'] = 'Weiterleiten von Spam zur E-Mail Adresse'; |
| | | $wb['banned_quarantine_to_txt'] = 'Weiterleiten von Banned zur E-Mail Adresse'; |
| | | $wb['bad_header_quarantine_to_txt'] = 'Weiterleiten von Bad Header zur E-Mail Adresse'; |
| | | $wb['clean_quarantine_to_txt'] = 'Weiterleiten von sauberen E-Mails zur E-Mail Adresse'; |
| | | $wb['other_quarantine_to_txt'] = 'Weiterleiten von anderen E-Mails zur E-Mail Adresse'; |
| | | $wb['spam_tag_level_txt'] = 'SPAM Markierungslevel'; |
| | | $wb['spam_tag2_level_txt'] = 'SPAM Markierungslevel 2'; |
| | | $wb['spam_kill_level_txt'] = 'SPAM Markierungslevel Kill'; |
| | | $wb['spam_dsn_cutoff_level_txt'] = 'SPAM Markierungslevel DNS Cutoff'; |
| | | $wb['spam_quarantine_cutoff_level_txt'] = 'SPAM Markierungslevel Quarantine Cutoff'; |
| | | $wb['spam_modifies_subj_txt'] = 'SPAM ändert Betreff'; |
| | | $wb['spam_subject_tag_txt'] = 'SPAM Betreff Markierung'; |
| | | $wb['spam_subject_tag2_txt'] = 'SPAM Betreff Markierung 2'; |
| | | $wb['addr_extension_virus_txt'] = 'Adresserweiterung Virus'; |
| | | $wb['addr_extension_spam_txt'] = 'Adresserweiterung SPAM'; |
| | | $wb['addr_extension_banned_txt'] = 'Adresserweiterung Banned'; |
| | | $wb['addr_extension_bad_header_txt'] = 'Adresserweiterung Bad Header'; |
| | | $wb['warnvirusrecip_txt'] = 'Warne Virus Empfänger'; |
| | | $wb['warnbannedrecip_txt'] = 'Warne Banned Empfänger'; |
| | | $wb['warnbadhrecip_txt'] = 'Warne Bad Header Empfänger'; |
| | | $wb['newvirus_admin_txt'] = 'Newvirus Administrator'; |
| | | $wb['virus_admin_txt'] = 'Virus Administrator'; |
| | | $wb['banned_admin_txt'] = 'Banned Administrator'; |
| | | $wb['bad_header_admin_txt'] = 'Bad Header Administrator'; |
| | | $wb['spam_admin_txt'] = 'SPAM Administrator'; |
| | | $wb['message_size_limit_txt'] = 'Nachrichtengrößen Limit'; |
| | | $wb['banned_rulenames_txt'] = 'Banned Richtliniennamen'; |
| | | ?> |
| | | |
| | |
| | | $wb['bad_header_lover_txt'] = 'Ungültige Header Liebhaber'; |
| | | $wb['add_new_record_txt'] = 'Richtlinien Eintrag hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['priority_txt'] = "Priorität"; |
| | | $wb['policy_id_txt'] = "Richtlinie"; |
| | | $wb['email_txt'] = "E-Mail (Zeichenkette)"; |
| | | $wb['fullname_txt'] = "Name"; |
| | | $wb['local_txt'] = "Lokal"; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['priority_txt'] = 'Priorität'; |
| | | $wb['policy_id_txt'] = 'Richtlinie'; |
| | | $wb['email_txt'] = 'E-Mail (Zeichenkette)'; |
| | | $wb['fullname_txt'] = 'Name'; |
| | | $wb['local_txt'] = 'Lokal'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-Mail Adresse'; |
| | | $wb['add_new_record_txt'] = 'Spamfilterbenutzer hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['server_id_txt'] = "Server"; |
| | | $wb['wb_txt'] = "wb"; |
| | | $wb['rid_txt'] = "Benutzer"; |
| | | $wb['email_txt'] = "E-Mail"; |
| | | $wb['priority_txt'] = "Priorität"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['limit_spamfilter_wblist_txt'] = "Die maximale Anzahl an White- oder Blacklist Einträgen für Ihr Konto wurde erreicht."; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['wb_txt'] = 'wb'; |
| | | $wb['rid_txt'] = 'Benutzer'; |
| | | $wb['email_txt'] = 'E-Mail'; |
| | | $wb['priority_txt'] = 'Priorität'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Die maximale Anzahl an White- oder Blacklist Einträgen für Ihr Konto wurde erreicht.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Whitelisted E-Mail Adresse'; |
| | | $wb['add_new_record_txt'] = 'Whitelist Eintrag hinzufügen'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "E-Mail Kontobeschränkung"; |
| | | $wb['quota_txt'] = "Verfügbarer Speicherplatz"; |
| | | $wb['name_txt'] = "Name"; |
| | | $wb['email_txt'] = "E-Mail Adresse"; |
| | | $wb['used_txt'] = "Verbrauchter Speicherplatz"; |
| | | $wb['list_head_txt'] = 'E-Mail Kontobeschränkung'; |
| | | $wb['quota_txt'] = 'Verfügbarer Speicherplatz'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['email_txt'] = 'E-Mail Adresse'; |
| | | $wb['used_txt'] = 'Verbrauchter Speicherplatz'; |
| | | ?> |
| | | |
| | |
| | | <div class="panel panel_list_mail_alias"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_alias_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_aliasdomain"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_aliasdomain_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_blacklist"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_blacklist_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_content_filter"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_content_filter_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_domain_catchall"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_domain_catchall_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_domain"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_domain_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_forward"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_forward_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_get"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_get_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_mailinglist"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_mailinglist_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_relay_recipient"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_relay_recipient_edit.php');"> |
| | |
| | | <div class="panel panel_list_mail_transport"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_transport_edit.php');"> |
| | |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><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'}');"> |
| | |
| | | <div class="panel panel_list_mail_user"> |
| | | |
| | | <div class="pnl_toolsarea"> |
| | | <tmpl_if name='datalog_changes_count' op='>' value='0'> |
| | | <div> |
| | | <div class="systemmonitor-state state-info"> |
| | | <div class="status"></div> |
| | | <div class="statusMsg"> |
| | | {tmpl_var name="datalog_changes_txt"} |
| | | <ul> |
| | | <tmpl_loop name="datalog_changes"> |
| | | <li><strong>{tmpl_var name="text"}:</strong> {tmpl_var name="count"}</li> |
| | | </tmpl_loop> |
| | | </ul> |
| | | {tmpl_var name="datalog_changes_end_txt"} |
| | | </div> |
| | | </div><br /> |
| | | </div> |
| | | </tmpl_if> |
| | | <fieldset><legend>{tmpl_var name="toolsarea_head_txt"}</legend> |
| | | <div class="buttons"> |
| | | <button class="button iconstxt icoAdd" type="button" onclick="loadContent('mail/mail_user_edit.php');"> |
| | |
| | | </tr> |
| | | <tr class="filter"> |
| | | <td class="tbl_col_email"><input type="text" name="search_email" value="{tmpl_var name='search_email'}" /></td> |
| | | <td class="tbl_col_name"><input type="text" name="search_name" value="{tmpl_var name='search_name'}" /></td> |
| | | <tmpl_if name="enable_custom_login"><td class="tbl_col_login"><input type="text" name="search_login" value="{tmpl_var name='search_login'}" /></td></tmpl_if> |
| | | <td class="tbl_col_name"><input type="text" name="search_name" value="{tmpl_var name='search_name'}" /></td> |
| | | <td class="tbl_col_autoresponder"><select name="search_autoresponder">{tmpl_var name='search_autoresponder'}</select></td> |
| | | <td class="tbl_col_buttons"> |
| | | <button type="button" class="button icons16 icoFilter" name="Filter" id="Filter" value="{tmpl_var name="filter_txt"}" onclick="submitForm('pageForm','mail/mail_user_list.php');"><span>{tmpl_var name="filter_txt"}</span></button> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'E-mailový účet'; |
| | | $wb['Overview'] = 'Přehled'; |
| | | $wb['Password'] = 'Heslo'; |
| | | $wb['Autoresponder'] = 'Automatická odpověď'; |
| | | $wb['Send copy'] = 'Poslat kopii na e-mail'; |
| | | $wb['Spamfilter'] = 'Spamový filter'; |
| | | $wb['Email Filters'] = 'E-mailové filtry'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Nastavení e-mailové schránky'; |
| | | $wb['page_desc_txt'] = 'Zde můžete upravit nastavení pro e-mailový účet.'; |
| | | $wb['email_txt'] = 'E-mailová adresa'; |
| | | $wb['login_txt'] = 'Přihlášen'; |
| | | $wb['server_address_txt'] = 'Adresa e-mailového serveru'; |
| | | $wb['cc_txt'] = 'Poslat kopii na e-mail (CC)'; |
| | | $wb['quota_txt'] = 'Velikost poštovní schránky'; |
| | | $wb['unlimited_txt'] = 'Neomezený'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'Nenastaveno'; |
| | | ?> |
| | |
| | | <?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['mailbox_autoresponder_txt'] = 'Automatická odpověď'; |
| | | $wb['autoresponder_subject'] = 'Oznámení o nepřítomnosti'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Aktivní'; |
| | | $wb['autoresponder_start_date_txt'] = 'Začít od'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Datum zahájení nesmí být v minulosti.'; |
| | | $wb['autoresponder_end_date_txt'] = 'Skončit'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'Datum ukončení musí být nastaven a musí být pozdější než datum zahájení.'; |
| | | $wb['autoresponder_active'] = 'Povolit automatický odpovídač'; |
| | | $wb['now_txt'] = 'Nyní'; |
| | | $wb['autoresponder_subject_txt'] = 'Předmět e-mailu'; |
| | | ?> |
| | |
| | | <?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'] = 'Poslat kopii na e-mailovou adresu'; |
| | | $wb['cc_txt'] = 'Poslat kopii na e-mail'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $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é.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | | $wb['contains_txt'] = 'Contains'; |
| | | $wb['is_txt'] = 'Is'; |
| | | $wb['begins_with_txt'] = 'Begins with'; |
| | | $wb['ends_with_txt'] = 'Ends with'; |
| | | $wb['move_to_txt'] = 'Move to'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['rulename_txt'] = 'Název pravidla'; |
| | | $wb['action_txt'] = 'Akce'; |
| | | $wb['target_txt'] = 'Složka'; |
| | | $wb['active_txt'] = 'Aktivní'; |
| | | $wb['rulename_error_empty'] = 'Název pravidla je prázdný.'; |
| | | $wb['searchterm_is_empty'] = 'Hledaný výraz je prázdný.'; |
| | | $wb['source_txt'] = 'Zdroj'; |
| | | $wb['target_error_regex'] = 'Cíl může obsahovat jen tyto znaky: a-z, 0-9, -, ., _, a {mezeru}'; |
| | | $wb['limit_mailfilter_txt'] = 'Byl dosažen max. počet e-mailový filtrovacích pravidel.'; |
| | | $wb['subject_txt'] = 'Předmět'; |
| | | $wb['from_txt'] = 'Odesílatel'; |
| | | $wb['to_txt'] = 'Adresát'; |
| | | $wb['contains_txt'] = 'Obsahuje'; |
| | | $wb['is_txt'] = 'Je'; |
| | | $wb['begins_with_txt'] = 'Začíná na'; |
| | | $wb['ends_with_txt'] = 'Končí na'; |
| | | $wb['move_to_txt'] = 'Přesunout do'; |
| | | $wb['delete_txt'] = 'Smazat'; |
| | | ?> |
| | |
| | | <?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'] = 'E-mailová filtrovací pravidla'; |
| | | $wb['rulename_txt'] = 'Název pravidla'; |
| | | $wb['add_new_record_txt'] = 'Přidat nové pravidlo'; |
| | | $wb['page_txt'] = 'Stránka'; |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Opravdu chcete odstranit e-mail filter?'; |
| | | ?> |
| | |
| | | <?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'] = 'E-malový účet heslo'; |
| | | $wb['password_txt'] = 'Heslo'; |
| | | $wb['password_strength_txt'] = 'Síla hesla'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $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í.'; |
| | | ?> |
| | |
| | | <?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'] = 'Spamový filter'; |
| | | $wb['spamfilter_txt'] = 'Spamový filter'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['no_policy'] = '- nepovoleno -'; |
| | | $wb['policy_txt'] = 'Politika'; |
| | | ?> |
| | |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'E-Mail Filter'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['page_head_txt'] = "E-Mail Konten Einstellungen"; |
| | | $wb['page_desc_txt'] = "Hier können Sie die Einstellungen des E-Mail Kontos ändern."; |
| | | $wb['email_txt'] = "E-Mail Adresse"; |
| | | $wb['login_txt'] = "Login"; |
| | | $wb['server_address_txt'] = "E-Mailserver Adresse"; |
| | | $wb['cc_txt'] = "Kopie senden an (CC)"; |
| | | $wb['quota_txt'] = "E-Mail Kontogröße"; |
| | | $wb['unlimited_txt'] = "Unlimitiert"; |
| | | $wb['mb_txt'] = "MB"; |
| | | $wb['none_txt'] = "Niemanden"; |
| | | $wb['page_head_txt'] = 'E-Mail Konten Einstellungen'; |
| | | $wb['page_desc_txt'] = 'Hier können Sie die Einstellungen des E-Mail Kontos ändern.'; |
| | | $wb['email_txt'] = 'E-Mail Adresse'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'E-Mailserver Adresse'; |
| | | $wb['cc_txt'] = 'Kopie senden an (CC)'; |
| | | $wb['quota_txt'] = 'E-Mail Kontogröße'; |
| | | $wb['unlimited_txt'] = 'Unlimitiert'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'Niemanden'; |
| | | ?> |
| | | |
| | |
| | | $wb['now_txt'] = 'Jetzt'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | | |
| | |
| | | $wb['cc_error_isemail'] = 'E-Mail Adresse ungültig im -Kopie senden an- Feld'; |
| | | $wb['email_is_cc_error'] = 'E-Mail Adresse und '; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['rulename_txt'] = "Name"; |
| | | $wb['action_txt'] = "Aktion"; |
| | | $wb['target_txt'] = "Verzeichnis"; |
| | | $wb['active_txt'] = "Aktiv"; |
| | | $wb['rulename_error_empty'] = "Name ist leer."; |
| | | $wb['searchterm_is_empty'] = "Suchbegriff ist leer."; |
| | | $wb['source_txt'] = "Quelle"; |
| | | $wb['target_error_regex'] = "Das Ziel darf nur die folgenden Zeichen enthalten: a-z, 0-9, -, ., _, und {space}"; |
| | | $wb['limit_mailfilter_txt'] = "Die max. Anzahl an E-Mailfiltern ist erreicht."; |
| | | $wb['subject_txt'] = "Betreff"; |
| | | $wb['from_txt'] = "Von"; |
| | | $wb['to_txt'] = "An"; |
| | | $wb['contains_txt'] = "Enthält"; |
| | | $wb['is_txt'] = "Ist"; |
| | | $wb['begins_with_txt'] = "Startet mit"; |
| | | $wb['ends_with_txt'] = "Endet mit"; |
| | | $wb['move_to_txt'] = "Verschieben nach"; |
| | | $wb['delete_txt'] = "Löschen"; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Aktion'; |
| | | $wb['target_txt'] = 'Verzeichnis'; |
| | | $wb['active_txt'] = 'Aktiv'; |
| | | $wb['rulename_error_empty'] = 'Name ist leer.'; |
| | | $wb['searchterm_is_empty'] = 'Suchbegriff ist leer.'; |
| | | $wb['source_txt'] = 'Quelle'; |
| | | $wb['target_error_regex'] = 'Das Ziel darf nur die folgenden Zeichen enthalten: a-z, 0-9, -, ., _, und {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'Die max. Anzahl an E-Mailfiltern ist erreicht.'; |
| | | $wb['subject_txt'] = 'Betreff'; |
| | | $wb['from_txt'] = 'Von'; |
| | | $wb['to_txt'] = 'An'; |
| | | $wb['contains_txt'] = 'Enthält'; |
| | | $wb['is_txt'] = 'Ist'; |
| | | $wb['begins_with_txt'] = 'Startet mit'; |
| | | $wb['ends_with_txt'] = 'Endet mit'; |
| | | $wb['move_to_txt'] = 'Verschieben nach'; |
| | | $wb['delete_txt'] = 'Löschen'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'von'; |
| | | $wb['delete_confirmation'] = 'Möchten Sie die E-Mail Filter Regel wirklich löschen?'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['mailbox_password_txt'] = "E-Mail Konto Passwort"; |
| | | $wb['password_txt'] = "Passwort"; |
| | | $wb['password_strength_txt'] = "Passwortkomplexität"; |
| | | $wb['email_txt'] = "E-Mail"; |
| | | $wb['generate_password_txt'] = "Passwort erzeugen"; |
| | | $wb['repeat_password_txt'] = "Passwort wiederholen"; |
| | | $wb['password_mismatch_txt'] = "Die Passwörter stimmen nicht überein."; |
| | | $wb['password_match_txt'] = "Die Passwörter stimmen überein."; |
| | | $wb['mailbox_password_txt'] = 'E-Mail Konto Passwort'; |
| | | $wb['password_txt'] = 'Passwort'; |
| | | $wb['password_strength_txt'] = 'Passwortkomplexität'; |
| | | $wb['email_txt'] = 'E-Mail'; |
| | | $wb['generate_password_txt'] = 'Passwort erzeugen'; |
| | | $wb['repeat_password_txt'] = 'Passwort wiederholen'; |
| | | $wb['password_mismatch_txt'] = 'Die Passwörter stimmen nicht überein.'; |
| | | $wb['password_match_txt'] = 'Die Passwörter stimmen überein.'; |
| | | ?> |
| | | |
| | |
| | | $wb['no_policy'] = '- nicht aktiviert -'; |
| | | $wb['policy_txt'] = 'Richtlinie'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["Email Account"] = 'Email Account'; |
| | | $wb["Overview"] = 'Overview'; |
| | | $wb["Password"] = 'Password'; |
| | | $wb["Autoresponder"] = 'Autoresponder'; |
| | | $wb["Send copy"] = 'Send copy'; |
| | | $wb["Spamfilter"] = 'Spamfilter'; |
| | | $wb["Email Filters"] = 'Email Filters'; |
| | | ?> |
| | | $wb['Email Account'] = 'Email Account'; |
| | | $wb['Overview'] = 'Overview'; |
| | | $wb['Password'] = 'Password'; |
| | | $wb['Autoresponder'] = 'Autoresponder'; |
| | | $wb['Send copy'] = 'Send copy'; |
| | | $wb['Spamfilter'] = 'Spamfilter'; |
| | | $wb['Email Filters'] = 'Email Filters'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["page_head_txt"] = 'Mailbox settings'; |
| | | $wb["page_desc_txt"] = 'Here you can edit the settings for the email account.'; |
| | | $wb["email_txt"] = 'Email address'; |
| | | $wb["login_txt"] = 'Login'; |
| | | $wb["server_address_txt"] = 'Mailserver address'; |
| | | $wb["cc_txt"] = 'Send copy to (CC)'; |
| | | $wb["quota_txt"] = 'Mailbox size'; |
| | | $wb["unlimited_txt"] = 'Unlimited'; |
| | | $wb["mb_txt"] = 'MB'; |
| | | $wb["none_txt"] = 'None'; |
| | | ?> |
| | | $wb['page_head_txt'] = 'Mailbox settings'; |
| | | $wb['page_desc_txt'] = 'Here you can edit the settings for the email account.'; |
| | | $wb['email_txt'] = 'Email address'; |
| | | $wb['login_txt'] = 'Login'; |
| | | $wb['server_address_txt'] = 'Mailserver address'; |
| | | $wb['cc_txt'] = 'Send copy to (CC)'; |
| | | $wb['quota_txt'] = 'Mailbox size'; |
| | | $wb['unlimited_txt'] = 'Unlimited'; |
| | | $wb['mb_txt'] = 'MB'; |
| | | $wb['none_txt'] = 'None'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_autoresponder_txt"] = 'Autoresponder'; |
| | | $wb["autoresponder_subject"] = 'Out of office reply'; |
| | | $wb["autoresponder_text_txt"] = 'Text'; |
| | | $wb["autoresponder_txt"] = 'Active'; |
| | | $wb["autoresponder_start_date_txt"] = 'Start on'; |
| | | $wb["autoresponder_start_date_isfuture"] = 'Start date cannot be in the past.'; |
| | | $wb["autoresponder_end_date_txt"] = 'End by'; |
| | | $wb["autoresponder_end_date_isgreater"] = 'End date must be set and be later than start date.'; |
| | | $wb['mailbox_autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['autoresponder_subject'] = 'Out of office reply'; |
| | | $wb['autoresponder_text_txt'] = 'Text'; |
| | | $wb['autoresponder_txt'] = 'Active'; |
| | | $wb['autoresponder_start_date_txt'] = 'Start on'; |
| | | $wb['autoresponder_start_date_isfuture'] = 'Start date cannot be in the past.'; |
| | | $wb['autoresponder_end_date_txt'] = 'End by'; |
| | | $wb['autoresponder_end_date_isgreater'] = 'End date must be set and be later than start date.'; |
| | | $wb['autoresponder_active'] = 'Enable the autoresponder'; |
| | | $wb['now_txt']='Now'; |
| | | $wb['now_txt'] = 'Now'; |
| | | $wb['autoresponder_subject_txt'] = 'Betreff'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_cc_txt"] = 'Send copy to email address'; |
| | | $wb["cc_txt"] = 'Send copy to'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["cc_error_isemail"] = 'Email address invalid in -Send copy to- field'; |
| | | $wb["email_is_cc_error"] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | | $wb['mailbox_cc_txt'] = 'Send copy to email address'; |
| | | $wb['cc_txt'] = 'Send copy to'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['cc_error_isemail'] = 'Email address invalid in -Send copy to- field'; |
| | | $wb['email_is_cc_error'] = 'Email address and send copy to address can not be the same.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["action_txt"] = 'Action'; |
| | | $wb["target_txt"] = 'Folder'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["rulename_error_empty"] = 'Name is empty.'; |
| | | $wb["searchterm_is_empty"] = 'Search term is empty.'; |
| | | $wb["source_txt"] = 'Source'; |
| | | $wb["target_error_regex"] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb["limit_mailfilter_txt"] = 'The max. number of mailfilters is reached.'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['action_txt'] = 'Action'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['rulename_error_empty'] = 'Name is empty.'; |
| | | $wb['searchterm_is_empty'] = 'Search term is empty.'; |
| | | $wb['source_txt'] = 'Source'; |
| | | $wb['target_error_regex'] = 'The target may only contain these characters: a-z, 0-9, -, ., _, and {space}'; |
| | | $wb['limit_mailfilter_txt'] = 'The max. number of mailfilters is reached.'; |
| | | $wb['subject_txt'] = 'Subject'; |
| | | $wb['from_txt'] = 'From'; |
| | | $wb['to_txt'] = 'To'; |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Email filter rules'; |
| | | $wb["rulename_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new Filter'; |
| | | $wb["page_txt"] = 'Page'; |
| | | $wb["page_of_txt"] = 'of'; |
| | | $wb["delete_confirmation"] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | | $wb['list_head_txt'] = 'Email filter rules'; |
| | | $wb['rulename_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new Filter'; |
| | | $wb['page_txt'] = 'Page'; |
| | | $wb['page_of_txt'] = 'of'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete the mailfilter?'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_password_txt"] = 'Mailbox password'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb['mailbox_password_txt'] = 'Mailbox password'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
| | | ?> |
| | |
| | | <?php |
| | | $wb["mailbox_spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["spamfilter_txt"] = 'Spamfilter'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["no_policy"] = '- not enabled -'; |
| | | $wb["policy_txt"] = 'Policy'; |
| | | ?> |
| | | $wb['mailbox_spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['spamfilter_txt'] = 'Spamfilter'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['no_policy'] = '- not enabled -'; |
| | | $wb['policy_txt'] = 'Policy'; |
| | | ?> |
| | |
| | | $wb['Show Disk usage'] = 'Zobrazit využití disku'; |
| | | $wb['Show Memory usage'] = 'Zobrazit využití paměti'; |
| | | $wb['Show Services'] = 'Zobrazit služby'; |
| | | $wb['Show Mail-Queue'] = 'Zobrazit mailovou fronto'; |
| | | $wb['Show Mail-Log'] = 'Zobrazit mailový log'; |
| | | $wb['Show Mail warn-Log'] = 'Zobrazit mailový log varování'; |
| | | $wb['Show Mail err-Log'] = 'Zobrazit mailový log chyb'; |
| | | $wb['Show Mail-Queue'] = 'Zobrazit e-mailovou frontu'; |
| | | $wb['Show Mail-Log'] = 'Zobrazit e-mailový log'; |
| | | $wb['Show Mail warn-Log'] = 'Zobrazit e-mailový log varování'; |
| | | $wb['Show Mail err-Log'] = 'Zobrazit e-mailový log chyb'; |
| | | $wb['Show System-Log'] = 'Zobrazit systémový log'; |
| | | $wb['Show ISPC Cron-Log'] = 'Zobrazit ISPConfig cron log'; |
| | | $wb['Show Freshclam-Log'] = 'Zobrazit Freshclam log'; |
| | |
| | | $wb['monitor_diskusage_available_txt'] = 'Volné'; |
| | | $wb['monitor_diskusage_usage_txt'] = 'Užití%'; |
| | | $wb['monitor_diskusage_mounted_txt'] = 'Připojeno na'; |
| | | $wb['monitor_logs_mail_txt'] = 'Mail - Log'; |
| | | $wb['monitor_logs_mailwarn_txt'] = 'Mail-Varování - Log'; |
| | | $wb['monitor_logs_mailerr_txt'] = 'Mail-Chyby - Log'; |
| | | $wb['monitor_logs_mail_txt'] = 'E-mail - Log'; |
| | | $wb['monitor_logs_mailwarn_txt'] = 'E-mail - Varování - Log'; |
| | | $wb['monitor_logs_mailerr_txt'] = 'E-mail - Chyby - Log'; |
| | | $wb['monitor_logs_messages_txt'] = 'Systénové zprávy - Log'; |
| | | $wb['monitor_logs_ispccron_txt'] = 'ISPConfig cron - Log'; |
| | | $wb['monitor_logs_freshclam_txt'] = 'Freshclam - Log'; |
| | |
| | | $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_mailqheavy_txt'] = 'Mailová fronta těžce zatížena'; |
| | | $wb['monitor_serverstate_mailqhigh_txt'] = 'Mailová fronta vysoce zatížena'; |
| | | $wb['monitor_serverstate_mailqhigher_txt'] = 'Mailová fronta je pod vyšším zatížením'; |
| | | $wb['monitor_serverstate_mailqhighest_txt'] = 'Mailová fronta pod nejvyšším zatížením'; |
| | | $wb['monitor_serverstate_mailqunknown_txt'] = 'Mailová fronta: ???'; |
| | | $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_serverstate_mailqhighest_txt'] = 'E-mailová fronta pod nejvyšším zatížením'; |
| | | $wb['monitor_serverstate_mailqunknown_txt'] = 'E-mailová fronta: ???'; |
| | | $wb['monitor_serverstate_raidok_txt'] = 'RAID pole je vpořádku'; |
| | | $wb['monitor_serverstate_raidresync_txt'] = 'RAID pole je v RESYNC módu'; |
| | | $wb['monitor_serverstate_raidfault_txt'] = 'RAID pole má jeden POŠKOZENÝ disk. Vyměňte jej co nejdříve!'; |
| | |
| | | $wb['monitor_settings_server_txt'] = 'Server'; |
| | | $wb['monitor_title_cpuinfo_txt'] = 'CPU informace'; |
| | | $wb['monitor_title_updatestate_txt'] = 'Stav aktualizace'; |
| | | $wb['monitor_title_mailq_txt'] = 'Mailová fronta'; |
| | | $wb['monitor_title_mailq_txt'] = 'E-mailová fronta'; |
| | | $wb['monitor_title_raidstate_txt'] = 'Stav pole RAID'; |
| | | $wb['monitor_title_rkhunterlog_txt'] = 'RKHunter log'; |
| | | $wb['monitor_title_fail2ban_txt'] = 'Fail2Ban log'; |
| | |
| | | $wb['monitor_serverstate_beancountererror_txt'] = 'There are too much failure in the beancounter'; |
| | | $wb['monitor_title_beancounter_txt'] = 'OpenVz VE BeanCounter'; |
| | | $wb['monitor_beancounter_nosupport_txt'] = 'This server is not a OpenVz VE and has no beancounter information'; |
| | | $wb['monitor_title_iptables_txt'] = 'IPTables Rules'; |
| | | $wb['Show fail2ban-Log'] = 'Show fail2ban-Log'; |
| | | $wb['Show IPTables'] = 'Show IPTables'; |
| | | $wb['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'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Fronta úlog'; |
| | | $wb['list_head_txt'] = 'Fronta úloh'; |
| | | $wb['tstamp_txt'] = 'Datum'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['dbtable_txt'] = 'DB tabulka'; |
| | |
| | | <?php |
| | | $wb['Memory usage'] = "Speicherauslastung"; |
| | | $wb['Server online since'] = "Server ist online seit"; |
| | | $wb['Users online'] = "Benutzer online"; |
| | | $wb['System load 1 minute'] = "Systemlast 1 Minute"; |
| | | $wb['System load 5 minutes'] = "Systemlast 5 Minuten"; |
| | | $wb['System load 15 minutes'] = "Systemlast 15 Minuten"; |
| | | $wb['Server Load'] = "Serverauslastung"; |
| | | $wb['Disk usage'] = "Festplattenbelegung"; |
| | | $wb['no_data_serverload_txt'] = "Derzeit stehen keine Daten über die Serverlast zur Verfügung. Bitte später erneut überprüfen."; |
| | | $wb['no_data_memusage_txt'] = "Derzeit stehen keine Daten über die Speicherauslastung zur Verfügung. Bitte später erneut überprüfen."; |
| | | $wb['no_data_diskusage_txt'] = "Derzeit stehen keine Daten über die Festplattenbelegung zur Verfügung. Bitte später erneut überprüfen."; |
| | | $wb['no_data_cpuinfo_txt'] = "Derzeit stehen keine Daten über die CPU zur Verfügung. Bitte später erneut überprüfen."; |
| | | $wb['no_data_services_txt'] = "Derzeit stehen keine Daten über die Dienste zur Verfügung. Bitte später erneut überprüfen."; |
| | | $wb['no_logdata_txt'] = "Derzeit stehen keine Protokolldaten zur Verfügung. Bitte später erneut überprüfen."; |
| | | $wb['Monitoring'] = "Überwachung"; |
| | | $wb['Server to Monitor'] = "Zu überwachende Server"; |
| | | $wb['Logfiles'] = "Protokolldateien"; |
| | | $wb['Status of services'] = "Dienststatus"; |
| | | $wb['No Refresh'] = "keine Aktualisierung"; |
| | | $wb['minutes'] = "Minuten"; |
| | | $wb['Show Overview'] = "Übersicht zeigen"; |
| | | $wb['System State (All Servers)'] = "Systemstatus (Alle Server)"; |
| | | $wb['Hardware-Information'] = "Hardwareinformationen"; |
| | | $wb['Show CPU info'] = "CPU Informationen"; |
| | | $wb['Server State'] = "Serverstatus"; |
| | | $wb['Show Update State'] = "Updatestatus anzeigen"; |
| | | $wb['Show RAID state'] = "RAID Status anzeigen"; |
| | | $wb['Show Server load'] = "Serverauslastung anzeigen"; |
| | | $wb['Show Disk usage'] = "Festplattenbelegung anzeigen"; |
| | | $wb['Show Memory usage'] = "Speicherauslastung anzeigen"; |
| | | $wb['Show Services'] = "Dienste anzeigen"; |
| | | $wb['Show Mail-Queue'] = "E-Mail Warteschlange anzeigen"; |
| | | $wb['Show Mail-Log'] = "E-Mail Protokoll anzeigen"; |
| | | $wb['Show Mail warn-Log'] = "E-Mail Warn Protokoll anzeigen"; |
| | | $wb['Show Mail err-Log'] = "E-Mail Fehler Protokoll anzeigen"; |
| | | $wb['Show System-Log'] = "System Protokoll anzeigen"; |
| | | $wb['Show Freshclam-Log'] = "Freshclam Protokoll anzeigen"; |
| | | $wb['Show Clamav-Log'] = "ClamAV Protokoll anzeigen"; |
| | | $wb['Show ISPConfig-Log'] = "ISPConfig Protokoll anzeigen"; |
| | | $wb['Show RKHunter-Log'] = "RKHunter Protokoll anzeigen"; |
| | | $wb['Show Jobqueue'] = "Jobwarteschlange anzeigen"; |
| | | $wb['Show ISPC Cron-Log'] = "Cron Protokoll anzeigen"; |
| | | $wb['no_data_updates_txt'] = "Derzeit stehen keine Daten über Updates zur Verfügung. Bitte später erneut überprüfen."; |
| | | $wb['no_data_raid_txt'] = "Derzeit stehen keine Daten über RAID zur Verfügung. Bitte später erneut überprüfen."; |
| | | $wb['no_data_rkhunter_txt'] = "Derzeit stehen keine Daten von RKHunter zur Verfügung. Bitte später erneut überprüfen."; |
| | | $wb['no_data_mailq_txt'] = "Derzeit stehen keine Daten der EMail Warteschlange zur Verfügung.Bitte später erneut überprüfen."; |
| | | $wb['monitor_general_serverstate_txt'] = "Serverstatus"; |
| | | $wb['monitor_general_systemstate_txt'] = "Systemstatus"; |
| | | $wb['monitor_diskusage_filesystem_txt'] = "Dateisystem"; |
| | | $wb['monitor_diskusage_type_txt'] = "Typ"; |
| | | $wb['monitor_diskusage_size_txt'] = "Größe"; |
| | | $wb['monitor_diskusage_used_txt'] = "In Verwendung"; |
| | | $wb['monitor_diskusage_available_txt'] = "verfügbar"; |
| | | $wb['monitor_diskusage_usage_txt'] = "Verwendung in %"; |
| | | $wb['monitor_diskusage_mounted_txt'] = "gemountet unter"; |
| | | $wb['monitor_logs_mail_txt'] = "E-Mail Protokoll"; |
| | | $wb['monitor_logs_mailwarn_txt'] = "E-Mail Warnung Protokoll"; |
| | | $wb['monitor_logs_mailerr_txt'] = "Mail Fehler Protokoll"; |
| | | $wb['monitor_logs_messages_txt'] = "Systemmeldungen Protokoll"; |
| | | $wb['monitor_logs_ispccron_txt'] = "Cron Protokoll"; |
| | | $wb['monitor_logs_freshclam_txt'] = "Freshclam Protokoll"; |
| | | $wb['monitor_logs_clamav_txt'] = "ClamAV Protokoll"; |
| | | $wb['monitor_logs_ispc_txt'] = "ISPConfig Protokoll"; |
| | | $wb['monitor_norkhunter_txt'] = "RKHunter ist nicht installiert, deshalb gibt es keine Protokolldatei"; |
| | | $wb['monitor_serverstate_server_txt'] = "Server"; |
| | | $wb['monitor_serverstate_state_txt'] = "Status"; |
| | | $wb['monitor_serverstate_unknown_txt'] = "unbekannt"; |
| | | $wb['monitor_serverstate_info_txt'] = "Info"; |
| | | $wb['monitor_serverstate_warning_txt'] = "Warnung"; |
| | | $wb['monitor_serverstate_critical_txt'] = "kritisch"; |
| | | $wb['monitor_serverstate_error_txt'] = "Fehler"; |
| | | $wb['monitor_serverstate_moreinfo_txt'] = "Mehr Informationen..."; |
| | | $wb['monitor_serverstate_more_txt'] = "mehr..."; |
| | | $wb['monitor_serverstate_fclamok_txt'] = "Ihr Virenschutz ist in Ordnung."; |
| | | $wb['monitor_serverstate_fclamoutdated_txt'] = "Ihr Virenschutz ist VERALTET!"; |
| | | $wb['monitor_serverstate_fclamunknown_txt'] = "Freshclam: ???"; |
| | | $wb['monitor_serverstate_hdok_txt'] = "Die Festplattenauslastung ist in Ordnung"; |
| | | $wb['monitor_serverstate_hdgoingfull_txt'] = "Die Festplatte ist bald voll"; |
| | | $wb['monitor_serverstate_hdnearlyfull_txt'] = "Die Festplatte wird langsam voll"; |
| | | $wb['monitor_serverstate_hdveryfull_txt'] = "Die Festplatte ist sehr voll"; |
| | | $wb['monitor_serverstate_hdfull_txt'] = "Die Festplatte hat keinen Platz mehr frei"; |
| | | $wb['monitor_serverstate_hdunknown_txt'] = "Festplatte: ???"; |
| | | $wb['monitor_serverstate_listok_txt'] = "in Ordnung"; |
| | | $wb['monitor_serverstate_listinfo_txt'] = "Information"; |
| | | $wb['monitor_serverstate_listwarning_txt'] = "Warnung"; |
| | | $wb['monitor_serverstate_listcritical_txt'] = "kritisch"; |
| | | $wb['monitor_serverstate_listerror_txt'] = "Fehler"; |
| | | $wb['monitor_serverstate_listunknown_txt'] = "unbekannt"; |
| | | $wb['monitor_serverstate_loadok_txt'] = "Die Serverauslastung ist in Ordnung"; |
| | | $wb['monitor_serverstate_loadheavy_txt'] = "Der Server ist extrem ausgelastet"; |
| | | $wb['monitor_serverstate_loadhigh_txt'] = "Der Server ist stark ausgelastet"; |
| | | $wb['monitor_serverstate_loaghigher_txt'] = "Der Server ist stärker ausgelastet"; |
| | | $wb['monitor_serverstate_loadhighest_txt'] = "Der Server ist höchst ausgelastet"; |
| | | $wb['monitor_serverstate_loadunknown_txt'] = "Serverauslastung: ???"; |
| | | $wb['monitor_serverstate_mailqok_txt'] = "Die E-Mail Wartenschlangenauslastung ist in Ordnung"; |
| | | $wb['monitor_serverstate_mailqheavy_txt'] = "Die E-Mail Wartenschlange ist extrem ausgelastet"; |
| | | $wb['monitor_serverstate_mailqhigh_txt'] = "Die E-Mail Wartenschlange ist stark ausgelastet"; |
| | | $wb['monitor_serverstate_mailqhigher_txt'] = "Die E-Mail Wartenschlange ist stärker ausgelastet"; |
| | | $wb['monitor_serverstate_mailqhighest_txt'] = "Die E-Mail Wartenschlange ist höchst ausgelastet"; |
| | | $wb['monitor_serverstate_mailqunknown_txt'] = "E-Mail Wartenschlange: ???"; |
| | | $wb['monitor_serverstate_raidok_txt'] = "Das RAID ist in Ordnung"; |
| | | $wb['monitor_serverstate_raidresync_txt'] = "Das RAID ist im RESYNC Modus"; |
| | | $wb['monitor_serverstate_raidfault_txt'] = "Das RAID hat eine DEFEKTE Festplatte. Bitte schnellstmöglich ersetzen!"; |
| | | $wb['monitor_serverstate_raiderror_txt'] = "Das RAID funktioniert nicht mehr"; |
| | | $wb['monitor_serverstate_raidunknown_txt'] = "RAID Status: ???"; |
| | | $wb['monitor_serverstate_servicesonline_txt'] = "Alle benötigten Dienste sind online"; |
| | | $wb['monitor_serverstate_servicesoffline_txt'] = "Einer oder mehrere benötigte Dienste sind offline"; |
| | | $wb['monitor_serverstate_servicesunknown_txt'] = "Dienste: ???"; |
| | | $wb['monitor_serverstate_syslogok_txt'] = "Das System Protokoll ist in Ordnung"; |
| | | $wb['monitor_serverstate_syslogwarning_txt'] = "Es gibt Warnungen im System Protokoll"; |
| | | $wb['monitor_serverstate_syslogerror_txt'] = "Es gibt Fehler im System Protokoll"; |
| | | $wb['monitor_serverstate_syslogunknown_txt'] = "System Protokoll: ???"; |
| | | $wb['monitor_serverstate_updatesok_txt'] = "Ihr System ist aktuell"; |
| | | $wb['monitor_serverstate_updatesneeded_txt'] = "Eine oder mehrere Komponenten benötigen ein Update"; |
| | | $wb['monitor_serverstate_updatesunknown_txt'] = "System Update: ???"; |
| | | $wb['monitor_services_online_txt'] = "Online"; |
| | | $wb['monitor_services_offline_txt'] = "Offline"; |
| | | $wb['monitor_services_web_txt'] = "Web Server:"; |
| | | $wb['monitor_services_ftp_txt'] = "FTP Server:"; |
| | | $wb['monitor_services_smtp_txt'] = "SMTP Server:"; |
| | | $wb['monitor_services_pop_txt'] = "POP3 Server:"; |
| | | $wb['monitor_services_imap_txt'] = "IMAP Server:"; |
| | | $wb['monitor_services_mydns_txt'] = "DNS Server:"; |
| | | $wb['monitor_services_mysql_txt'] = "MySQL Server:"; |
| | | $wb['monitor_settings_datafromdate_txt'] = "Daten vom: "; |
| | | $wb['monitor_settings_datetimeformat_txt'] = "d.m.Y H:i"; |
| | | $wb['monitor_settings_refreshsq_txt'] = "Aktualisierungsrate:"; |
| | | $wb['monitor_settings_server_txt'] = "Server"; |
| | | $wb['monitor_title_cpuinfo_txt'] = "CPU Informationen"; |
| | | $wb['monitor_title_updatestate_txt'] = "Updatestatus"; |
| | | $wb['monitor_title_mailq_txt'] = "E-Mail Warteschlange"; |
| | | $wb['monitor_title_raidstate_txt'] = "RAID Status"; |
| | | $wb['monitor_title_rkhunterlog_txt'] = "RKHunter Protokoll"; |
| | | $wb['monitor_updates_nosupport_txt'] = "Ihre Distribution wird für die Überwachung nicht unterstützt"; |
| | | $wb['monitor_title_fail2ban_txt'] = "Fail2Ban Protokoll"; |
| | | $wb['monitor_nosupportedraid1_txt'] = "At the moment, we support mdadm or mpt-status for monitoring the RAID.<br>We cant find any of them at your server.<br><br>This means we can not support your RAID yet."; |
| | | $wb['monitor_serverstate_beancounterok_txt'] = "The beancounter is ok"; |
| | | $wb['monitor_serverstate_beancounterinfo_txt'] = "There are vew failure in the beancounter"; |
| | | $wb['monitor_serverstate_beancounterwarning_txt'] = "There are some failure in the beancounter"; |
| | | $wb['monitor_serverstate_beancountercritical_txt'] = "There are many failure in the beancounter"; |
| | | $wb['monitor_serverstate_beancountererror_txt'] = "There are too much failure in the beancounter"; |
| | | $wb['monitor_title_beancounter_txt'] = "OpenVz VE BeanCounter"; |
| | | $wb['monitor_beancounter_nosupport_txt'] = "This server is not a OpenVz VE and has no beancounter information"; |
| | | $wb['monitor_title_iptables_txt'] = "IPTables Regeln"; |
| | | $wb['Show fail2ban-Log'] = "Fail2ban Protokoll anzeigen"; |
| | | $wb['Show IPTables'] = "IPTables anzeigen"; |
| | | $wb['Show OpenVz VE BeanCounter'] = "OpenVz VE BeanCounter anzeigen"; |
| | | $wb['Memory usage'] = 'Speicherauslastung'; |
| | | $wb['Server online since'] = 'Server ist online seit'; |
| | | $wb['Users online'] = 'Benutzer online'; |
| | | $wb['System load 1 minute'] = 'Systemlast 1 Minute'; |
| | | $wb['System load 5 minutes'] = 'Systemlast 5 Minuten'; |
| | | $wb['System load 15 minutes'] = 'Systemlast 15 Minuten'; |
| | | $wb['Server Load'] = 'Serverauslastung'; |
| | | $wb['Disk usage'] = 'Festplattenbelegung'; |
| | | $wb['no_data_serverload_txt'] = 'Derzeit stehen keine Daten über die Serverlast zur Verfügung. Bitte später erneut überprüfen.'; |
| | | $wb['no_data_memusage_txt'] = 'Derzeit stehen keine Daten über die Speicherauslastung zur Verfügung. Bitte später erneut überprüfen.'; |
| | | $wb['no_data_diskusage_txt'] = 'Derzeit stehen keine Daten über die Festplattenbelegung zur Verfügung. Bitte später erneut überprüfen.'; |
| | | $wb['no_data_cpuinfo_txt'] = 'Derzeit stehen keine Daten über die CPU zur Verfügung. Bitte später erneut überprüfen.'; |
| | | $wb['no_data_services_txt'] = 'Derzeit stehen keine Daten über die Dienste zur Verfügung. Bitte später erneut überprüfen.'; |
| | | $wb['no_logdata_txt'] = 'Derzeit stehen keine Protokolldaten zur Verfügung. Bitte später erneut überprüfen.'; |
| | | $wb['Monitoring'] = 'Überwachung'; |
| | | $wb['Server to Monitor'] = 'Zu überwachende Server'; |
| | | $wb['Logfiles'] = 'Protokolldateien'; |
| | | $wb['Status of services'] = 'Dienststatus'; |
| | | $wb['No Refresh'] = 'keine Aktualisierung'; |
| | | $wb['minutes'] = 'Minuten'; |
| | | $wb['Show Overview'] = 'Übersicht zeigen'; |
| | | $wb['System State (All Servers)'] = 'Systemstatus (Alle Server)'; |
| | | $wb['Hardware-Information'] = 'Hardwareinformationen'; |
| | | $wb['Show CPU info'] = 'CPU Informationen'; |
| | | $wb['Server State'] = 'Serverstatus'; |
| | | $wb['Show Update State'] = 'Updatestatus anzeigen'; |
| | | $wb['Show RAID state'] = 'RAID Status anzeigen'; |
| | | $wb['Show Server load'] = 'Serverauslastung anzeigen'; |
| | | $wb['Show Disk usage'] = 'Festplattenbelegung anzeigen'; |
| | | $wb['Show Memory usage'] = 'Speicherauslastung anzeigen'; |
| | | $wb['Show Services'] = 'Dienste anzeigen'; |
| | | $wb['Show Mail-Queue'] = 'E-Mail Warteschlange anzeigen'; |
| | | $wb['Show Mail-Log'] = 'E-Mail Protokoll anzeigen'; |
| | | $wb['Show Mail warn-Log'] = 'E-Mail Warn Protokoll anzeigen'; |
| | | $wb['Show Mail err-Log'] = 'E-Mail Fehler Protokoll anzeigen'; |
| | | $wb['Show System-Log'] = 'System Protokoll anzeigen'; |
| | | $wb['Show Freshclam-Log'] = 'Freshclam Protokoll anzeigen'; |
| | | $wb['Show Clamav-Log'] = 'ClamAV Protokoll anzeigen'; |
| | | $wb['Show ISPConfig-Log'] = 'ISPConfig Protokoll anzeigen'; |
| | | $wb['Show RKHunter-Log'] = 'RKHunter Protokoll anzeigen'; |
| | | $wb['Show Jobqueue'] = 'Jobwarteschlange anzeigen'; |
| | | $wb['Show ISPC Cron-Log'] = 'Cron Protokoll anzeigen'; |
| | | $wb['no_data_updates_txt'] = 'Derzeit stehen keine Daten über Updates zur Verfügung. Bitte später erneut überprüfen.'; |
| | | $wb['no_data_raid_txt'] = 'Derzeit stehen keine Daten über RAID zur Verfügung. Bitte später erneut überprüfen.'; |
| | | $wb['no_data_rkhunter_txt'] = 'Derzeit stehen keine Daten von RKHunter zur Verfügung. Bitte später erneut überprüfen.'; |
| | | $wb['no_data_mailq_txt'] = 'Derzeit stehen keine Daten der EMail Warteschlange zur Verfügung.Bitte später erneut überprüfen.'; |
| | | $wb['monitor_general_serverstate_txt'] = 'Serverstatus'; |
| | | $wb['monitor_general_systemstate_txt'] = 'Systemstatus'; |
| | | $wb['monitor_diskusage_filesystem_txt'] = 'Dateisystem'; |
| | | $wb['monitor_diskusage_type_txt'] = 'Typ'; |
| | | $wb['monitor_diskusage_size_txt'] = 'Größe'; |
| | | $wb['monitor_diskusage_used_txt'] = 'In Verwendung'; |
| | | $wb['monitor_diskusage_available_txt'] = 'verfügbar'; |
| | | $wb['monitor_diskusage_usage_txt'] = 'Verwendung in %'; |
| | | $wb['monitor_diskusage_mounted_txt'] = 'gemountet unter'; |
| | | $wb['monitor_logs_mail_txt'] = 'E-Mail Protokoll'; |
| | | $wb['monitor_logs_mailwarn_txt'] = 'E-Mail Warnung Protokoll'; |
| | | $wb['monitor_logs_mailerr_txt'] = 'Mail Fehler Protokoll'; |
| | | $wb['monitor_logs_messages_txt'] = 'Systemmeldungen Protokoll'; |
| | | $wb['monitor_logs_ispccron_txt'] = 'Cron Protokoll'; |
| | | $wb['monitor_logs_freshclam_txt'] = 'Freshclam Protokoll'; |
| | | $wb['monitor_logs_clamav_txt'] = 'ClamAV Protokoll'; |
| | | $wb['monitor_logs_ispc_txt'] = 'ISPConfig Protokoll'; |
| | | $wb['monitor_norkhunter_txt'] = 'RKHunter ist nicht installiert, deshalb gibt es keine Protokolldatei'; |
| | | $wb['monitor_serverstate_server_txt'] = 'Server'; |
| | | $wb['monitor_serverstate_state_txt'] = 'Status'; |
| | | $wb['monitor_serverstate_unknown_txt'] = 'unbekannt'; |
| | | $wb['monitor_serverstate_info_txt'] = 'Info'; |
| | | $wb['monitor_serverstate_warning_txt'] = 'Warnung'; |
| | | $wb['monitor_serverstate_critical_txt'] = 'kritisch'; |
| | | $wb['monitor_serverstate_error_txt'] = 'Fehler'; |
| | | $wb['monitor_serverstate_moreinfo_txt'] = 'Mehr Informationen...'; |
| | | $wb['monitor_serverstate_more_txt'] = 'mehr...'; |
| | | $wb['monitor_serverstate_fclamok_txt'] = 'Ihr Virenschutz ist in Ordnung.'; |
| | | $wb['monitor_serverstate_fclamoutdated_txt'] = 'Ihr Virenschutz ist VERALTET!'; |
| | | $wb['monitor_serverstate_fclamunknown_txt'] = 'Freshclam: ???'; |
| | | $wb['monitor_serverstate_hdok_txt'] = 'Die Festplattenauslastung ist in Ordnung'; |
| | | $wb['monitor_serverstate_hdgoingfull_txt'] = 'Die Festplatte ist bald voll'; |
| | | $wb['monitor_serverstate_hdnearlyfull_txt'] = 'Die Festplatte wird langsam voll'; |
| | | $wb['monitor_serverstate_hdveryfull_txt'] = 'Die Festplatte ist sehr voll'; |
| | | $wb['monitor_serverstate_hdfull_txt'] = 'Die Festplatte hat keinen Platz mehr frei'; |
| | | $wb['monitor_serverstate_hdunknown_txt'] = 'Festplatte: ???'; |
| | | $wb['monitor_serverstate_listok_txt'] = 'in Ordnung'; |
| | | $wb['monitor_serverstate_listinfo_txt'] = 'Information'; |
| | | $wb['monitor_serverstate_listwarning_txt'] = 'Warnung'; |
| | | $wb['monitor_serverstate_listcritical_txt'] = 'kritisch'; |
| | | $wb['monitor_serverstate_listerror_txt'] = 'Fehler'; |
| | | $wb['monitor_serverstate_listunknown_txt'] = 'unbekannt'; |
| | | $wb['monitor_serverstate_loadok_txt'] = 'Die Serverauslastung ist in Ordnung'; |
| | | $wb['monitor_serverstate_loadheavy_txt'] = 'Der Server ist extrem ausgelastet'; |
| | | $wb['monitor_serverstate_loadhigh_txt'] = 'Der Server ist stark ausgelastet'; |
| | | $wb['monitor_serverstate_loaghigher_txt'] = 'Der Server ist stärker ausgelastet'; |
| | | $wb['monitor_serverstate_loadhighest_txt'] = 'Der Server ist höchst ausgelastet'; |
| | | $wb['monitor_serverstate_loadunknown_txt'] = 'Serverauslastung: ???'; |
| | | $wb['monitor_serverstate_mailqok_txt'] = 'Die E-Mail Wartenschlangenauslastung ist in Ordnung'; |
| | | $wb['monitor_serverstate_mailqheavy_txt'] = 'Die E-Mail Wartenschlange ist extrem ausgelastet'; |
| | | $wb['monitor_serverstate_mailqhigh_txt'] = 'Die E-Mail Wartenschlange ist stark ausgelastet'; |
| | | $wb['monitor_serverstate_mailqhigher_txt'] = 'Die E-Mail Wartenschlange ist stärker ausgelastet'; |
| | | $wb['monitor_serverstate_mailqhighest_txt'] = 'Die E-Mail Wartenschlange ist höchst ausgelastet'; |
| | | $wb['monitor_serverstate_mailqunknown_txt'] = 'E-Mail Wartenschlange: ???'; |
| | | $wb['monitor_serverstate_raidok_txt'] = 'Das RAID ist in Ordnung'; |
| | | $wb['monitor_serverstate_raidresync_txt'] = 'Das RAID ist im RESYNC Modus'; |
| | | $wb['monitor_serverstate_raidfault_txt'] = 'Das RAID hat eine DEFEKTE Festplatte. Bitte schnellstmöglich ersetzen!'; |
| | | $wb['monitor_serverstate_raiderror_txt'] = 'Das RAID funktioniert nicht mehr'; |
| | | $wb['monitor_serverstate_raidunknown_txt'] = 'RAID Status: ???'; |
| | | $wb['monitor_serverstate_servicesonline_txt'] = 'Alle benötigten Dienste sind online'; |
| | | $wb['monitor_serverstate_servicesoffline_txt'] = 'Einer oder mehrere benötigte Dienste sind offline'; |
| | | $wb['monitor_serverstate_servicesunknown_txt'] = 'Dienste: ???'; |
| | | $wb['monitor_serverstate_syslogok_txt'] = 'Das System Protokoll ist in Ordnung'; |
| | | $wb['monitor_serverstate_syslogwarning_txt'] = 'Es gibt Warnungen im System Protokoll'; |
| | | $wb['monitor_serverstate_syslogerror_txt'] = 'Es gibt Fehler im System Protokoll'; |
| | | $wb['monitor_serverstate_syslogunknown_txt'] = 'System Protokoll: ???'; |
| | | $wb['monitor_serverstate_updatesok_txt'] = 'Ihr System ist aktuell'; |
| | | $wb['monitor_serverstate_updatesneeded_txt'] = 'Eine oder mehrere Komponenten benötigen ein Update'; |
| | | $wb['monitor_serverstate_updatesunknown_txt'] = 'System Update: ???'; |
| | | $wb['monitor_services_online_txt'] = 'Online'; |
| | | $wb['monitor_services_offline_txt'] = 'Offline'; |
| | | $wb['monitor_services_web_txt'] = 'Web Server:'; |
| | | $wb['monitor_services_ftp_txt'] = 'FTP Server:'; |
| | | $wb['monitor_services_smtp_txt'] = 'SMTP Server:'; |
| | | $wb['monitor_services_pop_txt'] = 'POP3 Server:'; |
| | | $wb['monitor_services_imap_txt'] = 'IMAP Server:'; |
| | | $wb['monitor_services_mydns_txt'] = 'DNS Server:'; |
| | | $wb['monitor_services_mysql_txt'] = 'MySQL Server:'; |
| | | $wb['monitor_settings_datafromdate_txt'] = 'Daten vom: '; |
| | | $wb['monitor_settings_datetimeformat_txt'] = 'd.m.Y H:i'; |
| | | $wb['monitor_settings_refreshsq_txt'] = 'Aktualisierungsrate:'; |
| | | $wb['monitor_settings_server_txt'] = 'Server'; |
| | | $wb['monitor_title_cpuinfo_txt'] = 'CPU Informationen'; |
| | | $wb['monitor_title_updatestate_txt'] = 'Updatestatus'; |
| | | $wb['monitor_title_mailq_txt'] = 'E-Mail Warteschlange'; |
| | | $wb['monitor_title_raidstate_txt'] = 'RAID Status'; |
| | | $wb['monitor_title_rkhunterlog_txt'] = 'RKHunter Protokoll'; |
| | | $wb['monitor_updates_nosupport_txt'] = 'Ihre Distribution wird für die Überwachung nicht unterstützt'; |
| | | $wb['monitor_title_fail2ban_txt'] = 'Fail2Ban Protokoll'; |
| | | $wb['monitor_nosupportedraid1_txt'] = 'At the moment, we support mdadm or mpt-status for monitoring the RAID.<br>We cant find any of them at your server.<br><br>This means we can not support your RAID yet.'; |
| | | $wb['monitor_serverstate_beancounterok_txt'] = 'The beancounter is ok'; |
| | | $wb['monitor_serverstate_beancounterinfo_txt'] = 'There are vew failure in the beancounter'; |
| | | $wb['monitor_serverstate_beancounterwarning_txt'] = 'There are some failure in the beancounter'; |
| | | $wb['monitor_serverstate_beancountercritical_txt'] = 'There are many failure in the beancounter'; |
| | | $wb['monitor_serverstate_beancountererror_txt'] = 'There are too much failure in the beancounter'; |
| | | $wb['monitor_title_beancounter_txt'] = 'OpenVz VE BeanCounter'; |
| | | $wb['monitor_beancounter_nosupport_txt'] = 'This server is not a OpenVz VE and has no beancounter information'; |
| | | $wb['monitor_title_iptables_txt'] = 'IPTables Regeln'; |
| | | $wb['Show fail2ban-Log'] = 'Fail2ban Protokoll anzeigen'; |
| | | $wb['Show IPTables'] = 'IPTables anzeigen'; |
| | | $wb['Show OpenVz VE BeanCounter'] = 'OpenVz VE BeanCounter anzeigen'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Aktion'; |
| | | $wb['status_txt'] = 'Status'; |
| | | ?> |
| | | |
| | |
| | | $json .= '"}'; |
| | | } |
| | | |
| | | if($type == 'getredirecttype'){ |
| | | $json = '{"redirecttype":"'; |
| | | $sql = "SELECT redirect_type FROM web_domain WHERE domain_id = $web_id"; |
| | | $redirect = $app->db->queryOneRecord($sql); |
| | | $json .= $redirect['redirect_type']; |
| | | unset($redirect); |
| | | $json .= '"}'; |
| | | } |
| | | |
| | | if($type == 'get_ipv4'){ |
| | | $result = array(); |
| | | |
| | |
| | | |
| | | $json = $app->functions->json_encode($result); |
| | | } |
| | | |
| | | if($type == 'getdatabaseusers') { |
| | | $json = '{'; |
| | | |
| | | $sql = "SELECT sys_groupid FROM web_domain WHERE domain_id = $web_id"; |
| | | $group = $app->db->queryOneRecord($sql); |
| | | if($group) { |
| | | $sql = "SELECT database_user_id, database_user FROM web_database_user WHERE sys_groupid = '" . $group['sys_groupid'] . "'"; |
| | | $records = $app->db->queryAllRecords($sql); |
| | | |
| | | foreach($records as $record) { |
| | | $json .= '"'.$record['database_user_id'].'": "'.$record['database_user'].'",'; |
| | | } |
| | | unset($records); |
| | | unset($group); |
| | | } |
| | | |
| | | if(substr($json,-1) == ',') $json = substr($json,0,-1); |
| | | $json .= '}'; |
| | | } |
| | | |
| | | //} |
| | | |
| | |
| | | } |
| | | |
| | | } |
| | | } |
| | | } else { |
| | | // check if client of database parent domain is client of db user! |
| | | $web_group = $app->db->queryOneRecord("SELECT sys_groupid FROM web_domain WHERE domain_id = '".$app->functions->intval($this->dataRecord['parent_domain_id'])."'"); |
| | | if($this->dataRecord['database_user_id']) { |
| | | $group = $app->db->queryOneRecord("SELECT sys_groupid FROM web_database_user WHERE database_user_id = '".$app->functions->intval($this->dataRecord['database_user_id'])."'"); |
| | | if($group['sys_groupid'] != $web_group['sys_groupid']) { |
| | | $app->error($app->tform->wordbook['database_client_differs_txt']); |
| | | } |
| | | } |
| | | if($this->dataRecord['database_ro_user_id']) { |
| | | $group = $app->db->queryOneRecord("SELECT sys_groupid FROM web_database_user WHERE database_user_id = '".$app->functions->intval($this->dataRecord['database_ro_user_id'])."'"); |
| | | if($group['sys_groupid'] != $web_group['sys_groupid']) { |
| | | $app->error($app->tform->wordbook['database_client_differs_txt']); |
| | | } |
| | | } |
| | | } |
| | | |
| | | |
| | | parent::onSubmit(); |
| | |
| | | /* |
| | | * Get the data to connect to the database |
| | | */ |
| | | $dbData = $app->db->queryOneRecord("SELECT server_id FROM web_database WHERE database_id = " . $databaseId); |
| | | $dbData = $app->db->queryOneRecord("SELECT server_id, database_name FROM web_database WHERE database_id = " . $databaseId); |
| | | $serverId = $app->functions->intval($dbData['server_id']); |
| | | if ($serverId == 0){ |
| | | die ("No DB-Server found!"); |
| | |
| | | |
| | | if($global_config['phpmyadmin_url'] != '') { |
| | | $phpmyadmin_url = $global_config['phpmyadmin_url']; |
| | | $phpmyadmin_url = str_replace('[SERVERNAME]',$serverData['server_name'],$phpmyadmin_url); |
| | | $phpmyadmin_url = str_replace(array('[SERVERNAME]', '[DATABASENAME]'),array($serverData['server_name'], $dbData['database_name']),$phpmyadmin_url); |
| | | header('Location:'.$phpmyadmin_url); |
| | | } else { |
| | | isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http'; |
| | |
| | | } |
| | | |
| | | $this->dataRecord['server_id'] = $conf['server_id']; |
| | | $this->oldDataRecord = $app->db->queryOneRecord("SELECT * FROM web_database_user WHERE database_user_id = '".$this->id."'"); |
| | | |
| | | parent::onBeforeUpdate(); |
| | | } |
| | |
| | | $app->db->query("UPDATE web_database_user SET sys_groupid = $client_group_id, sys_perm_group = 'riud' WHERE database_user_id = ".$this->id); |
| | | } |
| | | |
| | | $old_rec = $app->db->queryOneRecord("SELECT * FROM web_database_user WHERE database_user_id = '".$this->id."'"); |
| | | |
| | | $records = $app->db->queryAllRecords("SELECT DISTINCT server_id FROM web_database WHERE database_user_id = '".$app->functions->intval($this->id)."' UNION SELECT DISTINCT server_id FROM web_database WHERE database_ro_user_id = '".$app->functions->intval($this->id)."'"); |
| | | foreach($records as $rec) { |
| | | $new_rec = $this->dataRecord; |
| | | $new_rec['server_id'] = $rec['server_id']; |
| | | $app->db->datalogSave('web_database_user', 'UPDATE', 'database_user_id', $this->id, $old_rec, $new_rec); |
| | | $app->db->datalogSave('web_database_user', 'UPDATE', 'database_user_id', $this->id, $this->oldDataRecord, $new_rec); |
| | | } |
| | | unset($new_rec); |
| | | } |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'SELECT', |
| | | 'default' => 'y', |
| | | 'value' => array('' => 'no_redirect_txt', 'no' => 'no_flag_txt', 'R' => 'R', 'L' => 'L', 'R,L' => 'R,L', 'R=301,L' => 'R=301,L', 'last' => 'last', 'break' => 'break', 'redirect' => 'redirect', 'permanent' => 'permanent') |
| | | 'value' => array('' => 'no_redirect_txt', 'no' => 'no_flag_txt', 'R' => 'R', 'L' => 'L', 'R,L' => 'R,L', 'R=301,L' => 'R=301,L', 'last' => 'last', 'break' => 'break', 'redirect' => 'redirect', 'permanent' => 'permanent', 'proxy' => 'proxy') |
| | | ), |
| | | 'redirect_path' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | |
| | | ), |
| | | 'value' => array('none' => 'none_txt', 'www' => 'www.', '*' => '*.') |
| | | ), |
| | | 'seo_redirect' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'SELECT', |
| | | 'default' => '', |
| | | 'value' => array('' => 'no_redirect_txt', 'non_www_to_www' => 'domain.tld => www.domain.tld', 'www_to_non_www' => 'www.domain.tld => domain.tld', '*_domain_tld_to_domain_tld' => '*.doman.tld => domain.tld', '*_domain_tld_to_www_domain_tld' => '*.domain.tld => www.domain.tld', '*_to_domain_tld' => '* => domain.tld', '*_to_www_domain_tld' => '* => www.domain.tld') |
| | | ), |
| | | 'active' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'CHECKBOX', |
| | |
| | | ) |
| | | ); |
| | | |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin') { |
| | | |
| | | $form["tabs"]['advanced'] = array ( |
| | | 'title' => "Options", |
| | | 'width' => 100, |
| | | 'template' => "templates/web_aliasdomain_advanced.htm", |
| | | 'readonly' => false, |
| | | 'fields' => array ( |
| | | ################################## |
| | | # Begin Datatable fields |
| | | ################################## |
| | | 'proxy_directives' => array ( |
| | | 'datatype' => 'TEXT', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255' |
| | | ), |
| | | ################################## |
| | | # ENDE Datatable fields |
| | | ################################## |
| | | ) |
| | | ); |
| | | |
| | | } |
| | | |
| | | |
| | | ?> |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'SELECT', |
| | | 'default' => '', |
| | | 'value' => array('' => 'no_redirect_txt', 'no' => 'no_flag_txt', 'R' => 'R', 'L' => 'L', 'R,L' => 'R,L', 'R=301,L' => 'R=301,L', 'last' => 'last', 'break' => 'break', 'redirect' => 'redirect', 'permanent' => 'permanent') |
| | | 'value' => array('' => 'no_redirect_txt', 'no' => 'no_flag_txt', 'R' => 'R', 'L' => 'L', 'R,L' => 'R,L', 'R=301,L' => 'R=301,L', 'last' => 'last', 'break' => 'break', 'redirect' => 'redirect', 'permanent' => 'permanent', 'proxy' => 'proxy') |
| | | ), |
| | | 'redirect_path' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'SELECT', |
| | | 'default' => '', |
| | | 'value' => array('' => 'no_redirect_txt', 'non_www_to_www' => 'non_www_to_www_txt', 'www_to_non_www' => 'www_to_non_www_txt') |
| | | 'value' => array('' => 'no_redirect_txt', 'non_www_to_www' => 'domain.tld => www.domain.tld', 'www_to_non_www' => 'www.domain.tld => domain.tld', '*_domain_tld_to_domain_tld' => '*.doman.tld => domain.tld', '*_domain_tld_to_www_domain_tld' => '*.domain.tld => www.domain.tld', '*_to_domain_tld' => '* => domain.tld', '*_to_www_domain_tld' => '* => www.domain.tld') |
| | | ), |
| | | ################################## |
| | | # ENDE Datatable fields |
| | |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255' |
| | | ) |
| | | ), |
| | | 'proxy_directives' => array ( |
| | | 'datatype' => 'TEXT', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255' |
| | | ), |
| | | ################################## |
| | | # ENDE Datatable fields |
| | | ################################## |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'SELECT', |
| | | 'default' => 'y', |
| | | 'value' => array('' => 'no_redirect_txt', 'no' => 'no_flag_txt', 'R' => 'R', 'L' => 'L', 'R,L' => 'R,L', 'R=301,L' => 'R=301,L', 'last' => 'last', 'break' => 'break', 'redirect' => 'redirect', 'permanent' => 'permanent') |
| | | 'value' => array('' => 'no_redirect_txt', 'no' => 'no_flag_txt', 'R' => 'R', 'L' => 'L', 'R,L' => 'R,L', 'R=301,L' => 'R=301,L', 'last' => 'last', 'break' => 'break', 'redirect' => 'redirect', 'permanent' => 'permanent', 'proxy' => 'proxy') |
| | | ), |
| | | 'redirect_path' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | |
| | | ) |
| | | ); |
| | | |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin') { |
| | | |
| | | $form["tabs"]['advanced'] = array ( |
| | | 'title' => "Options", |
| | | 'width' => 100, |
| | | 'template' => "templates/web_subdomain_advanced.htm", |
| | | 'readonly' => false, |
| | | 'fields' => array ( |
| | | ################################## |
| | | # Begin Datatable fields |
| | | ################################## |
| | | 'proxy_directives' => array ( |
| | | 'datatype' => 'TEXT', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255' |
| | | ), |
| | | ################################## |
| | | # ENDE Datatable fields |
| | | ################################## |
| | | ) |
| | | ); |
| | | |
| | | } |
| | | |
| | | |
| | | ?> |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'SELECT', |
| | | 'default' => '', |
| | | 'value' => array('' => 'no_redirect_txt', 'no' => 'no_flag_txt', 'R' => 'R', 'L' => 'L', 'R,L' => 'R,L', 'R=301,L' => 'R=301,L', 'last' => 'last', 'break' => 'break', 'redirect' => 'redirect', 'permanent' => 'permanent') |
| | | 'value' => array('' => 'no_redirect_txt', 'no' => 'no_flag_txt', 'R' => 'R', 'L' => 'L', 'R,L' => 'R,L', 'R=301,L' => 'R=301,L', 'last' => 'last', 'break' => 'break', 'redirect' => 'redirect', 'permanent' => 'permanent', 'proxy' => 'proxy') |
| | | ), |
| | | 'redirect_path' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'SELECT', |
| | | 'default' => '', |
| | | 'value' => array('' => 'no_redirect_txt', 'non_www_to_www' => 'non_www_to_www_txt', 'www_to_non_www' => 'www_to_non_www_txt') |
| | | 'value' => array('' => 'no_redirect_txt', 'non_www_to_www' => 'domain.tld => www.domain.tld', 'www_to_non_www' => 'www.domain.tld => domain.tld', '*_domain_tld_to_domain_tld' => '*.doman.tld => domain.tld', '*_domain_tld_to_www_domain_tld' => '*.domain.tld => www.domain.tld', '*_to_domain_tld' => '* => domain.tld', '*_to_www_domain_tld' => '* => www.domain.tld') |
| | | ), |
| | | ################################## |
| | | # ENDE Datatable fields |
| | |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255' |
| | | ) |
| | | ), |
| | | 'proxy_directives' => array ( |
| | | 'datatype' => 'TEXT', |
| | | 'formtype' => 'TEXT', |
| | | 'default' => '', |
| | | 'value' => '', |
| | | 'width' => '30', |
| | | 'maxlength' => '255' |
| | | ), |
| | | ################################## |
| | | # ENDE Datatable fields |
| | | ################################## |
| | |
| | | $wb['Subdomain'] = 'Subdomain for website'; |
| | | $wb['Aliasdomain'] = 'Aliasdomain for website'; |
| | | $wb['Database'] = 'Databases'; |
| | | $wb['Database Users'] = 'Database Users'; |
| | | $wb['Web Access'] = 'Web Access'; |
| | | $wb['FTP-User'] = 'FTP-Accounts'; |
| | | $wb['Webdav-User'] = 'WebDAV-Users'; |
| | |
| | | $wb['Redirect'] = 'Redirect'; |
| | | $wb['SSL'] = 'SSL'; |
| | | $wb['Sites'] = 'Sites'; |
| | | $wb['Database User'] = 'Database Users'; |
| | | $wb['APS Installer'] = 'APS Installer'; |
| | | $wb['Available packages'] = 'Available packages'; |
| | | $wb['Installed packages'] = 'Installed packages'; |
| | | $wb['Update Packagelist'] = 'Update Packagelist'; |
| | | ?> |
| | |
| | | <?php
|
| | | $wb['overview_txt'] = 'Overview';
|
| | | $wb['administration_txt'] = 'Administration';
|
| | | $wb['available_packages_txt'] = 'Available packages';
|
| | | $wb['installed_packages_txt'] = 'Installed packages';
|
| | | $wb['yes_txt'] = 'Yes';
|
| | | $wb['no_txt'] = 'No';
|
| | | $wb['invalid_id_txt'] = 'No valid ID has been provided.';
|
| | | $wb['details_txt'] = 'Details';
|
| | | $wb['version_txt'] = 'Version';
|
| | | $wb['category_txt'] = 'Category';
|
| | | $wb['homepage_txt'] = 'Homepage';
|
| | | $wb['supported_languages_txt'] = 'Supported languages';
|
| | | $wb['description_txt'] = 'Description';
|
| | | $wb['config_script_txt'] = 'Configuration script';
|
| | | $wb['installed_size_txt'] = 'Size after installation';
|
| | | $wb['license_txt'] = 'License';
|
| | | $wb['screenshots_txt'] = 'Screenshots';
|
| | | $wb['changelog_txt'] = 'Changelog';
|
| | | $wb['server_requirements_txt'] = 'Server requirements';
|
| | | $wb['php_extensions_txt'] = 'PHP extensions';
|
| | | $wb['php_settings_txt'] = 'PHP settings';
|
| | | $wb['supported_php_versions_txt'] = 'Supported PHP versions';
|
| | | $wb['database_txt'] = 'Database';
|
| | | $wb['settings_txt'] = 'Settings';
|
| | | $wb['install_package_txt'] = 'Install this package';
|
| | | $wb['installation_txt'] = 'Installation';
|
| | | $wb['install_location_txt'] = 'Install location';
|
| | | $wb['btn_install'] = 'Install';
|
| | | $wb['btn_cancel'] = 'Cancel';
|
| | | $wb['acceptance_txt'] = 'Acceptance';
|
| | | $wb['acceptance_text_txt'] = 'Yes, i\'ve read the license and agree.';
|
| | | $wb['install_language_txt'] = 'Interface language';
|
| | | $wb['new_database_password_txt'] = 'New database password';
|
| | | $wb['basic_settings_txt'] = 'Basic settings';
|
| | | $wb['package_settings_txt'] = 'Package settings';
|
| | | $wb['error_main_domain'] = 'The domain of the installation path is invalid.';
|
| | | $wb['error_no_main_location'] = 'You have provided no valid installation path.';
|
| | | $wb['error_inv_main_location'] = 'The given install location folder is invalid.';
|
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.';
|
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.';
|
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.';
|
| | | $wb['error_no_value_for'] = 'The field "%s" must not be empty.';
|
| | | $wb['error_short_value_for'] = 'The field "%s" requires a longer input value.';
|
| | | $wb['error_long_value_for'] = 'The field "%s" requires a shorter input value.';
|
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field "%s".';
|
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field "%s".';
|
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field "%s".';
|
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field "%s".';
|
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field "%s".';
|
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.';
|
| | | $wb['installation_task_txt'] = 'Install planned';
|
| | | $wb['installation_error_txt'] = 'Install error';
|
| | | $wb['installation_success_txt'] = 'Installed';
|
| | | $wb['installation_remove_txt'] = 'Removal planned';
|
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.';
|
| | | ?> |
| | | <?php |
| | | $wb['overview_txt'] = 'Overview'; |
| | | $wb['administration_txt'] = 'Administration'; |
| | | $wb['available_packages_txt'] = 'Available packages'; |
| | | $wb['installed_packages_txt'] = 'Installed packages'; |
| | | $wb['yes_txt'] = 'Yes'; |
| | | $wb['no_txt'] = 'No'; |
| | | $wb['invalid_id_txt'] = 'No valid ID has been provided.'; |
| | | $wb['details_txt'] = 'Details'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['category_txt'] = 'Category'; |
| | | $wb['homepage_txt'] = 'Homepage'; |
| | | $wb['supported_languages_txt'] = 'Supported languages'; |
| | | $wb['description_txt'] = 'Description'; |
| | | $wb['config_script_txt'] = 'Configuration script'; |
| | | $wb['installed_size_txt'] = 'Size after installation'; |
| | | $wb['license_txt'] = 'License'; |
| | | $wb['screenshots_txt'] = 'Screenshots'; |
| | | $wb['changelog_txt'] = 'Changelog'; |
| | | $wb['server_requirements_txt'] = 'Server requirements'; |
| | | $wb['php_extensions_txt'] = 'PHP extensions'; |
| | | $wb['php_settings_txt'] = 'PHP settings'; |
| | | $wb['supported_php_versions_txt'] = 'Supported PHP versions'; |
| | | $wb['database_txt'] = 'Database'; |
| | | $wb['settings_txt'] = 'Settings'; |
| | | $wb['install_package_txt'] = 'Install this package'; |
| | | $wb['installation_txt'] = 'Installation'; |
| | | $wb['install_location_txt'] = 'Install location'; |
| | | $wb['acceptance_txt'] = 'Acceptance'; |
| | | $wb['acceptance_text_txt'] = 'Yes, i\'ve read the license and agree.'; |
| | | $wb['install_language_txt'] = 'Interface language'; |
| | | $wb['new_database_password_txt'] = 'New database password'; |
| | | $wb['basic_settings_txt'] = 'Basic settings'; |
| | | $wb['package_settings_txt'] = 'Package settings'; |
| | | $wb['error_main_domain'] = 'The domain of the installation path is invalid.'; |
| | | $wb['error_no_main_location'] = 'You have provided no valid installation path.'; |
| | | $wb['error_inv_main_location'] = 'The given install location folder is invalid.'; |
| | | $wb['error_license_agreement'] = 'In order to continue you have to accept the license agreement.'; |
| | | $wb['error_no_database_pw'] = 'You have provided no valid database password.'; |
| | | $wb['error_short_database_pw'] = 'Please choose a longer database password.'; |
| | | $wb['error_no_value_for'] = 'The field \\"%s\\" must not be empty.'; |
| | | $wb['error_short_value_for'] = 'The field \\"%s\\" requires a longer input value.'; |
| | | $wb['error_long_value_for'] = 'The field \\"%s\\" requires a shorter input value.'; |
| | | $wb['error_inv_value_for'] = 'You have entered an invalid value for the field \\"%s\\".'; |
| | | $wb['error_inv_email_for'] = 'You have entered an invalid mail address for the field \\"%s\\".'; |
| | | $wb['error_inv_domain_for'] = 'You have entered an invalid domain for the field \\"%s\\".'; |
| | | $wb['error_inv_integer_for'] = 'You have entered an invalid number for the field \\"%s\\".'; |
| | | $wb['error_inv_float_for'] = 'You have entered an invalid floating point number for the field \\"%s\\".'; |
| | | $wb['error_used_location'] = 'The installation path already contains a package installation.'; |
| | | $wb['installation_task_txt'] = 'Install planned'; |
| | | $wb['installation_error_txt'] = 'Install error'; |
| | | $wb['installation_success_txt'] = 'Installed'; |
| | | $wb['installation_remove_txt'] = 'Removal planned'; |
| | | $wb['packagelist_update_finished_txt'] = 'APS Packagelist update finished.'; |
| | | $wb['btn_install_txt'] = 'Install'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | ?> |
| | |
| | | <?php
|
| | | $wb['list_head_txt'] = 'Installed packages';
|
| | | $wb['name_txt'] = 'Name';
|
| | | $wb['version_txt'] = 'Version';
|
| | | $wb['customer_txt'] = 'Client';
|
| | | $wb['status_txt'] = 'Status';
|
| | | $wb['install_location_txt'] = 'Install location';
|
| | | $wb['pkg_delete_confirmation'] = 'Do you really want to delete this installation?';
|
| | | $wb['pkg_reinstall_confirmation'] = 'Do you really want to reinstall this package with the same settings?';
|
| | | $wb['filter_txt'] = 'Search';
|
| | | $wb['delete_txt'] = 'Delete';
|
| | | $wb['reinstall_txt'] = 'Reinstall';
|
| | | ?> |
| | | <?php |
| | | $wb['list_head_txt'] = 'Installed packages'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['customer_txt'] = 'Client'; |
| | | $wb['status_txt'] = 'Status'; |
| | | $wb['install_location_txt'] = 'Install location'; |
| | | $wb['pkg_delete_confirmation'] = 'Do you really want to delete this installation?'; |
| | | $wb['pkg_reinstall_confirmation'] = 'Do you really want to reinstall this package with the same settings?'; |
| | | $wb['filter_txt'] = 'Search'; |
| | | $wb['delete_txt'] = 'Delete'; |
| | | $wb['reinstall_txt'] = 'Reinstall'; |
| | | ?> |
| | |
| | | <?php
|
| | | $wb['list_head_txt'] = 'Available packages';
|
| | | $wb['name_txt'] = 'Name';
|
| | | $wb['version_txt'] = 'Version';
|
| | | $wb['category_txt'] = 'Category';
|
| | | $wb['status_txt'] = 'Unlocked';
|
| | | $wb['filter_txt'] = 'Search';
|
| | | ?> |
| | | <?php |
| | | $wb['list_head_txt'] = 'Available packages'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['version_txt'] = 'Version'; |
| | | $wb['category_txt'] = 'Category'; |
| | | $wb['status_txt'] = 'Unlocked'; |
| | | $wb['filter_txt'] = 'Search'; |
| | | ?> |
| | |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | $wb['database_ro_user_txt'] = 'Read-only database user'; |
| | | $wb['optional_txt'] = 'optional'; |
| | | $wb['select_dbuser_txt'] = 'Select database user'; |
| | | $wb['no_dbuser_txt'] = 'None'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['database_password_txt'] = 'Database password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['database_user_error_empty'] = 'Database user is empty.'; |
| | | $wb['database_user_error_unique'] = 'There is already a database user with this name on the server. To get a unique name, e.g. prepend your domain name to the username.'; |
| | | $wb['database_user_error_regex'] = 'Invalid database user name. The username may contain these characters: a-z, A-Z, 0-9 and the underscore. Length: 2 - 64 characters.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user} - too long. The max. database username length incl. prefix is 16 chars.'; |
| | | $wb['btn_save_txt'] = 'Save'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['globalsearch_resultslimit_of_txt'] = 'of'; |
| | | $wb['globalsearch_resultslimit_results_txt'] = 'results'; |
| | | $wb['globalsearch_noresults_text_txt'] = 'No results.'; |
| | | $wb['globalsearch_noresults_limit_txt'] = '0 results'; |
| | | $wb['globalsearch_searchfield_watermark_txt'] = 'Search'; |
| | | $wb['globalsearch_suggestions_text_txt'] = 'Suggestions'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Database User'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new User'; |
| | | $wb['sys_groupid_txt'] = 'Client'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Database user'; |
| | | $wb['database_user_txt'] = 'Database user'; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['domain_txt'] = 'Aliasdomain'; |
| | | ?> |
| | |
| | | $wb['restore_pending_txt'] = 'There is already a pending backup restore job.'; |
| | | $wb['backup_type_mysql'] = 'MySQL Database'; |
| | | $wb['backup_type_web'] = 'Website files'; |
| | | |
| | | ?> |
| | | ?> |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['domain_error_autosub'] = 'There is already a subdomain with these settings.'; |
| | | $wb['available_php_directive_snippets_txt'] = 'Available PHP Directive Snippets:'; |
| | | $wb['available_apache_directive_snippets_txt'] = 'Available Apache Directive Snippets:'; |
| | | $wb['available_nginx_directive_snippets_txt'] = 'Available nginx Directive Snippets:'; |
| | | ?> |
| | |
| | | $wb['last_month_txt'] = 'Last month'; |
| | | $wb['this_year_txt'] = 'This year'; |
| | | $wb['last_year_txt'] = 'Last year'; |
| | | $wb['sum_txt'] = 'Sum'; |
| | | ?> |
| | |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['parent_domain_id_txt'] = 'Parent Website'; |
| | | $wb['web_folder_txt'] = 'Web folder'; |
| | | $wb['web_folder_invalid_txt'] = 'The web folder is invalid, please choose a different one.'; |
| | | $wb['web_folder_unique_txt'] = 'The web folder is already used, please choose a different one.'; |
| | | $wb['backup_interval_txt'] = 'Backup interval'; |
| | | $wb['backup_copies_txt'] = 'Number of backup copies'; |
| | | $wb['ssl_state_txt'] = 'State'; |
| | | $wb['ssl_locality_txt'] = 'Locality'; |
| | | $wb['ssl_organisation_txt'] = 'Organisation'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Organisation Unit'; |
| | | $wb['ssl_country_txt'] = 'Country'; |
| | | $wb['ssl_key_txt'] = 'SSL Key'; |
| | | $wb['ssl_request_txt'] = 'SSL Request'; |
| | | $wb['ssl_cert_txt'] = 'SSL Certificate'; |
| | | $wb['ssl_bundle_txt'] = 'SSL Bundle'; |
| | | $wb['ssl_action_txt'] = 'SSL Action'; |
| | | $wb['ssl_domain_txt'] = 'SSL Domain'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['host_txt'] = 'Hostname'; |
| | | $wb['web_folder_error_regex'] = 'Invalid folder entered. Please do not enter a slash.'; |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['redirect_type_txt'] = 'Redirect Type'; |
| | | $wb['redirect_path_txt'] = 'Redirect Path'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['document_root_txt'] = 'Documentroot'; |
| | | $wb['system_user_txt'] = 'Linux User'; |
| | | $wb['system_group_txt'] = 'Linux Group'; |
| | | $wb['ip_address_txt'] = 'IPv4-Address'; |
| | | $wb['ipv6_address_txt'] = 'IPv6-Address'; |
| | | $wb['vhost_type_txt'] = 'VHost Type'; |
| | | $wb['hd_quota_txt'] = 'Harddisk Quota'; |
| | | $wb['traffic_quota_txt'] = 'Traffic Quota'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Own Error-Documents'; |
| | | $wb['subdomain_txt'] = 'Auto-Subdomain'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['limit_web_domain_txt'] = 'The max. number of web domains for your account is reached.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'The max. number of aliasdomains for your account is reached.'; |
| | | $wb['limit_web_subdomain_txt'] = 'The max. number of web subdomains for your account is reached.'; |
| | | $wb['apache_directives_txt'] = 'Apache Directives'; |
| | | $wb['domain_error_empty'] = 'Domain is empty.'; |
| | | $wb['domain_error_unique'] = 'There is already a website or sub / aliasdomain with this domain name.'; |
| | | $wb['domain_error_regex'] = 'Domain name invalid.'; |
| | | $wb['domain_error_wildcard'] = 'Wildcard subdomains are not allowed.'; |
| | | $wb['hd_quota_error_empty'] = 'Harddisk quota is 0 or empty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Traffic quota is empty.'; |
| | | $wb['error_ssl_state_empty'] = 'SSL State is empty.'; |
| | | $wb['error_ssl_locality_empty'] = 'SSL Locality is empty.'; |
| | | $wb['error_ssl_organisation_empty'] = 'SSL Organisation is empty.'; |
| | | $wb['error_ssl_organisation_unit_empty'] = 'SSL Organisation Unit is empty.'; |
| | | $wb['error_ssl_country_empty'] = 'SSL Country is empty.'; |
| | | $wb['error_ssl_cert_empty'] = 'SSL Certificate field is empty'; |
| | | $wb['client_group_id_txt'] = 'Client'; |
| | | $wb['stats_password_txt'] = 'Webstatistics password'; |
| | | $wb['allow_override_txt'] = 'Apache AllowOverride'; |
| | | $wb['limit_web_quota_free_txt'] = 'Max. available Harddisk Quota'; |
| | | $wb['ssl_state_error_regex'] = 'Invalid SSL State. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_locality_error_regex'] = 'Invalid SSL Locality. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organisation_error_regex'] = 'Invalid SSL Organisation. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_organistaion_unit_error_regex'] = 'Invalid SSL Organisation Unit. Valid characters are: a-z, 0-9 and .,-_'; |
| | | $wb['ssl_country_error_regex'] = 'Invalid SSL Country. Valid characters are: A-Z'; |
| | | $wb['limit_traffic_quota_free_txt'] = 'Max. available Traffic Quota'; |
| | | $wb['redirect_error_regex'] = 'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'; |
| | | $wb['php_open_basedir_txt'] = 'PHP open_basedir'; |
| | | $wb['traffic_quota_exceeded_txt'] = 'Traffic quota exceeded'; |
| | | $wb['ruby_txt'] = 'Ruby'; |
| | | $wb['stats_user_txt'] = 'Webstatistics username'; |
| | | $wb['stats_type_txt'] = 'Webstatistics program'; |
| | | $wb['custom_php_ini_txt'] = 'Custom php.ini settings'; |
| | | $wb['none_txt'] = 'None'; |
| | | $wb['disabled_txt'] = 'Disabled'; |
| | | $wb['no_redirect_txt'] = 'No redirect'; |
| | | $wb['no_flag_txt'] = 'No flag'; |
| | | $wb['save_certificate_txt'] = 'Save certificate'; |
| | | $wb['create_certificate_txt'] = 'Create certificate'; |
| | | $wb['delete_certificate_txt'] = 'Delete certificate'; |
| | | $wb['nginx_directives_txt'] = 'nginx Directives'; |
| | | $wb['seo_redirect_txt'] = 'SEO Redirect'; |
| | | $wb['non_www_to_www_txt'] = 'Non-www -> www'; |
| | | $wb['www_to_non_www_txt'] = 'www -> non-www'; |
| | | $wb['php_fpm_use_socket_txt'] = 'Use Socket For PHP-FPM'; |
| | | $wb['error_no_sni_txt'] = 'SNI for SSL is not activated on this server. You can enable only one SSL certificate on each IP address.'; |
| | | $wb['python_txt'] = 'Python'; |
| | | $wb['perl_txt'] = 'Perl'; |
| | | $wb['pm_max_children_txt'] = 'PHP-FPM pm.max_children'; |
| | | $wb['pm_start_servers_txt'] = 'PHP-FPM pm.start_servers'; |
| | | $wb['pm_min_spare_servers_txt'] = 'PHP-FPM pm.min_spare_servers'; |
| | | $wb['pm_max_spare_servers_txt'] = 'PHP-FPM pm.max_spare_servers'; |
| | | $wb['error_php_fpm_pm_settings_txt'] = 'Values of PHP-FPM pm settings must be as follows: pm.max_children >= pm.max_spare_servers >= pm.start_servers >= pm.min_spare_servers > 0'; |
| | | $wb['pm_max_children_error_regex'] = 'PHP-FPM pm.max_children must be a positive integer value.'; |
| | | $wb['pm_start_servers_error_regex'] = 'PHP-FPM pm.start_servers must be a positive integer value.'; |
| | | $wb['pm_min_spare_servers_error_regex'] = 'PHP-FPM pm.min_spare_servers must be a positive integer value.'; |
| | | $wb['pm_max_spare_servers_error_regex'] = 'PHP-FPM pm.max_spare_servers must be a positive integer value.'; |
| | | $wb['hd_quota_error_regex'] = 'Harddisk quota is invalid.'; |
| | | $wb['traffic_quota_error_regex'] = 'Traffic quota is invalid.'; |
| | | $wb['fastcgi_php_version_txt'] = 'PHP Version'; |
| | | $wb['pm_txt'] = 'PHP-FPM Process Manager'; |
| | | $wb['pm_process_idle_timeout_txt'] = 'PHP-FPM pm.process_idle_timeout'; |
| | | $wb['pm_max_requests_txt'] = 'PHP-FPM pm.max_requests'; |
| | | $wb['pm_process_idle_timeout_error_regex'] = 'PHP-FPM pm.process_idle_timeout must be a positive integer value.'; |
| | | $wb['pm_max_requests_error_regex'] = 'PHP-FPM pm.max_requests must be an integer value >= 0.'; |
| | | $wb['pm_ondemand_hint_txt'] = 'Please note that you must have PHP version >= 5.3.9 in order to use the ondemand process manager. If you select ondemand for an older PHP version, PHP will not start anymore!'; |
| | | $wb['generate_password_txt'] = 'Generate Password'; |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Subdomains'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Website'; |
| | | $wb['domain_txt'] = 'Subdomain'; |
| | | $wb['add_new_record_txt'] = 'Add new subdomain'; |
| | | ?> |
| | |
| | | $wb['Webdav-User'] = 'Webdav User'; |
| | | $wb['Webdav'] = 'Webdav'; |
| | | $wb['Website quota (Harddisk)'] = 'Уебсайт квота (Harddisk)'; |
| | | $wb['Database Users'] = 'Database Users'; |
| | | $wb['Web Access'] = 'Web Access'; |
| | | $wb['Folder'] = 'Protected Folders'; |
| | | $wb['Folder users'] = 'Protected Folder Users'; |
| | | $wb['Command Line'] = 'Command Line'; |
| | | $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['install_package_txt'] = 'Install this package'; |
| | | $wb['installation_txt'] = 'Installation'; |
| | | $wb['install_location_txt'] = 'Install location'; |
| | | $wb['btn_install'] = 'Install'; |
| | | $wb['btn_cancel'] = 'Cancel'; |
| | | $wb['acceptance_txt'] = 'Acceptance'; |
| | | $wb['acceptance_text_txt'] = 'Yes, i\'ve read the license and agree.'; |
| | | $wb['install_language_txt'] = 'Interface language'; |
| | |
| | | $wb['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'; |
| | | ?> |
interface/web/sites/lib/lang/bg_database.lng
interface/web/sites/lib/lang/bg_database_user.lng
interface/web/sites/lib/lang/bg_database_user_admin_list.lng
interface/web/sites/lib/lang/bg_database_user_list.lng
interface/web/sites/lib/lang/bg_web_aliasdomain.lng
interface/web/sites/lib/lang/bg_web_domain.lng
interface/web/sites/lib/lang/bg_web_sites_stats_list.lng
interface/web/sites/lib/lang/bg_web_subdomain.lng
interface/web/sites/lib/lang/bg_web_vhost_subdomain.lng
interface/web/sites/lib/lang/bg_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/br.lng
interface/web/sites/lib/lang/br_aps.lng
interface/web/sites/lib/lang/br_aps_instances_list.lng
interface/web/sites/lib/lang/br_aps_packages_list.lng
interface/web/sites/lib/lang/br_database.lng
interface/web/sites/lib/lang/br_database_user.lng
interface/web/sites/lib/lang/br_database_user_admin_list.lng
interface/web/sites/lib/lang/br_database_user_list.lng
interface/web/sites/lib/lang/br_web_aliasdomain.lng
interface/web/sites/lib/lang/br_web_backup_list.lng
interface/web/sites/lib/lang/br_web_domain.lng
interface/web/sites/lib/lang/br_web_sites_stats_list.lng
interface/web/sites/lib/lang/br_web_subdomain.lng
interface/web/sites/lib/lang/br_web_vhost_subdomain.lng
interface/web/sites/lib/lang/br_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/cz.lng
interface/web/sites/lib/lang/cz_aps.lng
interface/web/sites/lib/lang/cz_aps_instances_list.lng
interface/web/sites/lib/lang/cz_aps_packages_list.lng
interface/web/sites/lib/lang/cz_database.lng
interface/web/sites/lib/lang/cz_database_admin_list.lng
interface/web/sites/lib/lang/cz_database_user.lng
interface/web/sites/lib/lang/cz_database_user_admin_list.lng
interface/web/sites/lib/lang/cz_database_user_list.lng
interface/web/sites/lib/lang/cz_ftp_user.lng
interface/web/sites/lib/lang/cz_shell_user.lng
interface/web/sites/lib/lang/cz_web_aliasdomain.lng
interface/web/sites/lib/lang/cz_web_backup_list.lng
interface/web/sites/lib/lang/cz_web_domain.lng
interface/web/sites/lib/lang/cz_web_folder.lng
interface/web/sites/lib/lang/cz_web_folder_list.lng
interface/web/sites/lib/lang/cz_web_folder_user.lng
interface/web/sites/lib/lang/cz_web_folder_user_list.lng
interface/web/sites/lib/lang/cz_web_sites_stats_list.lng
interface/web/sites/lib/lang/cz_web_subdomain.lng
interface/web/sites/lib/lang/cz_web_vhost_subdomain.lng
interface/web/sites/lib/lang/cz_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/cz_webdav_user.lng
interface/web/sites/lib/lang/cz_webdav_user_list.lng
interface/web/sites/lib/lang/de.lng
interface/web/sites/lib/lang/de_aps.lng
interface/web/sites/lib/lang/de_aps_instances_list.lng
interface/web/sites/lib/lang/de_aps_packages_list.lng
interface/web/sites/lib/lang/de_cron.lng
interface/web/sites/lib/lang/de_cron_list.lng
interface/web/sites/lib/lang/de_database.lng
interface/web/sites/lib/lang/de_database_admin_list.lng
interface/web/sites/lib/lang/de_database_list.lng
interface/web/sites/lib/lang/de_database_user.lng
interface/web/sites/lib/lang/de_database_user_admin_list.lng
interface/web/sites/lib/lang/de_database_user_list.lng
interface/web/sites/lib/lang/de_ftp_user.lng
interface/web/sites/lib/lang/de_ftp_user_list.lng
interface/web/sites/lib/lang/de_shell_user.lng
interface/web/sites/lib/lang/de_shell_user_list.lng
interface/web/sites/lib/lang/de_user_quota_stats_list.lng
interface/web/sites/lib/lang/de_web_aliasdomain_list.lng
interface/web/sites/lib/lang/de_web_backup_list.lng
interface/web/sites/lib/lang/de_web_domain.lng
interface/web/sites/lib/lang/de_web_domain_admin_list.lng
interface/web/sites/lib/lang/de_web_domain_list.lng
interface/web/sites/lib/lang/de_web_folder.lng
interface/web/sites/lib/lang/de_web_folder_list.lng
interface/web/sites/lib/lang/de_web_folder_user.lng
interface/web/sites/lib/lang/de_web_folder_user_list.lng
interface/web/sites/lib/lang/de_web_sites_stats_list.lng
interface/web/sites/lib/lang/de_web_subdomain.lng
interface/web/sites/lib/lang/de_web_subdomain_list.lng
interface/web/sites/lib/lang/de_web_vhost_subdomain.lng
interface/web/sites/lib/lang/de_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/de_webdav_user.lng
interface/web/sites/lib/lang/de_webdav_user_list.lng
interface/web/sites/lib/lang/el.lng
interface/web/sites/lib/lang/el_aps.lng
interface/web/sites/lib/lang/el_aps_instances_list.lng
interface/web/sites/lib/lang/el_aps_packages_list.lng
interface/web/sites/lib/lang/el_database.lng
interface/web/sites/lib/lang/el_database_user.lng
interface/web/sites/lib/lang/el_database_user_admin_list.lng
interface/web/sites/lib/lang/el_database_user_list.lng
interface/web/sites/lib/lang/el_web_aliasdomain.lng
interface/web/sites/lib/lang/el_web_backup_list.lng
interface/web/sites/lib/lang/el_web_domain.lng
interface/web/sites/lib/lang/el_web_sites_stats_list.lng
interface/web/sites/lib/lang/el_web_subdomain.lng
interface/web/sites/lib/lang/el_web_vhost_subdomain.lng
interface/web/sites/lib/lang/el_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/en_database.lng
interface/web/sites/lib/lang/en_web_domain.lng
interface/web/sites/lib/lang/en_web_subdomain.lng
interface/web/sites/lib/lang/en_web_vhost_subdomain.lng
interface/web/sites/lib/lang/es.lng
interface/web/sites/lib/lang/es_aps.lng
interface/web/sites/lib/lang/es_aps_instances_list.lng
interface/web/sites/lib/lang/es_aps_packages_list.lng
interface/web/sites/lib/lang/es_database.lng
interface/web/sites/lib/lang/es_database_user.lng
interface/web/sites/lib/lang/es_database_user_admin_list.lng
interface/web/sites/lib/lang/es_database_user_list.lng
interface/web/sites/lib/lang/es_web_aliasdomain.lng
interface/web/sites/lib/lang/es_web_backup_list.lng
interface/web/sites/lib/lang/es_web_domain.lng
interface/web/sites/lib/lang/es_web_sites_stats_list.lng
interface/web/sites/lib/lang/es_web_subdomain.lng
interface/web/sites/lib/lang/es_web_vhost_subdomain.lng
interface/web/sites/lib/lang/es_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/fi.lng
interface/web/sites/lib/lang/fi_aps.lng
interface/web/sites/lib/lang/fi_aps_instances_list.lng
interface/web/sites/lib/lang/fi_aps_packages_list.lng
interface/web/sites/lib/lang/fi_database.lng
interface/web/sites/lib/lang/fi_database_user.lng
interface/web/sites/lib/lang/fi_database_user_admin_list.lng
interface/web/sites/lib/lang/fi_database_user_list.lng
interface/web/sites/lib/lang/fi_web_aliasdomain.lng
interface/web/sites/lib/lang/fi_web_backup_list.lng
interface/web/sites/lib/lang/fi_web_domain.lng
interface/web/sites/lib/lang/fi_web_sites_stats_list.lng
interface/web/sites/lib/lang/fi_web_subdomain.lng
interface/web/sites/lib/lang/fi_web_vhost_subdomain.lng
interface/web/sites/lib/lang/fi_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/hr.lng
interface/web/sites/lib/lang/hr_aps.lng
interface/web/sites/lib/lang/hr_aps_instances_list.lng
interface/web/sites/lib/lang/hr_aps_packages_list.lng
interface/web/sites/lib/lang/hr_database.lng
interface/web/sites/lib/lang/hr_database_user.lng
interface/web/sites/lib/lang/hr_database_user_admin_list.lng
interface/web/sites/lib/lang/hr_database_user_list.lng
interface/web/sites/lib/lang/hr_web_aliasdomain.lng
interface/web/sites/lib/lang/hr_web_backup_list.lng
interface/web/sites/lib/lang/hr_web_domain.lng
interface/web/sites/lib/lang/hr_web_sites_stats_list.lng
interface/web/sites/lib/lang/hr_web_subdomain.lng
interface/web/sites/lib/lang/hr_web_vhost_subdomain.lng
interface/web/sites/lib/lang/hr_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/hu.lng
interface/web/sites/lib/lang/hu_aps.lng
interface/web/sites/lib/lang/hu_aps_instances_list.lng
interface/web/sites/lib/lang/hu_aps_packages_list.lng
interface/web/sites/lib/lang/hu_database.lng
interface/web/sites/lib/lang/hu_database_user.lng
interface/web/sites/lib/lang/hu_database_user_admin_list.lng
interface/web/sites/lib/lang/hu_database_user_list.lng
interface/web/sites/lib/lang/hu_web_aliasdomain.lng
interface/web/sites/lib/lang/hu_web_backup_list.lng
interface/web/sites/lib/lang/hu_web_domain.lng
interface/web/sites/lib/lang/hu_web_sites_stats_list.lng
interface/web/sites/lib/lang/hu_web_subdomain.lng
interface/web/sites/lib/lang/hu_web_vhost_subdomain.lng
interface/web/sites/lib/lang/hu_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/id.lng
interface/web/sites/lib/lang/id_aps.lng
interface/web/sites/lib/lang/id_aps_instances_list.lng
interface/web/sites/lib/lang/id_aps_packages_list.lng
interface/web/sites/lib/lang/id_database.lng
interface/web/sites/lib/lang/id_database_user.lng
interface/web/sites/lib/lang/id_database_user_admin_list.lng
interface/web/sites/lib/lang/id_database_user_list.lng
interface/web/sites/lib/lang/id_web_aliasdomain.lng
interface/web/sites/lib/lang/id_web_backup_list.lng
interface/web/sites/lib/lang/id_web_domain.lng
interface/web/sites/lib/lang/id_web_sites_stats_list.lng
interface/web/sites/lib/lang/id_web_subdomain.lng
interface/web/sites/lib/lang/id_web_vhost_subdomain.lng
interface/web/sites/lib/lang/id_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/it.lng
interface/web/sites/lib/lang/it_aps.lng
interface/web/sites/lib/lang/it_aps_instances_list.lng
interface/web/sites/lib/lang/it_aps_packages_list.lng
interface/web/sites/lib/lang/it_database.lng
interface/web/sites/lib/lang/it_database_user.lng
interface/web/sites/lib/lang/it_database_user_admin_list.lng
interface/web/sites/lib/lang/it_database_user_list.lng
interface/web/sites/lib/lang/it_web_aliasdomain.lng
interface/web/sites/lib/lang/it_web_backup_list.lng
interface/web/sites/lib/lang/it_web_domain.lng
interface/web/sites/lib/lang/it_web_sites_stats_list.lng
interface/web/sites/lib/lang/it_web_subdomain.lng
interface/web/sites/lib/lang/it_web_vhost_subdomain.lng
interface/web/sites/lib/lang/it_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/ja.lng
interface/web/sites/lib/lang/ja_aps.lng
interface/web/sites/lib/lang/ja_aps_instances_list.lng
interface/web/sites/lib/lang/ja_aps_packages_list.lng
interface/web/sites/lib/lang/ja_database.lng
interface/web/sites/lib/lang/ja_database_user.lng
interface/web/sites/lib/lang/ja_database_user_admin_list.lng
interface/web/sites/lib/lang/ja_database_user_list.lng
interface/web/sites/lib/lang/ja_web_aliasdomain.lng
interface/web/sites/lib/lang/ja_web_backup_list.lng
interface/web/sites/lib/lang/ja_web_domain.lng
interface/web/sites/lib/lang/ja_web_sites_stats_list.lng
interface/web/sites/lib/lang/ja_web_subdomain.lng
interface/web/sites/lib/lang/ja_web_vhost_subdomain.lng
interface/web/sites/lib/lang/ja_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/nl.lng
interface/web/sites/lib/lang/nl_aps.lng
interface/web/sites/lib/lang/nl_aps_instances_list.lng
interface/web/sites/lib/lang/nl_aps_packages_list.lng
interface/web/sites/lib/lang/nl_database.lng
interface/web/sites/lib/lang/nl_database_user.lng
interface/web/sites/lib/lang/nl_database_user_admin_list.lng
interface/web/sites/lib/lang/nl_database_user_list.lng
interface/web/sites/lib/lang/nl_web_aliasdomain.lng
interface/web/sites/lib/lang/nl_web_backup_list.lng
interface/web/sites/lib/lang/nl_web_domain.lng
interface/web/sites/lib/lang/nl_web_sites_stats_list.lng
interface/web/sites/lib/lang/nl_web_subdomain.lng
interface/web/sites/lib/lang/nl_web_vhost_subdomain.lng
interface/web/sites/lib/lang/nl_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/pl.lng
interface/web/sites/lib/lang/pl_aps.lng
interface/web/sites/lib/lang/pl_aps_instances_list.lng
interface/web/sites/lib/lang/pl_aps_packages_list.lng
interface/web/sites/lib/lang/pl_database.lng
interface/web/sites/lib/lang/pl_database_user.lng
interface/web/sites/lib/lang/pl_database_user_admin_list.lng
interface/web/sites/lib/lang/pl_database_user_list.lng
interface/web/sites/lib/lang/pl_web_aliasdomain.lng
interface/web/sites/lib/lang/pl_web_backup_list.lng
interface/web/sites/lib/lang/pl_web_domain.lng
interface/web/sites/lib/lang/pl_web_sites_stats_list.lng
interface/web/sites/lib/lang/pl_web_subdomain.lng
interface/web/sites/lib/lang/pl_web_vhost_subdomain.lng
interface/web/sites/lib/lang/pl_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/pt.lng
interface/web/sites/lib/lang/pt_aps.lng
interface/web/sites/lib/lang/pt_aps_instances_list.lng
interface/web/sites/lib/lang/pt_aps_packages_list.lng
interface/web/sites/lib/lang/pt_database.lng
interface/web/sites/lib/lang/pt_database_user.lng
interface/web/sites/lib/lang/pt_database_user_admin_list.lng
interface/web/sites/lib/lang/pt_database_user_list.lng
interface/web/sites/lib/lang/pt_web_aliasdomain.lng
interface/web/sites/lib/lang/pt_web_backup_list.lng
interface/web/sites/lib/lang/pt_web_domain.lng
interface/web/sites/lib/lang/pt_web_sites_stats_list.lng
interface/web/sites/lib/lang/pt_web_subdomain.lng
interface/web/sites/lib/lang/pt_web_vhost_subdomain.lng
interface/web/sites/lib/lang/pt_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/ro.lng
interface/web/sites/lib/lang/ro_aps.lng
interface/web/sites/lib/lang/ro_aps_instances_list.lng
interface/web/sites/lib/lang/ro_aps_packages_list.lng
interface/web/sites/lib/lang/ro_database.lng
interface/web/sites/lib/lang/ro_database_user.lng
interface/web/sites/lib/lang/ro_database_user_admin_list.lng
interface/web/sites/lib/lang/ro_database_user_list.lng
interface/web/sites/lib/lang/ro_web_aliasdomain.lng
interface/web/sites/lib/lang/ro_web_backup_list.lng
interface/web/sites/lib/lang/ro_web_domain.lng
interface/web/sites/lib/lang/ro_web_sites_stats_list.lng
interface/web/sites/lib/lang/ro_web_subdomain.lng
interface/web/sites/lib/lang/ro_web_vhost_subdomain.lng
interface/web/sites/lib/lang/ro_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/ru.lng
interface/web/sites/lib/lang/ru_aps.lng
interface/web/sites/lib/lang/ru_aps_instances_list.lng
interface/web/sites/lib/lang/ru_aps_packages_list.lng
interface/web/sites/lib/lang/ru_database.lng
interface/web/sites/lib/lang/ru_database_user.lng
interface/web/sites/lib/lang/ru_database_user_admin_list.lng
interface/web/sites/lib/lang/ru_database_user_list.lng
interface/web/sites/lib/lang/ru_web_aliasdomain.lng
interface/web/sites/lib/lang/ru_web_backup_list.lng
interface/web/sites/lib/lang/ru_web_domain.lng
interface/web/sites/lib/lang/ru_web_sites_stats_list.lng
interface/web/sites/lib/lang/ru_web_subdomain.lng
interface/web/sites/lib/lang/ru_web_vhost_subdomain.lng
interface/web/sites/lib/lang/ru_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/se.lng
interface/web/sites/lib/lang/se_aps.lng
interface/web/sites/lib/lang/se_aps_instances_list.lng
interface/web/sites/lib/lang/se_aps_packages_list.lng
interface/web/sites/lib/lang/se_database.lng
interface/web/sites/lib/lang/se_database_user.lng
interface/web/sites/lib/lang/se_database_user_admin_list.lng
interface/web/sites/lib/lang/se_database_user_list.lng
interface/web/sites/lib/lang/se_web_aliasdomain.lng
interface/web/sites/lib/lang/se_web_backup_list.lng
interface/web/sites/lib/lang/se_web_domain.lng
interface/web/sites/lib/lang/se_web_sites_stats_list.lng
interface/web/sites/lib/lang/se_web_subdomain.lng
interface/web/sites/lib/lang/se_web_vhost_subdomain.lng
interface/web/sites/lib/lang/se_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/sk.lng
interface/web/sites/lib/lang/sk_aps.lng
interface/web/sites/lib/lang/sk_aps_instances_list.lng
interface/web/sites/lib/lang/sk_aps_packages_list.lng
interface/web/sites/lib/lang/sk_database.lng
interface/web/sites/lib/lang/sk_database_user.lng
interface/web/sites/lib/lang/sk_database_user_admin_list.lng
interface/web/sites/lib/lang/sk_database_user_list.lng
interface/web/sites/lib/lang/sk_web_aliasdomain.lng
interface/web/sites/lib/lang/sk_web_backup_list.lng
interface/web/sites/lib/lang/sk_web_domain.lng
interface/web/sites/lib/lang/sk_web_sites_stats_list.lng
interface/web/sites/lib/lang/sk_web_subdomain.lng
interface/web/sites/lib/lang/sk_web_vhost_subdomain.lng
interface/web/sites/lib/lang/sk_web_vhost_subdomain_list.lng
interface/web/sites/lib/lang/tr.lng
interface/web/sites/lib/lang/tr_aps.lng
interface/web/sites/lib/lang/tr_aps_instances_list.lng
interface/web/sites/lib/lang/tr_aps_packages_list.lng
interface/web/sites/lib/lang/tr_database.lng
interface/web/sites/lib/lang/tr_database_user.lng
interface/web/sites/lib/lang/tr_database_user_admin_list.lng
interface/web/sites/lib/lang/tr_database_user_list.lng
interface/web/sites/lib/lang/tr_web_aliasdomain.lng
interface/web/sites/lib/lang/tr_web_backup_list.lng
interface/web/sites/lib/lang/tr_web_domain.lng
interface/web/sites/lib/lang/tr_web_sites_stats_list.lng
interface/web/sites/lib/lang/tr_web_subdomain.lng
interface/web/sites/lib/lang/tr_web_vhost_subdomain.lng
interface/web/sites/lib/lang/tr_web_vhost_subdomain_list.lng
interface/web/sites/templates/database_edit.htm
interface/web/sites/templates/database_list.htm
interface/web/sites/templates/database_user_list.htm
interface/web/sites/templates/ftp_user_list.htm
interface/web/sites/templates/shell_user_list.htm
interface/web/sites/templates/web_aliasdomain_advanced.htm
interface/web/sites/templates/web_aliasdomain_edit.htm
interface/web/sites/templates/web_aliasdomain_list.htm
interface/web/sites/templates/web_domain_advanced.htm
interface/web/sites/templates/web_domain_edit.htm
interface/web/sites/templates/web_domain_list.htm
interface/web/sites/templates/web_domain_redirect.htm
interface/web/sites/templates/web_folder_list.htm
interface/web/sites/templates/web_folder_user_list.htm
interface/web/sites/templates/web_subdomain_advanced.htm
interface/web/sites/templates/web_subdomain_edit.htm
interface/web/sites/templates/web_subdomain_list.htm
interface/web/sites/templates/web_vhost_subdomain_advanced.htm
interface/web/sites/templates/web_vhost_subdomain_edit.htm
interface/web/sites/templates/web_vhost_subdomain_list.htm
interface/web/sites/templates/web_vhost_subdomain_redirect.htm
interface/web/sites/templates/webdav_user_list.htm
interface/web/sites/web_aliasdomain_edit.php
interface/web/sites/web_domain_edit.php
interface/web/sites/web_subdomain_edit.php
interface/web/sites/web_vhost_subdomain_edit.php
interface/web/strengthmeter/lib/lang/de_strengthmeter.lng
interface/web/themes/default/css/jquery-ui-1.8.16.custom.css
interface/web/themes/default/css/styles.css
interface/web/tools/lib/lang/ar_index.lng
interface/web/tools/lib/lang/ar_interface.lng
interface/web/tools/lib/lang/ar_tpl_default.lng
interface/web/tools/lib/lang/bg_tpl_default.lng
interface/web/tools/lib/lang/br_index.lng
interface/web/tools/lib/lang/br_interface.lng
interface/web/tools/lib/lang/br_tpl_default.lng
interface/web/tools/lib/lang/cz.lng
interface/web/tools/lib/lang/cz_import_ispconfig.lng
interface/web/tools/lib/lang/cz_index.lng
interface/web/tools/lib/lang/cz_interface.lng
interface/web/tools/lib/lang/cz_resync.lng
interface/web/tools/lib/lang/cz_tpl_default.lng
interface/web/tools/lib/lang/cz_usersettings.lng
interface/web/tools/lib/lang/de.lng
interface/web/tools/lib/lang/de_import_ispconfig.lng
interface/web/tools/lib/lang/de_index.lng
interface/web/tools/lib/lang/de_interface.lng
interface/web/tools/lib/lang/de_resync.lng
interface/web/tools/lib/lang/de_tpl_default.lng
interface/web/tools/lib/lang/de_usersettings.lng
interface/web/tools/lib/lang/el_index.lng
interface/web/tools/lib/lang/el_interface.lng
interface/web/tools/lib/lang/el_tpl_default.lng
interface/web/tools/lib/lang/es_index.lng
interface/web/tools/lib/lang/es_interface.lng
interface/web/tools/lib/lang/es_tpl_default.lng
interface/web/tools/lib/lang/fi_index.lng
interface/web/tools/lib/lang/fi_interface.lng
interface/web/tools/lib/lang/fi_tpl_default.lng
interface/web/tools/lib/lang/hr_index.lng
interface/web/tools/lib/lang/hr_interface.lng
interface/web/tools/lib/lang/hr_tpl_default.lng
interface/web/tools/lib/lang/hu_index.lng
interface/web/tools/lib/lang/hu_interface.lng
interface/web/tools/lib/lang/hu_tpl_default.lng
interface/web/tools/lib/lang/id_index.lng
interface/web/tools/lib/lang/id_interface.lng
interface/web/tools/lib/lang/id_tpl_default.lng
interface/web/tools/lib/lang/it_index.lng
interface/web/tools/lib/lang/it_interface.lng
interface/web/tools/lib/lang/it_tpl_default.lng
interface/web/tools/lib/lang/ja_index.lng
interface/web/tools/lib/lang/ja_interface.lng
interface/web/tools/lib/lang/ja_tpl_default.lng
interface/web/tools/lib/lang/nl_index.lng
interface/web/tools/lib/lang/nl_interface.lng
interface/web/tools/lib/lang/nl_tpl_default.lng
interface/web/tools/lib/lang/pl_index.lng
interface/web/tools/lib/lang/pl_interface.lng
interface/web/tools/lib/lang/pl_tpl_default.lng
interface/web/tools/lib/lang/pt_index.lng
interface/web/tools/lib/lang/pt_interface.lng
interface/web/tools/lib/lang/pt_tpl_default.lng
interface/web/tools/lib/lang/ro_index.lng
interface/web/tools/lib/lang/ro_interface.lng
interface/web/tools/lib/lang/ro_tpl_default.lng
interface/web/tools/lib/lang/ru_index.lng
interface/web/tools/lib/lang/ru_interface.lng
interface/web/tools/lib/lang/ru_tpl_default.lng
interface/web/tools/lib/lang/se_index.lng
interface/web/tools/lib/lang/se_interface.lng
interface/web/tools/lib/lang/se_tpl_default.lng
interface/web/tools/lib/lang/sk_index.lng
interface/web/tools/lib/lang/sk_interface.lng
interface/web/tools/lib/lang/sk_tpl_default.lng
interface/web/tools/lib/lang/tr_index.lng
interface/web/tools/lib/lang/tr_interface.lng
interface/web/tools/lib/lang/tr_tpl_default.lng
interface/web/vm/lib/lang/cz_openvz_ostemplate.lng
interface/web/vm/lib/lang/cz_openvz_ostemplate_list.lng
interface/web/vm/lib/lang/cz_openvz_template.lng
interface/web/vm/lib/lang/cz_openvz_template_list.lng
interface/web/vm/lib/lang/cz_openvz_vm.lng
interface/web/vm/lib/lang/cz_openvz_vm_list.lng
interface/web/vm/lib/lang/de.lng
interface/web/vm/lib/lang/de_openvz_action.lng
interface/web/vm/lib/lang/de_openvz_ip.lng
interface/web/vm/lib/lang/de_openvz_ip_list.lng
interface/web/vm/lib/lang/de_openvz_ostemplate.lng
interface/web/vm/lib/lang/de_openvz_ostemplate_list.lng
interface/web/vm/lib/lang/de_openvz_template.lng
interface/web/vm/lib/lang/de_openvz_template_list.lng
interface/web/vm/lib/lang/de_openvz_vm.lng
interface/web/vm/lib/lang/de_openvz_vm_list.lng
remoting_client/examples/client_add.php
remoting_client/examples/client_delete_everything.php
remoting_client/examples/mail_user_add.php
remoting_client/examples/soap_config.php
server/conf/nginx_vhost.conf.master
server/conf/vhost.conf.master
server/cron_daily.php
server/cron_daily.sh
server/lib/classes/aps_base.inc.php
server/lib/classes/aps_installer.inc.php
server/lib/classes/db_mysql.inc.php
server/lib/classes/system.inc.php
server/mods-available/monitor_core_module.inc.php
server/plugins-available/apache2_plugin.inc.php
server/plugins-available/maildeliver_plugin.inc.php
server/plugins-available/mysql_clientdb_plugin.inc.php
server/plugins-available/nginx_plugin.inc.php |