Merged revisions 1357 - 1402 from trunk.
8 files deleted
553 files modified
32 files added
| | |
| | | |
| | | vi /etc/mysql/my.cnf |
| | | |
| | | # and comment out the line |
| | | # and change the line: |
| | | |
| | | bind-address = 127.0.0.1 |
| | | |
| | | to: |
| | | |
| | | #bind-address = 127.0.0.1 |
| | | |
| | | # then restart mysql |
| | | |
| | |
| | | |
| | | apt-get install amavisd-new spamassassin clamav clamav-daemon zoo unzip bzip2 arj nomarch lzop cabextract apt-listchanges libnet-ldap-perl libauthen-sasl-perl clamav-docs daemon libio-string-perl libio-socket-ssl-perl libnet-ident-perl zip libnet-dns-perl |
| | | |
| | | # During the installation, the SSL certificates for IMAP-SSL and POP3-SSL are created with the hostname localhost. To change this to the correct hostname (server1.example.com in this tutorial), delete the certificates... |
| | | |
| | | cd /etc/courier |
| | | rm -f /etc/courier/imapd.pem |
| | | rm -f /etc/courier/pop3d.pem |
| | | |
| | | # ... and modify the following two files; replace CN=localhost with CN=server1.example.com (you can also modify the other values, if necessary): |
| | | |
| | | vi /etc/courier/imapd.cnf |
| | | |
| | | [...] |
| | | CN=server1.example.com |
| | | [...] |
| | | |
| | | vi /etc/courier/pop3d.cnf |
| | | |
| | | [...] |
| | | CN=server1.example.com |
| | | [...] |
| | | |
| | | # Then recreate the certificates... |
| | | |
| | | mkimapdcert |
| | | mkpop3dcert |
| | | |
| | | # ... and restart Courier-IMAP-SSL and Courier-POP3-SSL: |
| | | |
| | | /etc/init.d/courier-imap-ssl restart |
| | | /etc/init.d/courier-pop-ssl restart |
| | | |
| | | |
| | | 3) Install apache, PHP5, phpmyadmin, better fastCGI, suexec, Pear and mcrypt (1 line!): |
| | |
| | | |
| | | apt-get install vlogger webalizer |
| | | |
| | | Change the following line in /etc/webalizer.conf from |
| | | Change the following line in /etc/webalizer/webalizer.conf from |
| | | |
| | | #Incremental no |
| | | |
New file |
| | |
| | | <?php |
| | | $host="IP"; |
| | | $user="root"; |
| | | $password="PASSWORD"; |
| | | mysql_connect($host,$user,$password) or die(mysql_error()); |
| | | mysql_select_db("dbispconfig"); |
| | | $result = ""; |
| | | $result = mysql_query("SELECT id,origin,ns,ttl,mbox,serial,refresh,retry,expire,minimum FROM dns_soa;"); |
| | | exec ("rm -f /etc/bind/named.conf.local"); |
| | | |
| | | $fx = fopen("/etc/bind/named.conf.local", "a+"); |
| | | |
| | | function hostname2ipfunktion($tmp1, $timeout = -1) { |
| | | if ($tmp1 == 0) { |
| | | $query = `nslookup -timeout=$timeout -retry=0 $tmp1`; |
| | | if(preg_match('/\nAddress: (.*)\n/', $query, $matches)) |
| | | return trim($matches[1]); |
| | | return $tmp1; |
| | | } |
| | | } |
| | | |
| | | while($row = mysql_fetch_array($result)) |
| | | { |
| | | ### Hier ALLES Aktivieren bei Primary Nameserver ######################################################################################## |
| | | #$tmp1 = substr($row["origin"],0,-1); |
| | | #fwrite($fx,"zone \""); |
| | | #fwrite($fx,substr($row["origin"],0,-1)); |
| | | #fwrite($fx,"\" in { type master; file \""); |
| | | #fwrite($fx,substr($row["origin"],0,-1)); |
| | | #fwrite($fx,"\"; };\n"); |
| | | #$result2 = mysql_query("select name,type,aux,data from dns_rr where zone=$row[id];"); |
| | | #exec("rm -f /var/cache/bind/$tmp1"); |
| | | #$f = fopen("/var/cache/bind/$tmp1", "a+"); |
| | | #fwrite($f,"\$TTL "); |
| | | #fwrite($f,$row['ttl']); |
| | | #fwrite($f,"\n"); |
| | | #fwrite($f,"@ IN SOA "); |
| | | #fwrite($f,$row['ns']); |
| | | #fwrite($f," "); |
| | | #fwrite($f,$row['mbox']); |
| | | #fwrite($f," ("); |
| | | #fwrite($f,"\n"); |
| | | #fwrite($f," "); |
| | | #fwrite($f,$row['serial']); |
| | | #fwrite($f," ;Serial"); |
| | | #fwrite($f,"\n"); |
| | | #fwrite($f," "); |
| | | #fwrite($f,$row['refresh']); |
| | | #fwrite($f," ;Refresh"); |
| | | #fwrite($f,"\n"); |
| | | #fwrite($f," "); |
| | | #fwrite($f,$row['retry']); |
| | | #fwrite($f," ;Retry"); |
| | | #fwrite($f,"\n"); |
| | | #fwrite($f," "); |
| | | #fwrite($f,$row['expire']); |
| | | #fwrite($f," ;Expire"); |
| | | #fwrite($f,"\n"); |
| | | #fwrite($f," "); |
| | | #fwrite($f,$row['minimum']); |
| | | #fwrite($f," )"); |
| | | #fwrite($f," ;Minimum"); |
| | | #fwrite($f,"\n"); |
| | | #fwrite($f,"\n"); |
| | | #while($row2 = mysql_fetch_row($result2)) |
| | | #{ |
| | | #fwrite($f,$row2['0']); |
| | | #fwrite($f," IN "); |
| | | #fwrite($f,$row2['1']); |
| | | #fwrite($f," "); |
| | | #if ($row2['2']>0) |
| | | #{ |
| | | #fwrite($f,$row2['2']); |
| | | #fwrite($f," "); |
| | | #} |
| | | #fwrite($f,$row2['3']); |
| | | #fwrite($f,"\n"); |
| | | #} |
| | | #fclose($f); |
| | | #### ENDE Primärer Namerserver ########################################################################################################### |
| | | |
| | | ### Hier ALLES Aktivieren bei Secondary Nameserver ###################################################################################### |
| | | $tmp1 = substr($row["ns"],0,-1); |
| | | $tmp2 = substr($row["origin"],0,-1); |
| | | $nsip = hostname2ipfunktion($tmp1); |
| | | if ($nsip == $tmp1) { |
| | | echo "$tmp2 $tmp1 Not a valid Nameserver"; |
| | | echo "\n"; |
| | | } |
| | | else { |
| | | fwrite($fx,"zone \""); |
| | | fwrite($fx,substr($row["origin"],0,-1)); |
| | | fwrite($fx,"\" in { type slave; file \""); |
| | | fwrite($fx,substr($row["origin"],0,-1)); |
| | | fwrite($fx,"\"; masters {"); |
| | | fwrite($fx,"$nsip; }; };"); |
| | | fwrite($fx,"\n"); |
| | | } |
| | | ### ENDE Secondary Nameserver ########################################################################################################### |
| | | } |
| | | fclose($fx); |
| | | exec("/etc/init.d/bind9 reload"); |
| | | ?> |
New file |
| | |
| | | <?php |
| | | |
| | | ####################################################################################################### |
| | | // Re-Create webalizer statistics |
| | | ####################################################################################################### |
| | | |
| | | |
| | | $sql = "SELECT domain_id, domain, document_root FROM web_domain WHERE server_id = ".$conf["server_id"]; |
| | | $records = $app->db->queryAllRecords($sql); |
| | | foreach($records as $rec) { |
| | | $domain = escapeshellcmd($rec["domain"]); |
| | | $logdir = escapeshellcmd($rec["document_root"].'/log'); |
| | | $statsdir = escapeshellcmd($rec["document_root"].'/web/stats'); |
| | | $webalizer = '/usr/bin/webalizer'; |
| | | |
| | | $webalizer_conf_main = '/etc/webalizer/webalizer.conf'; |
| | | $webalizer_conf = escapeshellcmd($rec["document_root"].'/log/webalizer.conf'); |
| | | exec("rm -rf $webalizer_conf"); |
| | | if(!@is_file($webalizer_conf)) { |
| | | exec("cp $webalizer_conf_main $webalizer_conf"); |
| | | |
| | | setConfigVar($webalizer_conf, 'Incremental', 'yes'); |
| | | setConfigVar($webalizer_conf, 'IncrementalName', $logdir.'/webalizer.current'); |
| | | setConfigVar($webalizer_conf, 'HistoryName', $logdir.'/webalizer.hist'); |
| | | } |
| | | |
| | | if(!@is_dir($statsdir)) mkdir($statsdir); |
| | | |
| | | |
| | | echo "Remove stats dir $statsdir ...\n"; |
| | | exec("rm -rf $statsdir/*"); |
| | | |
| | | echo "Re-Create stats for $domain...\n"; |
| | | exec("for logfile in $logdir/*access*; do\n$webalizer -c $webalizer_conf -n $domain -s $domain -r $domain -q -T -p -o $statsdir ".'$logfile'."\ndone"); |
| | | echo "done.\n"; |
| | | } |
| | | |
| | | die("finished.\n"); |
| | | ?> |
| | |
| | | |
| | | if(is_file('/etc/webalizer/webalizer.conf')) { |
| | | // Change webalizer mode to incremental |
| | | replaceLine('/etc/webalizer/webalizer.conf','Incremental no','Incremental yes',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','IncrementalName webalizer.current','IncrementalName webalizer.current',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','HistoryName webalizer.hist','HistoryName webalizer.hist',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','#IncrementalName','IncrementalName webalizer.current',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','#Incremental','Incremental yes',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','#HistoryName','HistoryName webalizer.hist',0,0); |
| | | } |
| | | |
| | | //* add a sshusers group |
| | |
| | | |
| | | if(is_file('/etc/webalizer/webalizer.conf')) { |
| | | // Change webalizer mode to incremental |
| | | replaceLine('/etc/webalizer/webalizer.conf','Incremental no','Incremental yes',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','IncrementalName webalizer.current','IncrementalName webalizer.current',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','HistoryName webalizer.hist','HistoryName webalizer.hist',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','#IncrementalName','IncrementalName webalizer.current',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','#Incremental','Incremental yes',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','#HistoryName','HistoryName webalizer.hist',0,0); |
| | | } |
| | | |
| | | //* add a sshusers group |
| | |
| | | $conf['hostname'] = $inst->free_query('Full qualified hostname (FQDN) of the server, eg server1.domain.tld ', $tmp_out[0]); |
| | | unset($tmp_out); |
| | | |
| | | // Check if the mysql functions are loaded in PHP |
| | | if(!function_exists('mysql_connect')) die('No PHP mysql functions available. Please ensure that the PHP mysql module is loaded.'); |
| | | |
| | | //** Get MySQL root credentials |
| | | $finished = false; |
| | | do { |
| | |
| | | |
| | | $content = rf("tpl/apache_ispconfig.conf.master"); |
| | | $records = $this->db->queryAllRecords("SELECT * FROM server_ip WHERE server_id = ".$conf["server_id"]." AND virtualhost = 'y'"); |
| | | if(count($records) > 0) { |
| | | if(is_array($records) && count($records) > 0) { |
| | | foreach($records as $rec) { |
| | | $content .= "NameVirtualHost ".$rec["ip_address"].":80\n"; |
| | | $content .= "NameVirtualHost ".$rec["ip_address"].":443\n"; |
| | |
| | | |
| | | if(is_file('/etc/webalizer/webalizer.conf')) { |
| | | // Change webalizer mode to incremental |
| | | replaceLine('/etc/webalizer/webalizer.conf','Incremental no','Incremental yes',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','IncrementalName webalizer.current','IncrementalName webalizer.current',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','HistoryName webalizer.hist','HistoryName webalizer.hist',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','#IncrementalName','IncrementalName webalizer.current',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','#Incremental','Incremental yes',0,0); |
| | | replaceLine('/etc/webalizer/webalizer.conf','#HistoryName','HistoryName webalizer.hist',0,0); |
| | | } |
| | | |
| | | //* add a sshusers group |
| | |
| | | `usertheme` varchar(32) NOT NULL default 'default', |
| | | `template_master` int(11) unsigned NOT NULL default '0', |
| | | `template_additional` varchar(255) NOT NULL default '', |
| | | `created_at` datetime default NULL, |
| | | `created_at` bigint(20) DEFAULT NULL, |
| | | PRIMARY KEY (`client_id`) |
| | | ) ENGINE=MyISAM AUTO_INCREMENT=1; |
| | | |
| | |
| | | `sys_perm_other` varchar(5) NOT NULL default '', |
| | | `server_id` int(11) unsigned NOT NULL default '0', |
| | | `source` varchar(255) NOT NULL, |
| | | `destination` varchar(255) NOT NULL default '', |
| | | `destination` text NOT NULL default '', |
| | | `type` enum('alias','forward','catchall') NOT NULL default 'alias', |
| | | `active` enum('n','y') NOT NULL, |
| | | PRIMARY KEY (`forwarding_id`), |
| | |
| | | -- Dumping data for table `sys_config` |
| | | -- |
| | | |
| | | INSERT INTO sys_config VALUES ('1','db','db_version','3.0.1.4'); |
| | | INSERT INTO sys_config VALUES ('1','db','db_version','3.0.1.5'); |
| | | |
| | | -- -------------------------------------------------------- |
| | | |
| | |
| | | |
| | | //** Application |
| | | define('ISPC_APP_TITLE', 'ISPConfig'); |
| | | define('ISPC_APP_VERSION', '3.0.1.4'); |
| | | define('ISPC_APP_VERSION', '3.0.1.5'); |
| | | |
| | | |
| | | //** Database |
| | |
| | | if(isset($conf_old["dbmaster_user"])) $conf["mysql"]["master_ispconfig_user"] = $conf_old["dbmaster_user"]; |
| | | if(isset($conf_old["dbmaster_password"])) $conf["mysql"]["master_ispconfig_password"] = $conf_old["dbmaster_password"]; |
| | | |
| | | //* Check if this is a master / slave setup |
| | | if($conf["mysql"]["master_host"] != '' && $conf["mysql"]["host"] != $conf["mysql"]["master_host"]) { |
| | | $conf['mysql']['master_slave_setup'] = 'y'; |
| | | } |
| | | |
| | | // Resolve the IP address of the mysql hostname. |
| | | if(!$conf['mysql']['ip'] = gethostbyname($conf['mysql']['host'])) die('Unable to resolve hostname'.$conf['mysql']['host']); |
| | | |
| | |
| | | //* Get mail domain details |
| | | public function mail_domain_get($session_id, $domain_id) |
| | | { |
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_domain_get')) { |
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | |
| | | $affected_rows = $this->deleteQuery('../mail/form/mail_domain.tform.php',$domain_id); |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get mail user details
|
| | | public function mail_user_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_user_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_user.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | |
| | | //* dodanie uzytkownika email |
| | | public function mail_user_add($session_id,$domain_id, $client_id, $params){ |
| | | if (!$this->checkPerm($session_id, 'mail_user_add')){ |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get mail user filter details
|
| | | public function mail_user_filter_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_user_filter_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_user_filter.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | public function mail_user_filter_add($session_id, $client_id, $params)
|
| | | {
|
| | | if (!$this->checkPerm($session_id, 'mail_user_filter_add')){
|
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $affected_rows = $this->insertQuery('../mail/form/mail_user_filter.tform.php', $client_id, $params);
|
| | | return $affected_rows;
|
| | | }
|
| | |
|
| | | public function mail_user_filter_update($session_id, $client_id, $primary_id, $params)
|
| | | {
|
| | | if (!$this->checkPerm($session_id, 'mail_user_filter_update'))
|
| | | {
|
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $affected_rows = $this->updateQuery('../mail/form/mail_user_filter.tform.php', $client_id, $primary_id, $params);
|
| | | return $affected_rows;
|
| | | }
|
| | |
|
| | | public function mail_user_filter_delete($session_id,$domain_id)
|
| | | {
|
| | | if (!$this->checkPerm($session_id, 'mail_user_filter_delete'))
|
| | | {
|
| | | $this->server->fault('permission_denied','You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $affected_rows = $this->deleteQuery('../mail/form/mail_user_filter.tform.php',$domain_id);
|
| | | return $affected_rows;
|
| | | }
|
| | |
|
| | | //* Get alias details
|
| | | public function mail_alias_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_alias_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_alias.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* aliasy email |
| | | public function mail_alias_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get mail forwarding details
|
| | | public function mail_forward_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_forward_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_forward.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* przekierowania email |
| | | public function mail_forward_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get catchall details
|
| | | public function mail_catchall_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_catchall_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_domain_catchall.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* catchall e-mail |
| | | public function mail_catchall_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | |
| | | public function mail_catchall_update($session_id, $domain_id, $client_id, $params) |
| | | { |
| | | if (!$this->checkPerm($session_id, 'mail_catchall_update')) |
| | |
| | | $affected_rows = $this->updateQuery('../mail/form/mail_domain_catchall.tform.php', $client_id, $domain_id, $params); |
| | | return $affected_rows; |
| | | } |
| | | |
| | | |
| | | public function mail_catchall_delete($session_id,$domain_id) |
| | | { |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get transport details
|
| | | public function mail_transport_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_transport_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_transport.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* przeniesienia e-mail |
| | | public function mail_transport_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get spamfilter whitelist details
|
| | | public function mail_spamfilter_whitelist_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_spamfilter_whitelist_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/spamfilter_whitelist.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* biała lista e-mail |
| | | public function mail_spamfilter_whitelist_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get spamfilter blacklist details
|
| | | public function mail_spamfilter_blacklist_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_spamfilter_blacklist_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/spamfilter_blacklist.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* czarna lista e-mail |
| | | public function mail_spamfilter_blacklist_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get spamfilter user details
|
| | | public function mail_spamfilter_user_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_spamfilter_user_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/spamfilter_users.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* filtr spamu użytkowników e-mail |
| | | public function mail_spamfilter_user_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get policy details
|
| | | public function mail_policy_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_policy_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/spamfilter_policy.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* polityki filtrów spamu e-mail |
| | | public function mail_policy_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get fetchmail details
|
| | | public function mail_fetchmail_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_fetchmail_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_get.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* fetchmail |
| | | public function mail_fetchmail_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get whitelist details
|
| | | public function mail_whitelist_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_whitelist_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_whitelist.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* wpisy białej listy |
| | | public function mail_whitelist_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get Blacklist details
|
| | | public function mail_blacklist_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_blacklist_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_blacklist.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* wpisy białej listy |
| | | public function mail_blacklist_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | //* Get filter details
|
| | | public function mail_filter_get($session_id, $primary_id)
|
| | | {
|
| | | global $app;
|
| | | |
| | | if(!$this->checkPerm($session_id, 'mail_filter_get')) {
|
| | | $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
|
| | | return false;
|
| | | }
|
| | | $app->uses('remoting_lib');
|
| | | $app->remoting_lib->loadFormDef('../mail/form/mail_content_filter.tform.php');
|
| | | return $app->remoting_lib->getDataRecord($primary_id);
|
| | | }
|
| | | |
| | | //* wpisy filtrow e-mail |
| | | public function mail_filter_add($session_id,$domain_id, $client_id, $params) |
| | |
| | | function getDataRecord($primary_id) { |
| | | global $app; |
| | | $escape = '`'; |
| | | if(@is_numeric($primary_id)) {
|
| | | $sql = "SELECT * FROM ".$escape.$this->formDef['db_table'].$escape." WHERE ".$this->formDef['db_table_idx']." = ".$primary_id; |
| | | return $app->db->queryOneRecord($sql); |
| | | } elseif (@is_array($primary_id)) {
|
| | | $sql_where = '';
|
| | | foreach($primary_id as $key => $val) {
|
| | | $key = $app->db->quote($key);
|
| | | $val = $app->db->quote($val);
|
| | | $sql_where .= "$key = '$val' AND ";
|
| | | }
|
| | | $sql_where = substr($sql_where,0,-5);
|
| | | $sql = "SELECT * FROM ".$escape.$this->formDef['db_table'].$escape." WHERE ".$sql_where;
|
| | | return $app->db->queryAllRecords($sql);
|
| | | } else {
|
| | | $this->errorMessage = 'The ID must be either an integer or an array.';
|
| | | return array();
|
| | | }
|
| | | |
| | | |
| | | } |
| | | |
| | | function dodaj_usera($params,$insert_id){ |
| | |
| | | $wb['Help'] = 'Ajuda'; |
| | | $wb['toolsarea_head_txt'] = 'Ferramentas'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Új bejegyzés'; |
| | | $wb['btn_save_txt'] = 'Mentés'; |
| | | $wb['btn_cancel_txt'] = 'Mégse'; |
| | | $wb['System'] = 'System'; |
| | | $wb['Client'] = 'Client'; |
| | | $wb['Email'] = 'Email'; |
| | | $wb['Monitor'] = 'Monitor'; |
| | | $wb['Sites'] = 'Sites'; |
| | | $wb['DNS'] = 'DNS'; |
| | | $wb['Tools'] = 'Tools'; |
| | | $wb['Help'] = 'Help'; |
| | | $wb['toolsarea_head_txt'] = 'Tools'; |
| | | ?> |
| | | |
| | |
| | | $wb['Help'] = 'Help'; |
| | | $wb['toolsarea_head_txt'] = 'Tools'; |
| | | ?> |
| | | |
| | |
| | | $wb['conf_format_timeshort'] = 'H:i';
|
| | | $wb['conf_format_timelong'] = 'H:i:s';
|
| | | $wb['conf_format_datetime'] = 'Y-m-d H:i';
|
| | |
|
| | | $wb['301'] = 'Moduł nie jest dostępny dla aktualnego uzytkownika.';
|
| | | $wb['302'] = 'Moduł jest niepoprawny.';
|
| | | $wb['1001'] = 'Nazwa użytkownika i hasło nie może być puste !';
|
| | |
| | | $wb['delete_confirmation'] = 'Jesteś pewny, że chcesz usunąć ten wpis?';
|
| | | $wb['error_no_view_permission'] = 'Nie masz uprawnień do podglądu tego wpisu lub taki wpis nie istnieje!';
|
| | | $wb['error_no_delete_permission'] = 'Nie masz uprawnień do usunięcia tego wpisu!';
|
| | | $wb["page_txt"] = 'Strona';
|
| | | $wb["page_of_txt"] = 'z';
|
| | | $wb["page_next_txt"] = 'Następna';
|
| | | $wb["page_back_txt"] = 'Wróć';
|
| | | $wb["delete_txt"] = 'Usuń';
|
| | | $wb["filter_txt"] = 'Filtr';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy wpis';
|
| | | $wb['btn_save_txt'] = "Zapisz";
|
| | | $wb['btn_cancel_txt'] = "Wróć";
|
| | | $wb['page_txt'] = 'Strona'; |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['page_next_txt'] = 'Następna'; |
| | | $wb['page_back_txt'] = 'Wróć'; |
| | | $wb['delete_txt'] = 'Usuń'; |
| | | $wb['filter_txt'] = 'Filtr'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy wpis'; |
| | | $wb['btn_save_txt'] = 'Zapisz'; |
| | | $wb['btn_cancel_txt'] = 'Wróć'; |
| | | $wb['System'] = 'System'; |
| | | $wb['Client'] = 'Client'; |
| | | $wb['Email'] = 'Email'; |
| | | $wb['Monitor'] = 'Monitor'; |
| | | $wb['Sites'] = 'Sites'; |
| | | $wb['DNS'] = 'DNS'; |
| | | $wb['Tools'] = 'Tools'; |
| | | $wb['Help'] = 'Help'; |
| | | $wb['toolsarea_head_txt'] = 'Tools'; |
| | | ?>
|
| | |
|
| | | |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Remote Users'; |
| | | $wb['list_desc_txt'] = ''; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP Address'; |
| | | $wb['virtualhost_txt'] = 'HTTP NameVirtualHost'; |
| | | $wb['ip_err'] = 'IP address invalid'; |
| | | $wb['ip_error_wrong'] = 'The IP address is invalid'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?> |
| | |
| | | $wb['Software'] = 'Software'; |
| | | $wb['Repositories'] = 'Repositórios'; |
| | | ?> |
| | | |
| | |
| | | $wb['tcp_ports_error_regex'] = 'Caratere não permitido para definição de porta tcp. São permitidos somente números, : e ,.'; |
| | | $wb['udp_ports_error_regex'] = 'Caratere não permitido para definição de porta udp. São permitidos somente números, : e ,.'; |
| | | ?> |
| | | |
| | |
| | | $wb['udp_port_txt'] = 'Portas UDP abertas'; |
| | | $wb['add_new_record_txt'] = 'Adcionar registro de firewall'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Grupo'; |
| | | $wb['name_err'] = 'O Nome do Grupo deve conter de 1 a 30 caracteres!'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Grupo'; |
| | | $wb['add_new_record_txt'] = 'Adicionar novo Grupo'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Criar um novo conjunto de idioma'; |
| | | $wb['btn_cancel_txt'] = 'Voltar'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Mesclar arquivos agora'; |
| | | $wb['btn_cancel_txt'] = 'Voltar'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Salvar'; |
| | | $wb['btn_cancel_txt'] = 'Voltar'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Exportar idioma selecionado para um arquivo'; |
| | | $wb['btn_cancel_txt'] = 'Voltar'; |
| | | ?> |
| | | |
| | |
| | | $wb['language_overwrite_txt'] = 'Sobre escrever o arquivo se existir.'; |
| | | $wb['btn_cancel_txt'] = 'Voltar'; |
| | | ?> |
| | | |
| | |
| | | $wb['lang_file_txt'] = 'Arquido de Idioma'; |
| | | $wb['lang_file_date_txt'] = 'Ultima Modificação'; |
| | | ?> |
| | | |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Nome do usuário:'; |
| | | $wb['password_txt'] = 'Senha:'; |
| | | $wb['function_txt'] = 'Funções:'; |
| | | $wb['username_error_unique'] = 'O nome de usuário deve ser único'; |
| | | $wb['username_error_empty'] = 'O nome de usuário não pode estar em branco'; |
| | | $wb['password_error_empty'] = 'A senha não pode estar em branco'; |
| | | $wb['password_strength_txt'] = 'Segurança da senha:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Usuários Remotos'; |
| | | $wb['list_desc_txt'] = ''; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo usuário'; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = 'Nome do usuário'; |
| | | ?> |
| | |
| | | $wb['vserver_server_txt'] = 'Servidor VServer'; |
| | | $wb['active_txt'] = 'Ativado'; |
| | | ?> |
| | | |
| | |
| | | $wb['web_group_txt'] = 'Grupo Apache'; |
| | | $wb['security_level_txt'] = 'Nível de Segurança'; |
| | | ?> |
| | | |
| | |
| | | $wb['list_head_txt'] = 'Configuração do Servidor'; |
| | | $wb['server_name_txt'] = 'Servidor'; |
| | | ?> |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['ip_address_txt'] = 'Endereço IP'; |
| | | $wb['virtualhost_txt'] = 'Nome VirtualHost HTTP'; |
| | | $wb['ip_err'] = 'Endereço IP inválido!'; |
| | | $wb['ip_error_wrong'] = 'Endereço IP inválido!'; |
| | | $wb['ip_error_unique'] = 'O endereço IP deve ser único'; |
| | | ?> |
| | | |
| | |
| | | $wb['ip_address_txt'] = 'Endereço IP'; |
| | | $wb['add_new_record_txt'] = 'Adicionar novo Endereço IP'; |
| | | ?> |
| | | |
| | |
| | | $wb['vserver_server_txt'] = 'VServer'; |
| | | $wb['add_new_record_txt'] = 'Adicionar novo Servidor'; |
| | | ?> |
| | | |
| | |
| | | $wb['package_description_txt'] = 'Descrição'; |
| | | $wb['action_txt'] = 'Acão'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_password_txt'] = 'Senha (opcional)'; |
| | | $wb['active_txt'] = 'Ativo'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_name_txt'] = 'Repositório'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | ?> |
| | | |
| | |
| | | $wb['version_txt'] = 'Versão'; |
| | | $wb['action_txt'] = 'Ação'; |
| | | ?> |
| | | |
| | |
| | | $wb['dblist_phpmyadmin_link_txt'] = 'Link para phpmyadmin'; |
| | | $wb['mailboxlist_webmail_link_txt'] = 'Link para o webmail'; |
| | | ?> |
| | | |
| | |
| | | $wb['default_group_txt'] = 'Grupo Padrão'; |
| | | $wb['startmodule_err'] = 'O módulo inicial não está contido nos módulos.'; |
| | | ?> |
| | | |
| | |
| | | $wb['ort_txt'] = 'cidade'; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo usuário'; |
| | | ?> |
| | | |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Remote Users"; |
| | | $wb['list_desc_txt'] = ""; |
| | | $wb['add_new_record_txt'] = "Add new user"; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = "Username"; |
| | | ?> |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP Adresse'; |
| | | $wb['virtualhost_txt'] = 'HTTP NameVirtualHost'; |
| | | $wb['ip_err'] = 'IP Adresse ungültig'; |
| | | $wb['ip_error_wrong'] = 'Das IP Adresse ist ungültig'; |
| | | $wb['ip_error_unique'] = 'Das IP Adresse müss einzigartig sein'; |
| | | ?> |
| | |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["ip_address_txt"] = 'IP Address'; |
| | | $wb["virtualhost_txt"] = 'HTTP NameVirtualHost'; |
| | | $wb["ip_err"] = 'IP address invalid'; |
| | | $wb["ip_error_wrong"] = 'The IP address is invalid'; |
| | | $wb["ip_error_unique"] = 'The IP address must be unique'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Remote Users"; |
| | | $wb['list_desc_txt'] = ""; |
| | | $wb['add_new_record_txt'] = "Add new user"; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = "Username"; |
| | | ?> |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Servidor'; |
| | | $wb['ip_address_txt'] = 'Dirección IP'; |
| | | $wb['virtualhost_txt'] = 'NameVirtualHost HTTP'; |
| | | $wb['ip_err'] = 'Dirección IP inválida'; |
| | | $wb['ip_error_wrong'] = 'Dirección IP inválida'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Remote Users"; |
| | | $wb['list_desc_txt'] = ""; |
| | | $wb['add_new_record_txt'] = "Add new user"; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = "Username"; |
| | | ?> |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Palvelin'; |
| | | $wb['ip_address_txt'] = 'IP-osoite'; |
| | | $wb['virtualhost_txt'] = 'Virtuaalipalvelin'; |
| | | $wb['ip_err'] = 'IP-osoite vääränlainen'; |
| | | $wb['ip_error_wrong'] = 'IP-osoite vääränlainen'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Remote Users"; |
| | | $wb['list_desc_txt'] = ""; |
| | | $wb['add_new_record_txt'] = "Add new user"; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = "Username"; |
| | | ?> |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP Address'; |
| | | $wb['virtualhost_txt'] = 'HTTP NameVirtualHost'; |
| | | $wb['ip_err'] = 'IP address invalid'; |
| | | $wb['ip_error_wrong'] = 'The IP address is invalid'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?> |
| | |
| | | $wb['Software'] = 'Program'; |
| | | $wb['Repositories'] = 'Repositories'; |
| | | ?> |
| | | |
| | |
| | | $wb['udp_port_help_txt'] = 'Separated by comma'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'There is already a firewall record for this server.'; |
| | | $wb['tcp_ports_error_regex'] = 'Character not allowed in tcp port definition. Allowed characters are numbers, : and ,.'; |
| | | $wb['udp_ports_error_regex'] = 'Character not allowed in udp port definition. Allowed characters are numbers, : and ,.'; |
| | | ?> |
| | | |
| | |
| | | $wb['udp_port_txt'] = 'Open UDP ports'; |
| | | $wb['add_new_record_txt'] = 'Add Firewall record'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Group'; |
| | | $wb['name_err'] = 'Group must be min 1, max 30 Chars.'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Group'; |
| | | $wb['add_new_record_txt'] = 'Add new Group'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_cancel_txt'] = 'Vissza'; |
| | | $wb['language_new_hint_txt'] = '2 karakteres ISO 639-1 nyelvi kód (Lásd http://hu.wikipedia.org/wiki/ISO_639-1)'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_cancel_txt'] = 'Back'; |
| | | $wb['list_desc_txt'] = 'Merge the selected language file with the english master language file. <br />This adds missing strings from the english master language files to the selected language.'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Ment'; |
| | | $wb['btn_cancel_txt'] = 'Mégse'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Kiválasztott nyelv eportálása'; |
| | | $wb['btn_cancel_txt'] = 'Vissza'; |
| | | ?> |
| | | |
| | |
| | | $wb['language_overwrite_txt'] = 'Létző fájlokat felülírja.'; |
| | | $wb['btn_cancel_txt'] = 'Vissza'; |
| | | ?> |
| | | |
| | |
| | | $wb['lang_file_txt'] = 'Nyelvi fájl'; |
| | | $wb['lang_file_date_txt'] = 'Utolsó módosítás'; |
| | | ?> |
| | | |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Remote Users"; |
| | | $wb['list_desc_txt'] = ""; |
| | | $wb['add_new_record_txt'] = "Add new user"; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = "Username"; |
| | | ?> |
| | | |
| | |
| | | $wb['vserver_server_txt'] = 'VServer-Szerver'; |
| | | $wb['active_txt'] = 'Aktív'; |
| | | ?> |
| | | |
| | |
| | | $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['list_head_txt'] = 'Szerver beállítások'; |
| | | $wb['server_name_txt'] = 'Szerver'; |
| | | ?> |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Szerver'; |
| | | $wb['ip_address_txt'] = 'IP cím'; |
| | | $wb['virtualhost_txt'] = 'HTTP NameVirtualHost'; |
| | | $wb['ip_err'] = 'IP cím érvénytelen'; |
| | | $wb['ip_error_wrong'] = 'IP cím érvénytelen'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?> |
| | | |
| | |
| | | $wb['ip_address_txt'] = 'IP cím'; |
| | | $wb['add_new_record_txt'] = 'Új IP cím'; |
| | | ?> |
| | | |
| | |
| | | $wb['vserver_server_txt'] = 'VServer'; |
| | | $wb['add_new_record_txt'] = 'Új Szerver'; |
| | | ?> |
| | | |
| | |
| | | $wb['package_description_txt'] = 'Leírás'; |
| | | $wb['action_txt'] = 'Művelet'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_password_txt'] = 'Password (optional)'; |
| | | $wb['active_txt'] = 'Active'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_name_txt'] = 'Repository'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Művelet'; |
| | | $wb['server_select_txt'] = 'Válasszon szervert'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | |
| | | $wb['warning'] = 'Edit these values carefully! Do not remove the prefixes on a systems with more then one client.'; |
| | | $wb['dbname_prefix_txt'] = 'Database name prefix'; |
| | | $wb['dbuser_prefix_txt'] = 'Database user prefix'; |
| | |
| | | $wb['shelluser_prefix_error_regex'] = 'Char not allowed in shell user prefix.'; |
| | | $wb['dblist_phpmyadmin_link_txt'] = 'Link to phpmyadmin in DB list'; |
| | | $wb['mailboxlist_webmail_link_txt'] = 'Link to webmail in Mailbox list'; |
| | | |
| | | ?> |
| | |
| | | $wb['startmodule_err'] = 'Kezdő modul nincs engedélyezve.'; |
| | | $wb['password_strength_txt'] = 'Jelszó erősség'; |
| | | ?> |
| | | |
| | |
| | | $wb['ort_txt'] = 'Város'; |
| | | $wb['add_new_record_txt'] = 'Új felhasználó'; |
| | | ?> |
| | | |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Remote Users"; |
| | | $wb['list_desc_txt'] = ""; |
| | | $wb['add_new_record_txt'] = "Add new user"; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = "Username"; |
| | | ?> |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP Address'; |
| | | $wb['virtualhost_txt'] = 'HTTP NameVirtualHost'; |
| | | $wb['ip_err'] = 'IP address invalid'; |
| | | $wb['ip_error_wrong'] = 'The IP address is invalid'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?> |
| | |
| | | $wb['Software'] = 'Software'; |
| | | $wb['Repositories'] = 'Repositories'; |
| | | ?> |
| | | |
| | |
| | | $wb['tcp_ports_error_regex'] = 'Karakter niet toegestaan in tcp poort toewijzing. Toegestane tekens zijn cijfers, : en ,'; |
| | | $wb['udp_ports_error_regex'] = 'Karakter niet toegestaan in udp poort toewijzing. Toegestane tekens zijn cijfers, : en ,'; |
| | | ?> |
| | | |
| | |
| | | $wb['udp_port_txt'] = 'Open UDP poorten'; |
| | | $wb['add_new_record_txt'] = 'Firewall record toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Groep'; |
| | | $wb['name_err'] = 'Groepsnaam moet tussen 1 en 30 karakters bevatten.'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Groep'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe groep toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_cancel_txt'] = 'Terug'; |
| | | $wb['language_new_hint_txt'] = '2 tekens ISO 639-1 taal-code (Zie http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_cancel_txt'] = 'Terug'; |
| | | $wb['list_desc_txt'] = 'Laat ontbrekende teksten in de geselecteerde taal aanvullen vanuit de Engelstalige master.'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Opslaan'; |
| | | $wb['btn_cancel_txt'] = 'Terug'; |
| | | ?> |
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Exporteren'; |
| | | $wb['btn_cancel_txt'] = 'Terug'; |
| | | ?> |
| | | |
| | |
| | | $wb['language_overwrite_txt'] = 'Overschrijven indien deze al bestaat?'; |
| | | $wb['btn_cancel_txt'] = 'Terug'; |
| | | ?> |
| | | |
| | |
| | | $wb['lang_file_txt'] = 'Taalbestand'; |
| | | $wb['lang_file_date_txt'] = 'Laatste wijziging'; |
| | | ?> |
| | | |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Remote Users"; |
| | | $wb['list_desc_txt'] = ""; |
| | | $wb['add_new_record_txt'] = "Add new user"; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = "Username"; |
| | | ?> |
| | | |
| | |
| | | $wb['vserver_server_txt'] = 'VServer-Server'; |
| | | $wb['active_txt'] = 'Actief?'; |
| | | ?> |
| | | |
| | |
| | | $wb['web_group_txt'] = 'Apache groep'; |
| | | $wb['security_level_txt'] = 'Beveiligingsniveau'; |
| | | ?> |
| | | |
| | |
| | | $wb['list_head_txt'] = 'Server configuratie'; |
| | | $wb['server_name_txt'] = 'Servernaam'; |
| | | ?> |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP-adres (ipv4)'; |
| | | $wb['virtualhost_txt'] = 'HTTP NameVirtualHost activeren?'; |
| | | $wb['ip_err'] = 'Opgegeven IP-adres is ongeldig'; |
| | | $wb['ip_error_wrong'] = 'Opgegeven IP-adres is ongeldig'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?> |
| | | |
| | |
| | | $wb['ip_address_txt'] = 'IP-adres'; |
| | | $wb['add_new_record_txt'] = 'Nieuw IP-adres toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['vserver_server_txt'] = 'VServer'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe server toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['package_description_txt'] = 'Omschrijving'; |
| | | $wb['action_txt'] = 'Actie'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_password_txt'] = 'Wachtwoord (optioneel)'; |
| | | $wb['active_txt'] = 'Actief?'; |
| | | ?> |
| | | |
| | |
| | | $wb['repo_name_txt'] = 'Repository'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Actie'; |
| | | $wb['server_select_txt'] = 'Selecteer server'; |
| | | ?> |
| | | |
| | |
| | | $wb['dblist_phpmyadmin_link_txt'] = 'Link naar phpMyAdmin'; |
| | | $wb['mailboxlist_webmail_link_txt'] = 'Link naar Webmail'; |
| | | ?> |
| | | |
| | |
| | | $wb['default_group_txt'] = 'Standaard groep'; |
| | | $wb['startmodule_err'] = 'Module is niet binnen de lijst van beschikbare modulen.'; |
| | | ?> |
| | | |
| | |
| | | $wb['ort_txt'] = 'Plaats'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe gebruiker toevoegen'; |
| | | ?> |
| | | |
| | |
| | | <?php
|
| | |
|
| | | $wb[1001] = "Nazwa użytkownika lub hasło jest puste.";
|
| | | $wb[1002] = "Nazwa użytkownika lub hasło jest złe.";
|
| | | $wb['1001'] = 'Nazwa użytkownika lub hasło jest puste.'; |
| | | $wb['1002'] = 'Nazwa użytkownika lub hasło jest złe.'; |
| | | $wb['Firewall'] = 'Firewall';
|
| | | $wb['Groups'] = 'Grupy';
|
| | | $wb['groups_description'] = 'Formularz do edycji grup użytkowników w systemie.';
|
| | |
| | | $wb['CP Users'] = 'Użytkownicy';
|
| | | $wb['Add group'] = 'Dodaj grupę';
|
| | | $wb['Edit group'] = 'Edytuj grupę';
|
| | | $wb['Groups'] = 'Grupy';
|
| | | $wb['Edit server'] = 'Edytuj serwer';
|
| | | $wb['Edit Server IP'] = 'Edytuj IP serwera';
|
| | | $wb['Servers'] = 'Serwery';
|
| | |
| | | $wb['Language Editor'] = 'Edytor języków';
|
| | | $wb['Software'] = 'Oprogramowanie';
|
| | | $wb['Repositories'] = 'Repozytoria';
|
| | |
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["tcp_port_txt"] = 'Otwarty port TCP';
|
| | | $wb["udp_port_txt"] = 'Otwarty port UDP';
|
| | | $wb["tcp_port_help_txt"] = 'Odziel przecinkiem';
|
| | | $wb["udp_port_help_txt"] = 'Odziel przecinkiem';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["firewall_error_unique"] = 'Istnieje już wpis firewall-a dla tego serwera.';
|
| | | $wb["active_txt"] = 'Active';
|
| | | $wb["tcp_ports_error_regex"] = 'Znak nie jest dozwolony w formacie portu TCP. Dozwolone znaki to liczby, ":" oraz ",".';
|
| | | $wb["udp_ports_error_regex"] = 'Znak nie jest dozwolony w formacie portu UDP. Dozwolone znaki to liczby, ":" oraz ",".';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['tcp_port_txt'] = 'Otwarty port TCP'; |
| | | $wb['udp_port_txt'] = 'Otwarty port UDP'; |
| | | $wb['tcp_port_help_txt'] = 'Odziel przecinkiem'; |
| | | $wb['udp_port_help_txt'] = 'Odziel przecinkiem'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['firewall_error_unique'] = 'Istnieje już wpis firewall-a dla tego serwera.'; |
| | | $wb['tcp_ports_error_regex'] = 'Znak nie jest dozwolony w formacie portu TCP. Dozwolone znaki to liczby, : oraz ,.'; |
| | | $wb['udp_ports_error_regex'] = 'Znak nie jest dozwolony w formacie portu UDP. Dozwolone znaki to liczby, : oraz ,.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Firewall';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["tcp_port_txt"] = 'Otwarte porty TCP';
|
| | | $wb["udp_port_txt"] = 'Otwarte porty UDP';
|
| | | $wb["add_new_record_txt"] = 'Dodaj wpis Firewall-a';
|
| | | $wb['list_head_txt'] = 'Firewall'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['tcp_port_txt'] = 'Otwarte porty TCP'; |
| | | $wb['udp_port_txt'] = 'Otwarte porty UDP'; |
| | | $wb['add_new_record_txt'] = 'Dodaj wpis Firewall-a'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["description_txt"] = 'Opis';
|
| | | $wb["name_txt"] = 'Grupa';
|
| | | $wb["name_err"] = 'Nazwa grupy musi mieć od 1 do 30 znaków.';
|
| | | $wb['description_txt'] = 'Opis'; |
| | | $wb['name_txt'] = 'Grupa'; |
| | | $wb['name_err'] = 'Nazwa grupy musi mieć od 1 do 30 znaków.'; |
| | | ?>
|
| | | |
| | |
| | | $wb['name_txt'] = 'Grupa'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową grupę'; |
| | | ?> |
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Dodaj nowy język';
|
| | | $wb["language_select_txt"] = 'Wybierz domyślny język';
|
| | | $wb["language_new_txt"] = 'Nowy język';
|
| | | $wb["language_new_hint_txt"] = '2 znakowe kodowanie języka ISO 639-1 (Zobacz http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)';
|
| | | $wb['list_head_txt'] = 'Dodaj nowy język'; |
| | | $wb['language_select_txt'] = 'Wybierz domyślny język'; |
| | | $wb['language_new_txt'] = 'Nowy język'; |
| | | $wb['language_new_hint_txt'] = '2 znakowe kodowanie języka ISO 639-1 (Zobacz http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)'; |
| | | $wb['btn_save_txt'] = 'Utwórz nowy zbiór plików z językami';
|
| | | $wb['btn_cancel_txt'] = 'Wróć';
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Połącz język';
|
| | | $wb["list_desc_txt"] = 'Połącz pliki wybranego języka z plikiami języka angielskiego. <br />Ta opcja dodaje do wybranego języka brakujące zmienne językowe z plików języka angielskiego.';
|
| | | $wb["language_select_txt"] = 'Wybierz język';
|
| | | $wb['list_head_txt'] = 'Połącz język'; |
| | | $wb['list_desc_txt'] = 'Połącz pliki wybranego języka z plikiami języka angielskiego. <br />Ta opcja dodaje do wybranego języka brakujące zmienne językowe z plików języka angielskiego.'; |
| | | $wb['language_select_txt'] = 'Wybierz język'; |
| | | $wb['btn_save_txt'] = 'Połącz pliki teraz';
|
| | | $wb['btn_cancel_txt'] = 'Wróć';
|
| | | ?>
|
| | | |
| | |
| | | $wb['btn_save_txt'] = 'Zapisz';
|
| | | $wb['btn_cancel_txt'] = 'Wróć';
|
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Exportuj pliki języka';
|
| | | $wb["language_select_txt"] = 'Wybierz język';
|
| | | $wb['list_head_txt'] = 'Exportuj pliki języka'; |
| | | $wb['language_select_txt'] = 'Wybierz język'; |
| | | $wb['btn_save_txt'] = 'Exportuj pliki wybranego języka';
|
| | | $wb['btn_cancel_txt'] = 'Wróć';
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Importuj plik języka';
|
| | | $wb["language_import_txt"] = 'Wybierz plik języka';
|
| | | $wb['list_head_txt'] = 'Importuj plik języka'; |
| | | $wb['language_import_txt'] = 'Wybierz plik języka'; |
| | | $wb['btn_save_txt'] = 'Importuj wybrane pliki języka';
|
| | | $wb["language_overwrite_txt"] = 'Nadpisz plik jeśli istnieje.';
|
| | | $wb['language_overwrite_txt'] = 'Nadpisz plik jeśli istnieje.'; |
| | | $wb['btn_cancel_txt'] = 'Wróć';
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Edytor plików języka';
|
| | | $wb["language_select_txt"] = 'Wyberz język';
|
| | | $wb["module_txt"] = 'Moduł';
|
| | | $wb["lang_file_txt"] = 'Plik języka';
|
| | | $wb["lang_file_date_txt"] = 'Ostatnia modyfikacja';
|
| | | $wb['list_head_txt'] = 'Edytor plików języka'; |
| | | $wb['language_select_txt'] = 'Wyberz język'; |
| | | $wb['module_txt'] = 'Moduł'; |
| | | $wb['lang_file_txt'] = 'Plik języka'; |
| | | $wb['lang_file_date_txt'] = 'Ostatnia modyfikacja'; |
| | | ?>
|
| | |
|
| | | |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Remote Users'; |
| | | $wb['list_desc_txt'] = ''; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | <?php
|
| | | $wb["config_txt"] = 'Konfiguracja';
|
| | | $wb["server_name_txt"] = 'Nazwa serwera';
|
| | | $wb["mail_server_txt"] = 'Serwer poczty E-Mail';
|
| | | $wb["web_server_txt"] = 'Serwer WWW';
|
| | | $wb["dns_server_txt"] = 'Serwer DNS';
|
| | | $wb["file_server_txt"] = 'Serwer plików';
|
| | | $wb["db_server_txt"] = 'Serwer bazy danych';
|
| | | $wb["vserver_server_txt"] = 'Witrualny serwer';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb['config_txt'] = 'Konfiguracja'; |
| | | $wb['server_name_txt'] = 'Nazwa serwera'; |
| | | $wb['mail_server_txt'] = 'Serwer poczty E-Mail'; |
| | | $wb['web_server_txt'] = 'Serwer WWW'; |
| | | $wb['dns_server_txt'] = 'Serwer DNS'; |
| | | $wb['file_server_txt'] = 'Serwer plików'; |
| | | $wb['db_server_txt'] = 'Serwer bazy danych'; |
| | | $wb['vserver_server_txt'] = 'Witrualny serwer'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | ?>
|
| | | |
| | |
| | | $wb['wget_txt'] = 'Ścieżka do wget'; |
| | | $wb['web_user_txt'] = 'Użytkownik Apache'; |
| | | $wb['web_group_txt'] = 'Grupa Apache'; |
| | | $wb['security_level_txt'] = 'Security level'; |
| | | ?> |
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Konfiguracja serwera';
|
| | | $wb["server_name_txt"] = 'Serwer';
|
| | | $wb['list_head_txt'] = 'Konfiguracja serwera'; |
| | | $wb['server_name_txt'] = 'Serwer'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["ip_address_txt"] = 'Adres IP';
|
| | | $wb["virtualhost_txt"] = 'Nazwa wirtualnego hosta HTTP';
|
| | | $wb["ip_err"] = 'Adres IP jest niepoprawny';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['ip_address_txt'] = 'Adres IP'; |
| | | $wb['virtualhost_txt'] = 'Nazwa wirtualnego hosta HTTP'; |
| | | $wb['ip_error_wrong'] = 'Adres IP jest niepoprawny'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Adresy IP';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["ip_address_txt"] = 'Adres IP';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy adres IP';
|
| | | $wb['list_head_txt'] = 'Adresy IP'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['ip_address_txt'] = 'Adres IP'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy adres IP'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Serwer';
|
| | | $wb["server_name_txt"] = 'Nazwa';
|
| | | $wb["mail_server_txt"] = 'E-mail';
|
| | | $wb["web_server_txt"] = 'WWW';
|
| | | $wb["dns_server_txt"] = 'DNS';
|
| | | $wb["file_server_txt"] = 'Plik';
|
| | | $wb["db_server_txt"] = 'Baza danych';
|
| | | $wb["vserver_server_txt"] = 'Wirtualny serwer';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy serwer';
|
| | | $wb['list_head_txt'] = 'Serwer'; |
| | | $wb['server_name_txt'] = 'Nazwa'; |
| | | $wb['mail_server_txt'] = 'E-mail'; |
| | | $wb['web_server_txt'] = 'WWW'; |
| | | $wb['dns_server_txt'] = 'DNS'; |
| | | $wb['file_server_txt'] = 'Plik'; |
| | | $wb['db_server_txt'] = 'Baza danych'; |
| | | $wb['vserver_server_txt'] = 'Wirtualny serwer'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy serwer'; |
| | | ?>
|
| | | |
| | |
| | | $wb['package_description_txt'] = 'Opis';
|
| | | $wb['action_txt'] = 'Akcja';
|
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["repo_name_txt"] = 'Repozytorium';
|
| | | $wb["repo_url_txt"] = 'URL';
|
| | | $wb["repo_username_txt"] = 'Użytkownik (Opcjonalnie)';
|
| | | $wb["repo_password_txt"] = 'Hasło (Opcjonalnie)';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb['repo_name_txt'] = 'Repozytorium'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | $wb['repo_username_txt'] = 'Użytkownik (Opcjonalnie)'; |
| | | $wb['repo_password_txt'] = 'Hasło (Opcjonalnie)'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Repozytoria';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["repo_name_txt"] = 'Repozytoria';
|
| | | $wb["repo_url_txt"] = 'URL';
|
| | | $wb['list_head_txt'] = 'Repozytoria'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['repo_name_txt'] = 'Repozytoria'; |
| | | $wb['repo_url_txt'] = 'URL'; |
| | | ?>
|
| | | |
| | |
| | | $wb['version_txt'] = 'Wersja';
|
| | | $wb['action_txt'] = 'Akcja';
|
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | |
|
| | | $wb['warning'] = 'Edytuj te wartości ostrożnie! Nie usuwaj prefiksów w systemie w więcej niż jednym kliencie.';
|
| | | $wb['dbname_prefix_txt'] = 'Prefiks nazwy bazy danych';
|
| | | $wb['dbuser_prefix_txt'] = 'Prefiks użytkownika bazy danych';
|
| | |
| | | $wb['shelluser_prefix_error_regex'] = 'Znak nie jest dozwolony w prefiksie nazwy użytkownika shell.';
|
| | | $wb['dblist_phpmyadmin_link_txt'] = 'Adres do phpMyAdmin-a w liście baz danych';
|
| | | $wb['mailboxlist_webmail_link_txt'] = 'Adres do poczty e-mail w liście skrzynek pocztowych';
|
| | |
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["username_txt"] = 'Nazwa użytkownika';
|
| | | $wb["username_err"] = 'Nazwa użytkownika jest za długa lub zawiera niedozwolone znaki.';
|
| | | $wb["username_empty"] = 'Nazwa użytkownika jest pusta.';
|
| | | $wb["username_unique"] = 'Istnieje już użytkownik o takiej nazwie.';
|
| | | $wb["passwort_txt"] = 'Hasło';
|
| | | $wb["password_strength_txt"] = 'Siła hasła';
|
| | | $wb["modules_txt"] = 'Moduł';
|
| | | $wb["startmodule_txt"] = 'Moduł startowy';
|
| | | $wb["app_theme_txt"] = 'Styl';
|
| | | $wb["typ_txt"] = 'Typ';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["language_txt"] = 'Język';
|
| | | $wb["name_txt"] = 'Nazwa';
|
| | | $wb["vorname_txt"] = 'Imię';
|
| | | $wb["unternehmen_txt"] = 'Firma';
|
| | | $wb["strasse_txt"] = 'Ulica';
|
| | | $wb["ort_txt"] = 'Miasto';
|
| | | $wb["plz_txt"] = 'Kod pocztowy';
|
| | | $wb["land_txt"] = 'Państwowy';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["url_txt"] = 'Url';
|
| | | $wb["telefon_txt"] = 'Telefon';
|
| | | $wb["fax_txt"] = 'Fax';
|
| | | $wb["groups_txt"] = 'Groupy';
|
| | | $wb["default_group_txt"] = 'Domyślna grupa';
|
| | | $wb["startmodule_err"] = 'Modułu startowego nie ma wśród modułów.';
|
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['username_err'] = 'Nazwa użytkownika jest za długa lub zawiera niedozwolone znaki.'; |
| | | $wb['username_empty'] = 'Nazwa użytkownika jest pusta.'; |
| | | $wb['username_unique'] = 'Istnieje już użytkownik o takiej nazwie.'; |
| | | $wb['passwort_txt'] = 'Hasło'; |
| | | $wb['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['modules_txt'] = 'Moduł'; |
| | | $wb['startmodule_txt'] = 'Moduł startowy'; |
| | | $wb['app_theme_txt'] = 'Styl'; |
| | | $wb['typ_txt'] = 'Typ'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['language_txt'] = 'Język'; |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['vorname_txt'] = 'Imię'; |
| | | $wb['unternehmen_txt'] = 'Firma'; |
| | | $wb['strasse_txt'] = 'Ulica'; |
| | | $wb['ort_txt'] = 'Miasto'; |
| | | $wb['plz_txt'] = 'Kod pocztowy'; |
| | | $wb['land_txt'] = 'Państwowy'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['url_txt'] = 'Url'; |
| | | $wb['telefon_txt'] = 'Telefon'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['groups_txt'] = 'Groupy'; |
| | | $wb['default_group_txt'] = 'Domyślna grupa'; |
| | | $wb['startmodule_err'] = 'Modułu startowego nie ma wśród modułów.'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Użytkownicy';
|
| | | $wb["username_txt"] = 'Nazwa użytkownika';
|
| | | $wb["name_txt"] = 'Nazwa';
|
| | | $wb["vorname_txt"] = 'Imię';
|
| | | $wb["ort_txt"] = 'Miasto';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowego użytkownika';
|
| | | ?><div></div>
|
| | | |
| | | $wb['list_head_txt'] = 'Użytkownicy'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['vorname_txt'] = 'Imię'; |
| | | $wb['ort_txt'] = 'Miasto'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego użytkownika'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = "Remote Users"; |
| | | $wb['list_desc_txt'] = ""; |
| | | $wb['add_new_record_txt'] = "Add new user"; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = "Username"; |
| | | ?> |
| | | |
| | |
| | | $wb['server_id_txt'] = 'Сервер'; |
| | | $wb['ip_address_txt'] = 'IP адрес'; |
| | | $wb['virtualhost_txt'] = 'HTTP NameVirtualHost'; |
| | | $wb['ip_err'] = 'IP адрес неправилен'; |
| | | $wb['ip_error_wrong'] = 'IP адрес неправилен'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['username_txt'] = 'Username:'; |
| | | $wb['password_txt'] = 'Password:'; |
| | | $wb['function_txt'] = 'Functions:'; |
| | | $wb['username_error_unique'] = 'Username must be unique'; |
| | | $wb['username_error_empty'] = 'Username cannot be empty'; |
| | | $wb['password_error_empty'] = 'Password cannot be empty'; |
| | | $wb['password_strength_txt'] = 'Password Strength:'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb['list_head_txt'] = 'Remote Users'; |
| | | $wb['list_desc_txt'] = ''; |
| | | $wb['add_new_record_txt'] = 'Add new user'; |
| | | $wb['parent_remote_userid_txt'] = 'ID'; |
| | | $wb['username_txt'] = 'Username'; |
| | | ?> |
| | |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['ip_address_txt'] = 'IP Address'; |
| | | $wb['virtualhost_txt'] = 'HTTP NameVirtualHost'; |
| | | $wb['ip_err'] = 'IP address invalid'; |
| | | $wb['ip_error_wrong'] = 'The IP address is invalid'; |
| | | $wb['ip_error_unique'] = 'The IP address must be unique'; |
| | | ?> |
| | |
| | | $app->db->query("UPDATE client SET parent_client_id = ".intval($_SESSION['s']['user']['client_id'])." WHERE client_id = ".$this->id);
|
| | | }
|
| | |
|
| | | $app->db->query("UPDATE client SET created_at = ".time()." WHERE client_id = ".$this->id); |
| | | |
| | | /* If there is a client-template, process it */
|
| | | applyClientTemplates($this->id);
|
| | |
|
| | |
| | | <?php |
| | | $wb["limit_maildomain_txt"] = 'Max. number of email domains'; |
| | | $wb["limit_mailbox_txt"] = 'Max. number of mailboxes'; |
| | | $wb["limit_mailalias_txt"] = 'Max. number of email aliases'; |
| | | $wb["limit_mailforward_txt"] = 'Max. number of email forwarders'; |
| | | $wb["limit_mailcatchall_txt"] = 'Max. number of email catchall accounts'; |
| | | $wb["limit_mailrouting_txt"] = 'Max. number of email routes'; |
| | | $wb["limit_mailfilter_txt"] = 'Max. number of email filters'; |
| | | $wb["limit_fetchmail_txt"] = 'Max. number of fetchmail accounts'; |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["default_mailserver_txt"] = 'Default Mailserver'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["username_txt"] = 'Username'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["usertheme_txt"] = 'Theme'; |
| | | $wb["street_txt"] = 'Street'; |
| | | $wb["zip_txt"] = 'ZIP'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["state_txt"] = 'State'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["telephone_txt"] = 'Telephone'; |
| | | $wb["mobile_txt"] = 'Mobile'; |
| | | $wb["fax_txt"] = 'Fax'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["internet_txt"] = 'Internet'; |
| | | $wb["icq_txt"] = 'ICQ'; |
| | | $wb["notes_txt"] = 'Notes'; |
| | | $wb["company_txt"] = 'Company'; |
| | | $wb["title_txt"] = 'Title'; |
| | | $wb["firstname_txt"] = 'Firstname'; |
| | | $wb["surname_txt"] = 'Surname'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | | $wb["limit_database_txt"] = 'limit_database'; |
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs'; |
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions'; |
| | | $wb["ip_address_txt"] = 'ip_address'; |
| | | $wb["limit_client_error_notint"] = 'Client Limit is not a number.'; |
| | | $wb["firstname_error_empty"] = 'Firstname is empty.'; |
| | | $wb["contact_error_empty"] = 'Contact name is empty.'; |
| | | $wb["default_webserver_txt"] = 'Default Webserver'; |
| | | $wb["limit_web_domain_txt"] = 'Max. number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Max. number of web aliasdomains'; |
| | | $wb["limit_web_subdomain_txt"] = 'Max. number of web subdomains'; |
| | | $wb["limit_ftp_user_txt"] = 'Max. number of FTP users'; |
| | | $wb["default_dnsserver_txt"] = 'Default DNS Server'; |
| | | $wb["limit_dns_zone_txt"] = 'Max. number of DNS zones'; |
| | | $wb["limit_dns_record_txt"] = 'Max. number DNS records'; |
| | | $wb["limit_shell_user_txt"] = 'Max. number of Shell users'; |
| | | $wb["limit_client_txt"] = 'Max. number of Clients'; |
| | | $wb["username_error_empty"] = 'Username is empty.'; |
| | | $wb["username_error_unique"] = 'The username must be unique.'; |
| | | $wb["limit_maildomain_error_notint"] = 'The email domain limit must be a number.'; |
| | | $wb["limit_mailbox_error_notint"] = 'The mailbox limit must be a number.'; |
| | | $wb["limit_mailalias_error_notint"] = 'The email alias limit must be a number.'; |
| | | $wb["limit_mailforward_error_notint"] = 'The email forward limit must be a number.'; |
| | | $wb["limit_mailcatchall_error_notint"] = 'The email catchall limit must be a number.'; |
| | | $wb["limit_mailrouting_error_notint"] = 'The email routing limit must be a number.'; |
| | | $wb["limit_mailfilter_error_notint"] = 'The email filter limit must be a number.'; |
| | | $wb["limit_mailfetchmail_error_notint"] = 'The fetchmail limit must be a number.'; |
| | | $wb["limit_mailquota_error_notint"] = 'The email quota limit must be a number.'; |
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb["limit_spamfilter_user_error_notint"] = 'The spamfilter user limit must be a number.'; |
| | | $wb["limit_spamfilter_policy_error_notint"] = 'The spamfilter policy limit must be a number.'; |
| | | $wb["limit_web_domain_error_notint"] = 'The website limit must be a number.'; |
| | | $wb["limit_web_aliasdomain_error_notint"] = 'The website alias domain limit must be a number.'; |
| | | $wb["limit_web_subdomain_error_notint"] = 'The website subdomain limit must be a number.'; |
| | | $wb["limit_ftp_user_error_notint"] = 'The ftp user limit must be a number.'; |
| | | $wb["limit_shell_user_error_notint"] = 'The shell user limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns zone limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns record limit must be a number.'; |
| | | $wb["limit_client_error_notint"] = 'The sub client limit must be a number.'; |
| | | $wb["default_dbserver_txt"] = 'Default Database Server'; |
| | | $wb["limit_database_txt"] = 'Max. number of Databases'; |
| | | $wb["limit_database_error_notint"] = 'The database limit must be a number.'; |
| | | $wb["limit_cron_error_notint"] = 'The cron limit must be a number.'; |
| | | $wb["limit_cron_error_frequency"] = 'The cron frequency limit must be a number.'; |
| | | $wb["username_error_regex"] = 'The Username contains invalid chracaters.'; |
| | | $wb["template_master_txt"] = 'Master template'; |
| | | $wb["template_additional_txt"] = 'Addon template'; |
| | | $wb["ssh_chroot_txt"] = 'SSH-Chroot Options'; |
| | | $wb["web_php_options_txt"] = 'PHP Options'; |
| | | $wb["limit_client_error"] = 'The max. number of clients is reached.'; |
| | | $wb["limit_client_error_positive"] = 'The number of clients must be > 0'; |
| | | $wb['limit_maildomain_txt'] = 'Max. number of email domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. number of mailboxes'; |
| | | $wb['limit_mailalias_txt'] = 'Max. number of email aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. number of email forwarders'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. number of email catchall accounts'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. number of email routes'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. number of email filters'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. number of fetchmail accounts'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox quota'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. number of spamfilter users'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. number of spamfilter policys'; |
| | | $wb['default_mailserver_txt'] = 'Default Mailserver'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['language_txt'] = 'Language'; |
| | | $wb['usertheme_txt'] = 'Theme'; |
| | | $wb['street_txt'] = 'Street'; |
| | | $wb['zip_txt'] = 'ZIP'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['telephone_txt'] = 'Telephone'; |
| | | $wb['mobile_txt'] = 'Mobile'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notes'; |
| | | $wb['company_txt'] = 'Company'; |
| | | $wb['title_txt'] = 'Title'; |
| | | $wb['firstname_txt'] = 'Firstname'; |
| | | $wb['surname_txt'] = 'Surname'; |
| | | $wb['limit_domain_txt'] = 'limit_domain'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomain'; |
| | | $wb['limit_webquota_txt'] = 'limit_webquota'; |
| | | $wb['limit_database_txt'] = 'Max. number of Databases'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['ip_address_txt'] = 'ip_address'; |
| | | $wb['limit_client_error_notint'] = 'The sub client limit must be a number.'; |
| | | $wb['firstname_error_empty'] = 'Firstname is empty.'; |
| | | $wb['contact_error_empty'] = 'Contact name is empty.'; |
| | | $wb['default_webserver_txt'] = 'Default Webserver'; |
| | | $wb['limit_web_domain_txt'] = 'Max. number of web domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. number of web aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. number of web subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. number of FTP users'; |
| | | $wb['default_dnsserver_txt'] = 'Default DNS Server'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. number of DNS zones'; |
| | | $wb['limit_dns_record_txt'] = 'Max. number DNS records'; |
| | | $wb['limit_shell_user_txt'] = 'Max. number of Shell users'; |
| | | $wb['limit_client_txt'] = 'Max. number of Clients'; |
| | | $wb['username_error_empty'] = 'Username is empty.'; |
| | | $wb['username_error_unique'] = 'The username must be unique.'; |
| | | $wb['limit_maildomain_error_notint'] = 'The email domain limit must be a number.'; |
| | | $wb['limit_mailbox_error_notint'] = 'The mailbox limit must be a number.'; |
| | | $wb['limit_mailalias_error_notint'] = 'The email alias limit must be a number.'; |
| | | $wb['limit_mailforward_error_notint'] = 'The email forward limit must be a number.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'The email catchall limit must be a number.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'The email routing limit must be a number.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'The email filter limit must be a number.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'The fetchmail limit must be a number.'; |
| | | $wb['limit_mailquota_error_notint'] = 'The email quota limit must be a number.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'The spamfilter user limit must be a number.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'The spamfilter policy limit must be a number.'; |
| | | $wb['limit_web_domain_error_notint'] = 'The website limit must be a number.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'The website alias domain limit must be a number.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'The website subdomain limit must be a number.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'The ftp user limit must be a number.'; |
| | | $wb['limit_shell_user_error_notint'] = 'The shell user limit must be a number.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'The dns record limit must be a number.'; |
| | | $wb['default_dbserver_txt'] = 'Default Database Server'; |
| | | $wb['limit_database_error_notint'] = 'The database limit must be a number.'; |
| | | $wb['limit_cron_error_notint'] = 'The cron limit must be a number.'; |
| | | $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.'; |
| | | $wb['username_error_regex'] = 'The Username contains invalid chracaters.'; |
| | | $wb['template_master_txt'] = 'Master template'; |
| | | $wb['template_additional_txt'] = 'Addon template'; |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['limit_client_error'] = 'The max. number of clients is reached.'; |
| | | $wb['limit_client_error_positive'] = 'The number of clients must be > 0'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Resellers'; |
| | | $wb["client_id_txt"] = 'ID'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new reseller'; |
| | | $wb['list_head_txt'] = 'Resellers'; |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | ?> |
| | |
| | | $wb['Edit Reseller'] = 'Editar Revendedor'; |
| | | $wb['Resellers'] = 'Revendedores'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_cron_error_notint'] = 'O limite do cron deve ser um número.'; |
| | | $wb['limit_cron_error_frequency'] = 'O limite de frequência do cron deve ser um número.'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_cron_error_notint'] = 'O limite do cron deve ser um número.'; |
| | | $wb['limit_cron_error_frequency'] = 'O limite de frequência do cron deve ser um número.'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_type_txt'] = 'Tipo'; |
| | | $wb['template_name_txt'] = 'Nome do Gabarito'; |
| | | ?> |
| | | |
| | |
| | | $wb['country_txt'] = 'País'; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo cliente'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_client_error'] = 'O número máximo de clientes foi atingido.'; |
| | | $wb['limit_client_error_positive'] = 'O número de clientes precisa ser > 0'; |
| | | ?> |
| | | |
| | |
| | | $wb['country_txt'] = 'País'; |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo revendedor'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb["limit_maildomain_txt"] = 'Max. number of email domains'; |
| | | $wb["limit_mailbox_txt"] = 'Max. number of mailboxes'; |
| | | $wb["limit_mailalias_txt"] = 'Max. number of email aliases'; |
| | | $wb["limit_mailforward_txt"] = 'Max. number of email forwarders'; |
| | | $wb["limit_mailcatchall_txt"] = 'Max. number of email catchall accounts'; |
| | | $wb["limit_mailrouting_txt"] = 'Max. number of email routes'; |
| | | $wb["limit_mailfilter_txt"] = 'Max. number of email filters'; |
| | | $wb["limit_fetchmail_txt"] = 'Max. number of fetchmail accounts'; |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["default_mailserver_txt"] = 'Default Mailserver'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["username_txt"] = 'Username'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["usertheme_txt"] = 'Theme'; |
| | | $wb["street_txt"] = 'Street'; |
| | | $wb["zip_txt"] = 'ZIP'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["state_txt"] = 'State'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["telephone_txt"] = 'Telephone'; |
| | | $wb["mobile_txt"] = 'Mobile'; |
| | | $wb["fax_txt"] = 'Fax'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["internet_txt"] = 'Internet'; |
| | | $wb["icq_txt"] = 'ICQ'; |
| | | $wb["notes_txt"] = 'Notes'; |
| | | $wb["company_txt"] = 'Company'; |
| | | $wb["title_txt"] = 'Title'; |
| | | $wb["firstname_txt"] = 'Firstname'; |
| | | $wb["surname_txt"] = 'Surname'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | | $wb["limit_database_txt"] = 'limit_database'; |
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs'; |
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions'; |
| | | $wb["ip_address_txt"] = 'ip_address'; |
| | | $wb["limit_client_error_notint"] = 'Client Limit is not a number.'; |
| | | $wb["firstname_error_empty"] = 'Firstname is empty.'; |
| | | $wb["contact_error_empty"] = 'Contact name is empty.'; |
| | | $wb["default_webserver_txt"] = 'Default Webserver'; |
| | | $wb["limit_web_domain_txt"] = 'Max. number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Max. number of web aliasdomains'; |
| | | $wb["limit_web_subdomain_txt"] = 'Max. number of web subdomains'; |
| | | $wb["limit_ftp_user_txt"] = 'Max. number of FTP users'; |
| | | $wb["default_dnsserver_txt"] = 'Default DNS Server'; |
| | | $wb["limit_dns_zone_txt"] = 'Max. number of DNS zones'; |
| | | $wb["limit_dns_record_txt"] = 'Max. number DNS records'; |
| | | $wb["limit_shell_user_txt"] = 'Max. number of Shell users'; |
| | | $wb["limit_client_txt"] = 'Max. number of Clients'; |
| | | $wb["username_error_empty"] = 'Username is empty.'; |
| | | $wb["username_error_unique"] = 'The username must be unique.'; |
| | | $wb["limit_maildomain_error_notint"] = 'The email domain limit must be a number.'; |
| | | $wb["limit_mailbox_error_notint"] = 'The mailbox limit must be a number.'; |
| | | $wb["limit_mailalias_error_notint"] = 'The email alias limit must be a number.'; |
| | | $wb["limit_mailforward_error_notint"] = 'The email forward limit must be a number.'; |
| | | $wb["limit_mailcatchall_error_notint"] = 'The email catchall limit must be a number.'; |
| | | $wb["limit_mailrouting_error_notint"] = 'The email routing limit must be a number.'; |
| | | $wb["limit_mailfilter_error_notint"] = 'The email filter limit must be a number.'; |
| | | $wb["limit_mailfetchmail_error_notint"] = 'The fetchmail limit must be a number.'; |
| | | $wb["limit_mailquota_error_notint"] = 'The email quota limit must be a number.'; |
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb["limit_spamfilter_user_error_notint"] = 'The spamfilter user limit must be a number.'; |
| | | $wb["limit_spamfilter_policy_error_notint"] = 'The spamfilter policy limit must be a number.'; |
| | | $wb["limit_web_domain_error_notint"] = 'The website limit must be a number.'; |
| | | $wb["limit_web_aliasdomain_error_notint"] = 'The website alias domain limit must be a number.'; |
| | | $wb["limit_web_subdomain_error_notint"] = 'The website subdomain limit must be a number.'; |
| | | $wb["limit_ftp_user_error_notint"] = 'The ftp user limit must be a number.'; |
| | | $wb["limit_shell_user_error_notint"] = 'The shell user limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns zone limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns record limit must be a number.'; |
| | | $wb["limit_client_error_notint"] = 'The sub client limit must be a number.'; |
| | | $wb["default_dbserver_txt"] = 'Default Database Server'; |
| | | $wb["limit_database_txt"] = 'Max. number of Databases'; |
| | | $wb["limit_database_error_notint"] = 'The database limit must be a number.'; |
| | | $wb["limit_cron_error_notint"] = 'The cron limit must be a number.'; |
| | | $wb["limit_cron_error_frequency"] = 'The cron frequency limit must be a number.'; |
| | | $wb["username_error_regex"] = 'The Username contains invalid chracaters.'; |
| | | $wb["template_master_txt"] = 'Master template'; |
| | | $wb["template_additional_txt"] = 'Addon template'; |
| | | $wb["ssh_chroot_txt"] = 'SSH-Chroot Options'; |
| | | $wb["web_php_options_txt"] = 'PHP Options'; |
| | | $wb["limit_client_error"] = 'The max. number of clients is reached.'; |
| | | $wb["limit_client_error_positive"] = 'The number of clients must be > 0'; |
| | | $wb['limit_maildomain_txt'] = 'Max. number of email domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. number of mailboxes'; |
| | | $wb['limit_mailalias_txt'] = 'Max. number of email aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. number of email forwarders'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. number of email catchall accounts'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. number of email routes'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. number of email filters'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. number of fetchmail accounts'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox quota'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. number of spamfilter users'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. number of spamfilter policys'; |
| | | $wb['default_mailserver_txt'] = 'Default Mailserver'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['language_txt'] = 'Language'; |
| | | $wb['usertheme_txt'] = 'Theme'; |
| | | $wb['street_txt'] = 'Street'; |
| | | $wb['zip_txt'] = 'ZIP'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['telephone_txt'] = 'Telephone'; |
| | | $wb['mobile_txt'] = 'Mobile'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notes'; |
| | | $wb['company_txt'] = 'Company'; |
| | | $wb['title_txt'] = 'Title'; |
| | | $wb['firstname_txt'] = 'Firstname'; |
| | | $wb['surname_txt'] = 'Surname'; |
| | | $wb['limit_domain_txt'] = 'limit_domain'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomain'; |
| | | $wb['limit_webquota_txt'] = 'limit_webquota'; |
| | | $wb['limit_database_txt'] = 'Max. number of Databases'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['ip_address_txt'] = 'ip_address'; |
| | | $wb['limit_client_error_notint'] = 'The sub client limit must be a number.'; |
| | | $wb['firstname_error_empty'] = 'Firstname is empty.'; |
| | | $wb['contact_error_empty'] = 'Contact name is empty.'; |
| | | $wb['default_webserver_txt'] = 'Default Webserver'; |
| | | $wb['limit_web_domain_txt'] = 'Max. number of web domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. number of web aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. number of web subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. number of FTP users'; |
| | | $wb['default_dnsserver_txt'] = 'Default DNS Server'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. number of DNS zones'; |
| | | $wb['limit_dns_record_txt'] = 'Max. number DNS records'; |
| | | $wb['limit_shell_user_txt'] = 'Max. number of Shell users'; |
| | | $wb['limit_client_txt'] = 'Max. number of Clients'; |
| | | $wb['username_error_empty'] = 'Username is empty.'; |
| | | $wb['username_error_unique'] = 'The username must be unique.'; |
| | | $wb['limit_maildomain_error_notint'] = 'The email domain limit must be a number.'; |
| | | $wb['limit_mailbox_error_notint'] = 'The mailbox limit must be a number.'; |
| | | $wb['limit_mailalias_error_notint'] = 'The email alias limit must be a number.'; |
| | | $wb['limit_mailforward_error_notint'] = 'The email forward limit must be a number.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'The email catchall limit must be a number.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'The email routing limit must be a number.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'The email filter limit must be a number.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'The fetchmail limit must be a number.'; |
| | | $wb['limit_mailquota_error_notint'] = 'The email quota limit must be a number.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'The spamfilter user limit must be a number.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'The spamfilter policy limit must be a number.'; |
| | | $wb['limit_web_domain_error_notint'] = 'The website limit must be a number.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'The website alias domain limit must be a number.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'The website subdomain limit must be a number.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'The ftp user limit must be a number.'; |
| | | $wb['limit_shell_user_error_notint'] = 'The shell user limit must be a number.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'The dns record limit must be a number.'; |
| | | $wb['default_dbserver_txt'] = 'Default Database Server'; |
| | | $wb['limit_database_error_notint'] = 'The database limit must be a number.'; |
| | | $wb['limit_cron_error_notint'] = 'The cron limit must be a number.'; |
| | | $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.'; |
| | | $wb['username_error_regex'] = 'The Username contains invalid chracaters.'; |
| | | $wb['template_master_txt'] = 'Master template'; |
| | | $wb['template_additional_txt'] = 'Addon template'; |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['limit_client_error'] = 'The max. number of clients is reached.'; |
| | | $wb['limit_client_error_positive'] = 'The number of clients must be > 0'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Resellers'; |
| | | $wb["client_id_txt"] = 'ID'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new reseller'; |
| | | $wb['list_head_txt'] = 'Resellers'; |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["limit_maildomain_txt"] = 'Max. number of email domains'; |
| | | $wb["limit_mailbox_txt"] = 'Max. number of mailboxes'; |
| | | $wb["limit_mailalias_txt"] = 'Max. number of email aliases'; |
| | | $wb["limit_mailforward_txt"] = 'Max. number of email forwarders'; |
| | | $wb["limit_mailcatchall_txt"] = 'Max. number of email catchall accounts'; |
| | | $wb["limit_mailrouting_txt"] = 'Max. number of email routes'; |
| | | $wb["limit_mailfilter_txt"] = 'Max. number of email filters'; |
| | | $wb["limit_fetchmail_txt"] = 'Max. number of fetchmail accounts'; |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["default_mailserver_txt"] = 'Default Mailserver'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["username_txt"] = 'Username'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["usertheme_txt"] = 'Theme'; |
| | | $wb["street_txt"] = 'Street'; |
| | | $wb["zip_txt"] = 'ZIP'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["state_txt"] = 'State'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["telephone_txt"] = 'Telephone'; |
| | | $wb["mobile_txt"] = 'Mobile'; |
| | | $wb["fax_txt"] = 'Fax'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["internet_txt"] = 'Internet'; |
| | | $wb["icq_txt"] = 'ICQ'; |
| | | $wb["notes_txt"] = 'Notes'; |
| | | $wb["company_txt"] = 'Company'; |
| | | $wb["title_txt"] = 'Title'; |
| | | $wb["firstname_txt"] = 'Firstname'; |
| | | $wb["surname_txt"] = 'Surname'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | | $wb["limit_database_txt"] = 'limit_database'; |
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs'; |
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions'; |
| | | $wb["ip_address_txt"] = 'ip_address'; |
| | | $wb["limit_client_error_notint"] = 'Client Limit is not a number.'; |
| | | $wb["firstname_error_empty"] = 'Firstname is empty.'; |
| | | $wb["contact_error_empty"] = 'Contact name is empty.'; |
| | | $wb["default_webserver_txt"] = 'Default Webserver'; |
| | | $wb["limit_web_domain_txt"] = 'Max. number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Max. number of web aliasdomains'; |
| | | $wb["limit_web_subdomain_txt"] = 'Max. number of web subdomains'; |
| | | $wb["limit_ftp_user_txt"] = 'Max. number of FTP users'; |
| | | $wb["default_dnsserver_txt"] = 'Default DNS Server'; |
| | | $wb["limit_dns_zone_txt"] = 'Max. number of DNS zones'; |
| | | $wb["limit_dns_record_txt"] = 'Max. number DNS records'; |
| | | $wb["limit_shell_user_txt"] = 'Max. number of Shell users'; |
| | | $wb["limit_client_txt"] = 'Max. number of Clients'; |
| | | $wb["username_error_empty"] = 'Username is empty.'; |
| | | $wb["username_error_unique"] = 'The username must be unique.'; |
| | | $wb["limit_maildomain_error_notint"] = 'The email domain limit must be a number.'; |
| | | $wb["limit_mailbox_error_notint"] = 'The mailbox limit must be a number.'; |
| | | $wb["limit_mailalias_error_notint"] = 'The email alias limit must be a number.'; |
| | | $wb["limit_mailforward_error_notint"] = 'The email forward limit must be a number.'; |
| | | $wb["limit_mailcatchall_error_notint"] = 'The email catchall limit must be a number.'; |
| | | $wb["limit_mailrouting_error_notint"] = 'The email routing limit must be a number.'; |
| | | $wb["limit_mailfilter_error_notint"] = 'The email filter limit must be a number.'; |
| | | $wb["limit_mailfetchmail_error_notint"] = 'The fetchmail limit must be a number.'; |
| | | $wb["limit_mailquota_error_notint"] = 'The email quota limit must be a number.'; |
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb["limit_spamfilter_user_error_notint"] = 'The spamfilter user limit must be a number.'; |
| | | $wb["limit_spamfilter_policy_error_notint"] = 'The spamfilter policy limit must be a number.'; |
| | | $wb["limit_web_domain_error_notint"] = 'The website limit must be a number.'; |
| | | $wb["limit_web_aliasdomain_error_notint"] = 'The website alias domain limit must be a number.'; |
| | | $wb["limit_web_subdomain_error_notint"] = 'The website subdomain limit must be a number.'; |
| | | $wb["limit_ftp_user_error_notint"] = 'The ftp user limit must be a number.'; |
| | | $wb["limit_shell_user_error_notint"] = 'The shell user limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns zone limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns record limit must be a number.'; |
| | | $wb["limit_client_error_notint"] = 'The sub client limit must be a number.'; |
| | | $wb["default_dbserver_txt"] = 'Default Database Server'; |
| | | $wb["limit_database_txt"] = 'Max. number of Databases'; |
| | | $wb["limit_database_error_notint"] = 'The database limit must be a number.'; |
| | | $wb["limit_cron_error_notint"] = 'The cron limit must be a number.'; |
| | | $wb["limit_cron_error_frequency"] = 'The cron frequency limit must be a number.'; |
| | | $wb["username_error_regex"] = 'The Username contains invalid chracaters.'; |
| | | $wb["template_master_txt"] = 'Master template'; |
| | | $wb["template_additional_txt"] = 'Addon template'; |
| | | $wb["ssh_chroot_txt"] = 'SSH-Chroot Options'; |
| | | $wb["web_php_options_txt"] = 'PHP Options'; |
| | | $wb["limit_client_error"] = 'The max. number of clients is reached.'; |
| | | $wb["limit_client_error_positive"] = 'The number of clients must be > 0'; |
| | | $wb['limit_maildomain_txt'] = 'Max. number of email domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. number of mailboxes'; |
| | | $wb['limit_mailalias_txt'] = 'Max. number of email aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. number of email forwarders'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. number of email catchall accounts'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. number of email routes'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. number of email filters'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. number of fetchmail accounts'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox quota'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. number of spamfilter users'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. number of spamfilter policys'; |
| | | $wb['default_mailserver_txt'] = 'Default Mailserver'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['language_txt'] = 'Language'; |
| | | $wb['usertheme_txt'] = 'Theme'; |
| | | $wb['street_txt'] = 'Street'; |
| | | $wb['zip_txt'] = 'ZIP'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['telephone_txt'] = 'Telephone'; |
| | | $wb['mobile_txt'] = 'Mobile'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notes'; |
| | | $wb['company_txt'] = 'Company'; |
| | | $wb['title_txt'] = 'Title'; |
| | | $wb['firstname_txt'] = 'Firstname'; |
| | | $wb['surname_txt'] = 'Surname'; |
| | | $wb['limit_domain_txt'] = 'limit_domain'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomain'; |
| | | $wb['limit_webquota_txt'] = 'limit_webquota'; |
| | | $wb['limit_database_txt'] = 'Max. number of Databases'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['ip_address_txt'] = 'ip_address'; |
| | | $wb['limit_client_error_notint'] = 'The sub client limit must be a number.'; |
| | | $wb['firstname_error_empty'] = 'Firstname is empty.'; |
| | | $wb['contact_error_empty'] = 'Contact name is empty.'; |
| | | $wb['default_webserver_txt'] = 'Default Webserver'; |
| | | $wb['limit_web_domain_txt'] = 'Max. number of web domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. number of web aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. number of web subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. number of FTP users'; |
| | | $wb['default_dnsserver_txt'] = 'Default DNS Server'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. number of DNS zones'; |
| | | $wb['limit_dns_record_txt'] = 'Max. number DNS records'; |
| | | $wb['limit_shell_user_txt'] = 'Max. number of Shell users'; |
| | | $wb['limit_client_txt'] = 'Max. number of Clients'; |
| | | $wb['username_error_empty'] = 'Username is empty.'; |
| | | $wb['username_error_unique'] = 'The username must be unique.'; |
| | | $wb['limit_maildomain_error_notint'] = 'The email domain limit must be a number.'; |
| | | $wb['limit_mailbox_error_notint'] = 'The mailbox limit must be a number.'; |
| | | $wb['limit_mailalias_error_notint'] = 'The email alias limit must be a number.'; |
| | | $wb['limit_mailforward_error_notint'] = 'The email forward limit must be a number.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'The email catchall limit must be a number.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'The email routing limit must be a number.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'The email filter limit must be a number.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'The fetchmail limit must be a number.'; |
| | | $wb['limit_mailquota_error_notint'] = 'The email quota limit must be a number.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'The spamfilter user limit must be a number.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'The spamfilter policy limit must be a number.'; |
| | | $wb['limit_web_domain_error_notint'] = 'The website limit must be a number.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'The website alias domain limit must be a number.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'The website subdomain limit must be a number.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'The ftp user limit must be a number.'; |
| | | $wb['limit_shell_user_error_notint'] = 'The shell user limit must be a number.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'The dns record limit must be a number.'; |
| | | $wb['default_dbserver_txt'] = 'Default Database Server'; |
| | | $wb['limit_database_error_notint'] = 'The database limit must be a number.'; |
| | | $wb['limit_cron_error_notint'] = 'The cron limit must be a number.'; |
| | | $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.'; |
| | | $wb['username_error_regex'] = 'The Username contains invalid chracaters.'; |
| | | $wb['template_master_txt'] = 'Master template'; |
| | | $wb['template_additional_txt'] = 'Addon template'; |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['limit_client_error'] = 'The max. number of clients is reached.'; |
| | | $wb['limit_client_error_positive'] = 'The number of clients must be > 0'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Resellers'; |
| | | $wb["client_id_txt"] = 'ID'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new reseller'; |
| | | $wb['list_head_txt'] = 'Resellers'; |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["limit_maildomain_txt"] = 'Max. number of email domains'; |
| | | $wb["limit_mailbox_txt"] = 'Max. number of mailboxes'; |
| | | $wb["limit_mailalias_txt"] = 'Max. number of email aliases'; |
| | | $wb["limit_mailforward_txt"] = 'Max. number of email forwarders'; |
| | | $wb["limit_mailcatchall_txt"] = 'Max. number of email catchall accounts'; |
| | | $wb["limit_mailrouting_txt"] = 'Max. number of email routes'; |
| | | $wb["limit_mailfilter_txt"] = 'Max. number of email filters'; |
| | | $wb["limit_fetchmail_txt"] = 'Max. number of fetchmail accounts'; |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["default_mailserver_txt"] = 'Default Mailserver'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["username_txt"] = 'Username'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["usertheme_txt"] = 'Theme'; |
| | | $wb["street_txt"] = 'Street'; |
| | | $wb["zip_txt"] = 'ZIP'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["state_txt"] = 'State'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["telephone_txt"] = 'Telephone'; |
| | | $wb["mobile_txt"] = 'Mobile'; |
| | | $wb["fax_txt"] = 'Fax'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["internet_txt"] = 'Internet'; |
| | | $wb["icq_txt"] = 'ICQ'; |
| | | $wb["notes_txt"] = 'Notes'; |
| | | $wb["company_txt"] = 'Company'; |
| | | $wb["title_txt"] = 'Title'; |
| | | $wb["firstname_txt"] = 'Firstname'; |
| | | $wb["surname_txt"] = 'Surname'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | | $wb["limit_database_txt"] = 'limit_database'; |
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs'; |
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions'; |
| | | $wb["ip_address_txt"] = 'ip_address'; |
| | | $wb["limit_client_error_notint"] = 'Client Limit is not a number.'; |
| | | $wb["firstname_error_empty"] = 'Firstname is empty.'; |
| | | $wb["contact_error_empty"] = 'Contact name is empty.'; |
| | | $wb["default_webserver_txt"] = 'Default Webserver'; |
| | | $wb["limit_web_domain_txt"] = 'Max. number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Max. number of web aliasdomains'; |
| | | $wb["limit_web_subdomain_txt"] = 'Max. number of web subdomains'; |
| | | $wb["limit_ftp_user_txt"] = 'Max. number of FTP users'; |
| | | $wb["default_dnsserver_txt"] = 'Default DNS Server'; |
| | | $wb["limit_dns_zone_txt"] = 'Max. number of DNS zones'; |
| | | $wb["limit_dns_record_txt"] = 'Max. number DNS records'; |
| | | $wb["limit_shell_user_txt"] = 'Max. number of Shell users'; |
| | | $wb["limit_client_txt"] = 'Max. number of Clients'; |
| | | $wb["username_error_empty"] = 'Username is empty.'; |
| | | $wb["username_error_unique"] = 'The username must be unique.'; |
| | | $wb["limit_maildomain_error_notint"] = 'The email domain limit must be a number.'; |
| | | $wb["limit_mailbox_error_notint"] = 'The mailbox limit must be a number.'; |
| | | $wb["limit_mailalias_error_notint"] = 'The email alias limit must be a number.'; |
| | | $wb["limit_mailforward_error_notint"] = 'The email forward limit must be a number.'; |
| | | $wb["limit_mailcatchall_error_notint"] = 'The email catchall limit must be a number.'; |
| | | $wb["limit_mailrouting_error_notint"] = 'The email routing limit must be a number.'; |
| | | $wb["limit_mailfilter_error_notint"] = 'The email filter limit must be a number.'; |
| | | $wb["limit_mailfetchmail_error_notint"] = 'The fetchmail limit must be a number.'; |
| | | $wb["limit_mailquota_error_notint"] = 'The email quota limit must be a number.'; |
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb["limit_spamfilter_user_error_notint"] = 'The spamfilter user limit must be a number.'; |
| | | $wb["limit_spamfilter_policy_error_notint"] = 'The spamfilter policy limit must be a number.'; |
| | | $wb["limit_web_domain_error_notint"] = 'The website limit must be a number.'; |
| | | $wb["limit_web_aliasdomain_error_notint"] = 'The website alias domain limit must be a number.'; |
| | | $wb["limit_web_subdomain_error_notint"] = 'The website subdomain limit must be a number.'; |
| | | $wb["limit_ftp_user_error_notint"] = 'The ftp user limit must be a number.'; |
| | | $wb["limit_shell_user_error_notint"] = 'The shell user limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns zone limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns record limit must be a number.'; |
| | | $wb["limit_client_error_notint"] = 'The sub client limit must be a number.'; |
| | | $wb["default_dbserver_txt"] = 'Default Database Server'; |
| | | $wb["limit_database_txt"] = 'Max. number of Databases'; |
| | | $wb["limit_database_error_notint"] = 'The database limit must be a number.'; |
| | | $wb["limit_cron_error_notint"] = 'The cron limit must be a number.'; |
| | | $wb["limit_cron_error_frequency"] = 'The cron frequency limit must be a number.'; |
| | | $wb["username_error_regex"] = 'The Username contains invalid chracaters.'; |
| | | $wb["template_master_txt"] = 'Master template'; |
| | | $wb["template_additional_txt"] = 'Addon template'; |
| | | $wb["ssh_chroot_txt"] = 'SSH-Chroot Options'; |
| | | $wb["web_php_options_txt"] = 'PHP Options'; |
| | | $wb["limit_client_error"] = 'The max. number of clients is reached.'; |
| | | $wb["limit_client_error_positive"] = 'The number of clients must be > 0'; |
| | | $wb['limit_maildomain_txt'] = 'Max. number of email domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. number of mailboxes'; |
| | | $wb['limit_mailalias_txt'] = 'Max. number of email aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. number of email forwarders'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. number of email catchall accounts'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. number of email routes'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. number of email filters'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. number of fetchmail accounts'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox quota'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. number of spamfilter users'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. number of spamfilter policys'; |
| | | $wb['default_mailserver_txt'] = 'Default Mailserver'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['language_txt'] = 'Language'; |
| | | $wb['usertheme_txt'] = 'Theme'; |
| | | $wb['street_txt'] = 'Street'; |
| | | $wb['zip_txt'] = 'ZIP'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['telephone_txt'] = 'Telephone'; |
| | | $wb['mobile_txt'] = 'Mobile'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notes'; |
| | | $wb['company_txt'] = 'Company'; |
| | | $wb['title_txt'] = 'Title'; |
| | | $wb['firstname_txt'] = 'Firstname'; |
| | | $wb['surname_txt'] = 'Surname'; |
| | | $wb['limit_domain_txt'] = 'limit_domain'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomain'; |
| | | $wb['limit_webquota_txt'] = 'limit_webquota'; |
| | | $wb['limit_database_txt'] = 'Max. number of Databases'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['ip_address_txt'] = 'ip_address'; |
| | | $wb['limit_client_error_notint'] = 'The sub client limit must be a number.'; |
| | | $wb['firstname_error_empty'] = 'Firstname is empty.'; |
| | | $wb['contact_error_empty'] = 'Contact name is empty.'; |
| | | $wb['default_webserver_txt'] = 'Default Webserver'; |
| | | $wb['limit_web_domain_txt'] = 'Max. number of web domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. number of web aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. number of web subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. number of FTP users'; |
| | | $wb['default_dnsserver_txt'] = 'Default DNS Server'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. number of DNS zones'; |
| | | $wb['limit_dns_record_txt'] = 'Max. number DNS records'; |
| | | $wb['limit_shell_user_txt'] = 'Max. number of Shell users'; |
| | | $wb['limit_client_txt'] = 'Max. number of Clients'; |
| | | $wb['username_error_empty'] = 'Username is empty.'; |
| | | $wb['username_error_unique'] = 'The username must be unique.'; |
| | | $wb['limit_maildomain_error_notint'] = 'The email domain limit must be a number.'; |
| | | $wb['limit_mailbox_error_notint'] = 'The mailbox limit must be a number.'; |
| | | $wb['limit_mailalias_error_notint'] = 'The email alias limit must be a number.'; |
| | | $wb['limit_mailforward_error_notint'] = 'The email forward limit must be a number.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'The email catchall limit must be a number.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'The email routing limit must be a number.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'The email filter limit must be a number.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'The fetchmail limit must be a number.'; |
| | | $wb['limit_mailquota_error_notint'] = 'The email quota limit must be a number.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'The spamfilter user limit must be a number.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'The spamfilter policy limit must be a number.'; |
| | | $wb['limit_web_domain_error_notint'] = 'The website limit must be a number.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'The website alias domain limit must be a number.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'The website subdomain limit must be a number.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'The ftp user limit must be a number.'; |
| | | $wb['limit_shell_user_error_notint'] = 'The shell user limit must be a number.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'The dns record limit must be a number.'; |
| | | $wb['default_dbserver_txt'] = 'Default Database Server'; |
| | | $wb['limit_database_error_notint'] = 'The database limit must be a number.'; |
| | | $wb['limit_cron_error_notint'] = 'The cron limit must be a number.'; |
| | | $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.'; |
| | | $wb['username_error_regex'] = 'The Username contains invalid chracaters.'; |
| | | $wb['template_master_txt'] = 'Master template'; |
| | | $wb['template_additional_txt'] = 'Addon template'; |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['limit_client_error'] = 'The max. number of clients is reached.'; |
| | | $wb['limit_client_error_positive'] = 'The number of clients must be > 0'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Resellers'; |
| | | $wb["client_id_txt"] = 'ID'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new reseller'; |
| | | $wb['list_head_txt'] = 'Resellers'; |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | ?> |
| | |
| | | $wb['Edit Client'] = 'Ügyfél adatok szerkesztése'; |
| | | $wb['Clients'] = 'Ügyfelek'; |
| | | $wb['Edit Client-Templates'] = 'Edit Client-Templates'; |
| | | $wb['Add Reseller'] = 'Add Reseller'; |
| | | $wb['Edit Reseller'] = 'Edit Reseller'; |
| | | $wb['Resellers'] = 'Resellers'; |
| | | ?> |
| | | |
| | |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['limit_client_error'] = 'The max. number of clients is reached.'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['limit_cron_error_notint'] = 'The cron limit must be a number.'; |
| | | $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | |
| | | $wb["limit_client_error_notint"] = 'Client Limit is not a number.'; |
| | | $wb["limit_maildomain_txt"] = 'Max. number of email domains'; |
| | | $wb["limit_mailbox_txt"] = 'Max. number of mailboxes'; |
| | | $wb["limit_mailalias_txt"] = 'Max. number of email aliases'; |
| | | $wb["limit_mailforward_txt"] = 'Max. number of email forwarders'; |
| | | $wb["limit_mailcatchall_txt"] = 'Max. number of email catchall accounts'; |
| | | $wb["limit_mailrouting_txt"] = 'Max. number of email routes'; |
| | | $wb["limit_mailfilter_txt"] = 'Max. number of email filters'; |
| | | $wb["limit_fetchmail_txt"] = 'Max. number of fetchmail accounts'; |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | | $wb["limit_database_txt"] = 'limit_database'; |
| | | $wb["limit_web_domain_txt"] = 'Max. number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Max. number of web aliasdomains'; |
| | | $wb["limit_web_subdomain_txt"] = 'Max. number of web subdomains'; |
| | | $wb["limit_ftp_user_txt"] = 'Max. number of FTP users'; |
| | | $wb["limit_dns_zone_txt"] = 'Max. number of DNS zones'; |
| | | $wb["limit_dns_record_txt"] = 'Max. number DNS records'; |
| | | $wb["limit_shell_user_txt"] = 'Max. number of Shell users'; |
| | | $wb["limit_client_txt"] = 'Max. number of Clients'; |
| | | $wb["limit_maildomain_error_notint"] = 'The email domain limit must be a number.'; |
| | | $wb["limit_mailbox_error_notint"] = 'The mailbox limit must be a number.'; |
| | | $wb["limit_mailalias_error_notint"] = 'The email alias limit must be a number.'; |
| | | $wb["limit_mailforward_error_notint"] = 'The email forward limit must be a number.'; |
| | | $wb["limit_mailcatchall_error_notint"] = 'The email catchall limit must be a number.'; |
| | | $wb["limit_mailrouting_error_notint"] = 'The email routing limit must be a number.'; |
| | | $wb["limit_mailfilter_error_notint"] = 'The email filter limit must be a number.'; |
| | | $wb["limit_mailfetchmail_error_notint"] = 'The fetchmail limit must be a number.'; |
| | | $wb["limit_mailquota_error_notint"] = 'The email quota limit must be a number.'; |
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb["limit_spamfilter_user_error_notint"] = 'The spamfilter user limit must be a number.'; |
| | | $wb["limit_spamfilter_policy_error_notint"] = 'The spamfilter policy limit must be a number.'; |
| | | $wb["limit_web_domain_error_notint"] = 'The website limit must be a number.'; |
| | | $wb["limit_web_aliasdomain_error_notint"] = 'The website alias domain limit must be a number.'; |
| | | $wb["limit_web_subdomain_error_notint"] = 'The website subdomain limit must be a number.'; |
| | | $wb["limit_ftp_user_error_notint"] = 'The ftp user limit must be a number.'; |
| | | $wb["limit_shell_user_error_notint"] = 'The shell user limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns zone limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns record limit must be a number.'; |
| | | $wb["limit_database_txt"] = 'Max. number of Databases'; |
| | | $wb["limit_database_error_notint"] = 'The database limit must be a number.'; |
| | | $wb["error_template_name_empty"] = 'Please enter a Template name'; |
| | | $wb['limit_client_error_notint'] = 'Client Limit is not a number.'; |
| | | $wb['limit_maildomain_txt'] = 'Max. number of email domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. number of mailboxes'; |
| | | $wb['limit_mailalias_txt'] = 'Max. number of email aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. number of email forwarders'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. number of email catchall accounts'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. number of email routes'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. number of email filters'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. number of fetchmail accounts'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox quota'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. number of spamfilter users'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. number of spamfilter policys'; |
| | | $wb['limit_domain_txt'] = 'limit_domain'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomain'; |
| | | $wb['limit_webquota_txt'] = 'limit_webquota'; |
| | | $wb['limit_database_txt'] = 'Max. number of Databases'; |
| | | $wb['limit_web_domain_txt'] = 'Max. number of web domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. number of web aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. number of web subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. number of FTP users'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. number of DNS zones'; |
| | | $wb['limit_dns_record_txt'] = 'Max. number DNS records'; |
| | | $wb['limit_shell_user_txt'] = 'Max. number of Shell users'; |
| | | $wb['limit_client_txt'] = 'Max. number of Clients'; |
| | | $wb['limit_maildomain_error_notint'] = 'The email domain limit must be a number.'; |
| | | $wb['limit_mailbox_error_notint'] = 'The mailbox limit must be a number.'; |
| | | $wb['limit_mailalias_error_notint'] = 'The email alias limit must be a number.'; |
| | | $wb['limit_mailforward_error_notint'] = 'The email forward limit must be a number.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'The email catchall limit must be a number.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'The email routing limit must be a number.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'The email filter limit must be a number.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'The fetchmail limit must be a number.'; |
| | | $wb['limit_mailquota_error_notint'] = 'The email quota limit must be a number.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'The spamfilter user limit must be a number.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'The spamfilter policy limit must be a number.'; |
| | | $wb['limit_web_domain_error_notint'] = 'The website limit must be a number.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'The website alias domain limit must be a number.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'The website subdomain limit must be a number.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'The ftp user limit must be a number.'; |
| | | $wb['limit_shell_user_error_notint'] = 'The shell user limit must be a number.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'The dns record limit must be a number.'; |
| | | $wb['limit_database_error_notint'] = 'The database limit must be a number.'; |
| | | $wb['error_template_name_empty'] = 'Please enter a Template name'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['limit_cron_error_notint'] = 'The cron limit must be a number.'; |
| | | $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Client-Templates'; |
| | | $wb["template_type_txt"] = 'Type'; |
| | | $wb["template_name_txt"] = 'Template name'; |
| | | $wb['list_head_txt'] = 'Client-Templates'; |
| | | $wb['template_type_txt'] = 'Type'; |
| | | $wb['template_name_txt'] = 'Template name'; |
| | | ?> |
| | | |
| | |
| | | $wb['country_txt'] = 'Ország'; |
| | | $wb['add_new_record_txt'] = 'Új ügyfél hozzáadása'; |
| | | ?> |
| | | |
New file |
| | |
| | | <?php |
| | | $wb["limit_maildomain_txt"] = 'Max. number of email domains'; |
| | | $wb["limit_mailbox_txt"] = 'Max. number of mailboxes'; |
| | | $wb["limit_mailalias_txt"] = 'Max. number of email aliases'; |
| | | $wb["limit_mailforward_txt"] = 'Max. number of email forwarders'; |
| | | $wb["limit_mailcatchall_txt"] = 'Max. number of email catchall accounts'; |
| | | $wb["limit_mailrouting_txt"] = 'Max. number of email routes'; |
| | | $wb["limit_mailfilter_txt"] = 'Max. number of email filters'; |
| | | $wb["limit_fetchmail_txt"] = 'Max. number of fetchmail accounts'; |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["default_mailserver_txt"] = 'Default Mailserver'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["username_txt"] = 'Username'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["usertheme_txt"] = 'Theme'; |
| | | $wb["street_txt"] = 'Street'; |
| | | $wb["zip_txt"] = 'ZIP'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["state_txt"] = 'State'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["telephone_txt"] = 'Telephone'; |
| | | $wb["mobile_txt"] = 'Mobile'; |
| | | $wb["fax_txt"] = 'Fax'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["internet_txt"] = 'Internet'; |
| | | $wb["icq_txt"] = 'ICQ'; |
| | | $wb["notes_txt"] = 'Notes'; |
| | | $wb["company_txt"] = 'Company'; |
| | | $wb["title_txt"] = 'Title'; |
| | | $wb["firstname_txt"] = 'Firstname'; |
| | | $wb["surname_txt"] = 'Surname'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | | $wb["limit_database_txt"] = 'limit_database'; |
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs'; |
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions'; |
| | | $wb["ip_address_txt"] = 'ip_address'; |
| | | $wb["limit_client_error_notint"] = 'Client Limit is not a number.'; |
| | | $wb["firstname_error_empty"] = 'Firstname is empty.'; |
| | | $wb["contact_error_empty"] = 'Contact name is empty.'; |
| | | $wb["default_webserver_txt"] = 'Default Webserver'; |
| | | $wb["limit_web_domain_txt"] = 'Max. number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Max. number of web aliasdomains'; |
| | | $wb["limit_web_subdomain_txt"] = 'Max. number of web subdomains'; |
| | | $wb["limit_ftp_user_txt"] = 'Max. number of FTP users'; |
| | | $wb["default_dnsserver_txt"] = 'Default DNS Server'; |
| | | $wb["limit_dns_zone_txt"] = 'Max. number of DNS zones'; |
| | | $wb["limit_dns_record_txt"] = 'Max. number DNS records'; |
| | | $wb["limit_shell_user_txt"] = 'Max. number of Shell users'; |
| | | $wb["limit_client_txt"] = 'Max. number of Clients'; |
| | | $wb["username_error_empty"] = 'Username is empty.'; |
| | | $wb["username_error_unique"] = 'The username must be unique.'; |
| | | $wb["limit_maildomain_error_notint"] = 'The email domain limit must be a number.'; |
| | | $wb["limit_mailbox_error_notint"] = 'The mailbox limit must be a number.'; |
| | | $wb["limit_mailalias_error_notint"] = 'The email alias limit must be a number.'; |
| | | $wb["limit_mailforward_error_notint"] = 'The email forward limit must be a number.'; |
| | | $wb["limit_mailcatchall_error_notint"] = 'The email catchall limit must be a number.'; |
| | | $wb["limit_mailrouting_error_notint"] = 'The email routing limit must be a number.'; |
| | | $wb["limit_mailfilter_error_notint"] = 'The email filter limit must be a number.'; |
| | | $wb["limit_mailfetchmail_error_notint"] = 'The fetchmail limit must be a number.'; |
| | | $wb["limit_mailquota_error_notint"] = 'The email quota limit must be a number.'; |
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb["limit_spamfilter_user_error_notint"] = 'The spamfilter user limit must be a number.'; |
| | | $wb["limit_spamfilter_policy_error_notint"] = 'The spamfilter policy limit must be a number.'; |
| | | $wb["limit_web_domain_error_notint"] = 'The website limit must be a number.'; |
| | | $wb["limit_web_aliasdomain_error_notint"] = 'The website alias domain limit must be a number.'; |
| | | $wb["limit_web_subdomain_error_notint"] = 'The website subdomain limit must be a number.'; |
| | | $wb["limit_ftp_user_error_notint"] = 'The ftp user limit must be a number.'; |
| | | $wb["limit_shell_user_error_notint"] = 'The shell user limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns zone limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns record limit must be a number.'; |
| | | $wb["limit_client_error_notint"] = 'The sub client limit must be a number.'; |
| | | $wb["default_dbserver_txt"] = 'Default Database Server'; |
| | | $wb["limit_database_txt"] = 'Max. number of Databases'; |
| | | $wb["limit_database_error_notint"] = 'The database limit must be a number.'; |
| | | $wb["limit_cron_error_notint"] = 'The cron limit must be a number.'; |
| | | $wb["limit_cron_error_frequency"] = 'The cron frequency limit must be a number.'; |
| | | $wb["username_error_regex"] = 'The Username contains invalid chracaters.'; |
| | | $wb["template_master_txt"] = 'Master template'; |
| | | $wb["template_additional_txt"] = 'Addon template'; |
| | | $wb["ssh_chroot_txt"] = 'SSH-Chroot Options'; |
| | | $wb["web_php_options_txt"] = 'PHP Options'; |
| | | $wb["limit_client_error"] = 'The max. number of clients is reached.'; |
| | | $wb["limit_client_error_positive"] = 'The number of clients must be > 0'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Resellers'; |
| | | $wb["client_id_txt"] = 'ID'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new reseller'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["limit_maildomain_txt"] = 'Max. number of email domains'; |
| | | $wb["limit_mailbox_txt"] = 'Max. number of mailboxes'; |
| | | $wb["limit_mailalias_txt"] = 'Max. number of email aliases'; |
| | | $wb["limit_mailforward_txt"] = 'Max. number of email forwarders'; |
| | | $wb["limit_mailcatchall_txt"] = 'Max. number of email catchall accounts'; |
| | | $wb["limit_mailrouting_txt"] = 'Max. number of email routes'; |
| | | $wb["limit_mailfilter_txt"] = 'Max. number of email filters'; |
| | | $wb["limit_fetchmail_txt"] = 'Max. number of fetchmail accounts'; |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["default_mailserver_txt"] = 'Default Mailserver'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["username_txt"] = 'Username'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["usertheme_txt"] = 'Theme'; |
| | | $wb["street_txt"] = 'Street'; |
| | | $wb["zip_txt"] = 'ZIP'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["state_txt"] = 'State'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["telephone_txt"] = 'Telephone'; |
| | | $wb["mobile_txt"] = 'Mobile'; |
| | | $wb["fax_txt"] = 'Fax'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["internet_txt"] = 'Internet'; |
| | | $wb["icq_txt"] = 'ICQ'; |
| | | $wb["notes_txt"] = 'Notes'; |
| | | $wb["company_txt"] = 'Company'; |
| | | $wb["title_txt"] = 'Title'; |
| | | $wb["firstname_txt"] = 'Firstname'; |
| | | $wb["surname_txt"] = 'Surname'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | | $wb["limit_database_txt"] = 'limit_database'; |
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs'; |
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions'; |
| | | $wb["ip_address_txt"] = 'ip_address'; |
| | | $wb["limit_client_error_notint"] = 'Client Limit is not a number.'; |
| | | $wb["firstname_error_empty"] = 'Firstname is empty.'; |
| | | $wb["contact_error_empty"] = 'Contact name is empty.'; |
| | | $wb["default_webserver_txt"] = 'Default Webserver'; |
| | | $wb["limit_web_domain_txt"] = 'Max. number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Max. number of web aliasdomains'; |
| | | $wb["limit_web_subdomain_txt"] = 'Max. number of web subdomains'; |
| | | $wb["limit_ftp_user_txt"] = 'Max. number of FTP users'; |
| | | $wb["default_dnsserver_txt"] = 'Default DNS Server'; |
| | | $wb["limit_dns_zone_txt"] = 'Max. number of DNS zones'; |
| | | $wb["limit_dns_record_txt"] = 'Max. number DNS records'; |
| | | $wb["limit_shell_user_txt"] = 'Max. number of Shell users'; |
| | | $wb["limit_client_txt"] = 'Max. number of Clients'; |
| | | $wb["username_error_empty"] = 'Username is empty.'; |
| | | $wb["username_error_unique"] = 'The username must be unique.'; |
| | | $wb["limit_maildomain_error_notint"] = 'The email domain limit must be a number.'; |
| | | $wb["limit_mailbox_error_notint"] = 'The mailbox limit must be a number.'; |
| | | $wb["limit_mailalias_error_notint"] = 'The email alias limit must be a number.'; |
| | | $wb["limit_mailforward_error_notint"] = 'The email forward limit must be a number.'; |
| | | $wb["limit_mailcatchall_error_notint"] = 'The email catchall limit must be a number.'; |
| | | $wb["limit_mailrouting_error_notint"] = 'The email routing limit must be a number.'; |
| | | $wb["limit_mailfilter_error_notint"] = 'The email filter limit must be a number.'; |
| | | $wb["limit_mailfetchmail_error_notint"] = 'The fetchmail limit must be a number.'; |
| | | $wb["limit_mailquota_error_notint"] = 'The email quota limit must be a number.'; |
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb["limit_spamfilter_user_error_notint"] = 'The spamfilter user limit must be a number.'; |
| | | $wb["limit_spamfilter_policy_error_notint"] = 'The spamfilter policy limit must be a number.'; |
| | | $wb["limit_web_domain_error_notint"] = 'The website limit must be a number.'; |
| | | $wb["limit_web_aliasdomain_error_notint"] = 'The website alias domain limit must be a number.'; |
| | | $wb["limit_web_subdomain_error_notint"] = 'The website subdomain limit must be a number.'; |
| | | $wb["limit_ftp_user_error_notint"] = 'The ftp user limit must be a number.'; |
| | | $wb["limit_shell_user_error_notint"] = 'The shell user limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns zone limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns record limit must be a number.'; |
| | | $wb["limit_client_error_notint"] = 'The sub client limit must be a number.'; |
| | | $wb["default_dbserver_txt"] = 'Default Database Server'; |
| | | $wb["limit_database_txt"] = 'Max. number of Databases'; |
| | | $wb["limit_database_error_notint"] = 'The database limit must be a number.'; |
| | | $wb["limit_cron_error_notint"] = 'The cron limit must be a number.'; |
| | | $wb["limit_cron_error_frequency"] = 'The cron frequency limit must be a number.'; |
| | | $wb["username_error_regex"] = 'The Username contains invalid chracaters.'; |
| | | $wb["template_master_txt"] = 'Master template'; |
| | | $wb["template_additional_txt"] = 'Addon template'; |
| | | $wb["ssh_chroot_txt"] = 'SSH-Chroot Options'; |
| | | $wb["web_php_options_txt"] = 'PHP Options'; |
| | | $wb["limit_client_error"] = 'The max. number of clients is reached.'; |
| | | $wb["limit_client_error_positive"] = 'The number of clients must be > 0'; |
| | | $wb['limit_maildomain_txt'] = 'Max. number of email domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. number of mailboxes'; |
| | | $wb['limit_mailalias_txt'] = 'Max. number of email aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. number of email forwarders'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. number of email catchall accounts'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. number of email routes'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. number of email filters'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. number of fetchmail accounts'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox quota'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. number of spamfilter users'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. number of spamfilter policys'; |
| | | $wb['default_mailserver_txt'] = 'Default Mailserver'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['language_txt'] = 'Language'; |
| | | $wb['usertheme_txt'] = 'Theme'; |
| | | $wb['street_txt'] = 'Street'; |
| | | $wb['zip_txt'] = 'ZIP'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['telephone_txt'] = 'Telephone'; |
| | | $wb['mobile_txt'] = 'Mobile'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notes'; |
| | | $wb['company_txt'] = 'Company'; |
| | | $wb['title_txt'] = 'Title'; |
| | | $wb['firstname_txt'] = 'Firstname'; |
| | | $wb['surname_txt'] = 'Surname'; |
| | | $wb['limit_domain_txt'] = 'limit_domain'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomain'; |
| | | $wb['limit_webquota_txt'] = 'limit_webquota'; |
| | | $wb['limit_database_txt'] = 'Max. number of Databases'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['ip_address_txt'] = 'ip_address'; |
| | | $wb['limit_client_error_notint'] = 'The sub client limit must be a number.'; |
| | | $wb['firstname_error_empty'] = 'Firstname is empty.'; |
| | | $wb['contact_error_empty'] = 'Contact name is empty.'; |
| | | $wb['default_webserver_txt'] = 'Default Webserver'; |
| | | $wb['limit_web_domain_txt'] = 'Max. number of web domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. number of web aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. number of web subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. number of FTP users'; |
| | | $wb['default_dnsserver_txt'] = 'Default DNS Server'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. number of DNS zones'; |
| | | $wb['limit_dns_record_txt'] = 'Max. number DNS records'; |
| | | $wb['limit_shell_user_txt'] = 'Max. number of Shell users'; |
| | | $wb['limit_client_txt'] = 'Max. number of Clients'; |
| | | $wb['username_error_empty'] = 'Username is empty.'; |
| | | $wb['username_error_unique'] = 'The username must be unique.'; |
| | | $wb['limit_maildomain_error_notint'] = 'The email domain limit must be a number.'; |
| | | $wb['limit_mailbox_error_notint'] = 'The mailbox limit must be a number.'; |
| | | $wb['limit_mailalias_error_notint'] = 'The email alias limit must be a number.'; |
| | | $wb['limit_mailforward_error_notint'] = 'The email forward limit must be a number.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'The email catchall limit must be a number.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'The email routing limit must be a number.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'The email filter limit must be a number.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'The fetchmail limit must be a number.'; |
| | | $wb['limit_mailquota_error_notint'] = 'The email quota limit must be a number.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'The spamfilter user limit must be a number.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'The spamfilter policy limit must be a number.'; |
| | | $wb['limit_web_domain_error_notint'] = 'The website limit must be a number.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'The website alias domain limit must be a number.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'The website subdomain limit must be a number.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'The ftp user limit must be a number.'; |
| | | $wb['limit_shell_user_error_notint'] = 'The shell user limit must be a number.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'The dns record limit must be a number.'; |
| | | $wb['default_dbserver_txt'] = 'Default Database Server'; |
| | | $wb['limit_database_error_notint'] = 'The database limit must be a number.'; |
| | | $wb['limit_cron_error_notint'] = 'The cron limit must be a number.'; |
| | | $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.'; |
| | | $wb['username_error_regex'] = 'The Username contains invalid chracaters.'; |
| | | $wb['template_master_txt'] = 'Master template'; |
| | | $wb['template_additional_txt'] = 'Addon template'; |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['limit_client_error'] = 'The max. number of clients is reached.'; |
| | | $wb['limit_client_error_positive'] = 'The number of clients must be > 0'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Resellers'; |
| | | $wb["client_id_txt"] = 'ID'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new reseller'; |
| | | $wb['list_head_txt'] = 'Resellers'; |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | ?> |
| | |
| | | $wb['Edit Reseller'] = 'Reseller wijzigen'; |
| | | $wb['Resellers'] = 'Resellers'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_cron_error_notint'] = 'Het max. aantal cron jobs moet een nummerieke waarde zijn.'; |
| | | $wb['limit_cron_error_frequency'] = 'De cron uitvoeringen limiet moet een nummerieke waarde zijn.'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_cron_error_notint'] = 'Cron limiet moet een geldig getal zijn.'; |
| | | $wb['limit_cron_error_frequency'] = 'Cron frequentie limiet moet een geldig getal zijn.'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_type_txt'] = 'Type'; |
| | | $wb['template_name_txt'] = 'Template naam'; |
| | | ?> |
| | | |
| | |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe klant toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_client_error'] = 'Maximum aantal klanten is bereikt.'; |
| | | $wb['limit_client_error_positive'] = 'Het aantal klanten moet groter zijn dan 0.'; |
| | | ?> |
| | | |
| | |
| | | $wb['country_txt'] = 'Land'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe reseller toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['Edit Reseller'] = 'Edytuj Reseller';
|
| | | $wb['Resellers'] = 'Resellery';
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["limit_maildomain_txt"] = 'Maksymalna ilość domen email';
|
| | | $wb["limit_mailbox_txt"] = 'Maksymalna ilość skrzynek pocztowych';
|
| | | $wb["limit_mailalias_txt"] = 'Maxymalna ilość aliasów e-mail';
|
| | | $wb["limit_mailforward_txt"] = 'Maksymalna ilość przekierowań e-mail';
|
| | | $wb["limit_mailcatchall_txt"] = 'Maksymalna ilość kont e-mail catchall';
|
| | | $wb["limit_mailrouting_txt"] = 'Maksymalna ilość ścieżek e-mail';
|
| | | $wb["limit_mailfilter_txt"] = 'Maksymalna ilość filtrów e-mail';
|
| | | $wb["limit_fetchmail_txt"] = 'Maksymalna ilość kont z fetchmail';
|
| | | $wb["limit_mailquota_txt"] = 'Pojemność skrzynki';
|
| | | $wb["limit_spamfilter_wblist_txt"] = 'Maksymalna ilość filtrów spamu białej / czarnej listy';
|
| | | $wb["limit_spamfilter_user_txt"] = 'Maksymalna ilość filtrów spamu użytkowników';
|
| | | $wb["limit_spamfilter_policy_txt"] = 'Maksymalna ilość polityk filtrów spamu';
|
| | | $wb["default_mailserver_txt"] = 'Domyślny serwer e-mail';
|
| | | $wb["company_name_txt"] = 'Nazwa firmy';
|
| | | $wb["contact_name_txt"] = 'Nazwa kontaktu';
|
| | | $wb["username_txt"] = 'Nazwa użytkownika';
|
| | | $wb["password_txt"] = 'Hasło';
|
| | | $wb["password_strength_txt"] = 'Siła hasła';
|
| | | $wb["language_txt"] = 'Język';
|
| | | $wb["usertheme_txt"] = 'Styl';
|
| | | $wb["street_txt"] = 'Ulica';
|
| | | $wb["zip_txt"] = 'Kod pocztowy';
|
| | | $wb["city_txt"] = 'Miasto';
|
| | | $wb["state_txt"] = 'Województwo';
|
| | | $wb["country_txt"] = 'Państwo';
|
| | | $wb["telephone_txt"] = 'Telefon';
|
| | | $wb["mobile_txt"] = 'Komórka';
|
| | | $wb["fax_txt"] = 'Fax';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["internet_txt"] = 'Strona www';
|
| | | $wb["icq_txt"] = 'ICQ';
|
| | | $wb["notes_txt"] = 'Notatki';
|
| | | $wb["company_txt"] = 'Firma';
|
| | | $wb["title_txt"] = 'Tytuł';
|
| | | $wb["firstname_txt"] = 'Imię';
|
| | | $wb["surname_txt"] = 'Nazwisko';
|
| | | $wb["limit_domain_txt"] = 'limit_domen';
|
| | | $wb["limit_subdomain_txt"] = 'limit_subdomen';
|
| | | $wb["limit_webquota_txt"] = 'limit_pojemnosci_www';
|
| | | $wb["limit_database_txt"] = 'limit_baz_danych';
|
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs';
|
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)';
|
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions';
|
| | | $wb["ip_address_txt"] = 'adres_ip';
|
| | | $wb["limit_client_error_notint"] = 'Limit klienta nie jest liczbą.';
|
| | | $wb["firstname_error_empty"] = 'Imię jest puste.';
|
| | | $wb["contact_error_empty"] = 'Nazwa konatku jest pusta.';
|
| | | $wb["default_webserver_txt"] = 'Domyślny serwer WWW';
|
| | | $wb["limit_web_domain_txt"] = 'Maksymalna ilość domen WWW';
|
| | | $wb["limit_web_aliasdomain_txt"] = 'Maksymalna ilość aliasów domen';
|
| | | $wb["limit_web_subdomain_txt"] = 'Maksymalna ilość subdomen';
|
| | | $wb["limit_ftp_user_txt"] = 'Maksymalna ilość użytkowników FTP';
|
| | | $wb["default_dnsserver_txt"] = 'Domyślny serwer DNS';
|
| | | $wb["limit_dns_zone_txt"] = 'Maksymalna ilość stref DNS';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS';
|
| | | $wb["limit_shell_user_txt"] = 'Maksymalna ilość użytkowników shell';
|
| | | $wb["limit_client_txt"] = 'Maksymalna ilość klientów';
|
| | | $wb["username_error_empty"] = 'Nazwa uużytkownika jest pusta.';
|
| | | $wb["username_error_unique"] = 'Nazwa użytkownika musi być unikatowa.';
|
| | | $wb["limit_maildomain_error_notint"] = 'Limit domen musi być liczbą.';
|
| | | $wb["limit_mailbox_error_notint"] = 'Limit skrzynek pocztowych musi być liczbą.';
|
| | | $wb["limit_mailalias_error_notint"] = 'Limit aliasów e-mail musi być liczbą.';
|
| | | $wb["limit_mailforward_error_notint"] = 'Limit przekierowań musi być liczbą.';
|
| | | $wb["limit_mailcatchall_error_notint"] = 'Limit e-mail catchall musi być liczbą.';
|
| | | $wb["limit_mailrouting_error_notint"] = 'Limit ścieżek e-mail musi być liczbą.';
|
| | | $wb["limit_mailfilter_error_notint"] = 'Limit filtrów e-mail musi być liczbą.';
|
| | | $wb["limit_mailfetchmail_error_notint"] = 'Limit fetchmail musi być liczbą.';
|
| | | $wb["limit_mailquota_error_notint"] = 'Limit pojemności skrzynki musi być liczbą.';
|
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'Limit filtrów spamu biała / czarna lista musi być liczbą.';
|
| | | $wb["limit_spamfilter_user_error_notint"] = 'Limit filtrów spamu użytkownika musi być liczbą.';
|
| | | $wb["limit_spamfilter_policy_error_notint"] = 'Limit polityk filtrów spamu musi być liczbą.';
|
| | | $wb["limit_web_domain_error_notint"] = 'Limit stron www musi być liczbą.';
|
| | | $wb["limit_web_aliasdomain_error_notint"] = 'Limit aliasów strony www musi być liczbą.';
|
| | | $wb["limit_web_subdomain_error_notint"] = 'Limit subdomen strony www musi być liczbą.';
|
| | | $wb["limit_ftp_user_error_notint"] = 'Limit użytkowników FTP musi być liczbą.';
|
| | | $wb["limit_shell_user_error_notint"] = 'Limit użytkowników shell musi być liczbą.';
|
| | | $wb["limit_dns_zone_error_notint"] = 'Limit stref DNS musi być liczbą.';
|
| | | $wb["limit_dns_zone_error_notint"] = 'Limit wpisów DNS musi być liczbą.';
|
| | | $wb["limit_client_error_notint"] = 'Limit subklientów musi być liczbą.';
|
| | | $wb["default_dbserver_txt"] = 'Domyślny serwer bazy danych';
|
| | | $wb["limit_database_txt"] = 'Maksymalna ilość bazy danych';
|
| | | $wb["limit_database_error_notint"] = 'Limit baz danych musi być liczbą.';
|
| | | $wb["limit_cron_error_notint"] = 'Limit zadań cron musi być liczbą.';
|
| | | $wb["limit_cron_error_frequency"] = 'Limit częstości zadań cron musi być liczbą.';
|
| | | $wb["username_error_regex"] = 'Nazwa użytkownika zawiera niedozwolone znaki.';
|
| | | $wb["template_master_txt"] = 'Główny szablon';
|
| | | $wb["template_additional_txt"] = 'Dodatkowy szablon';
|
| | | $wb["ssh_chroot_txt"] = 'Opcje SSH-root';
|
| | | $wb["web_php_options_txt"] = 'Opcje PHP';
|
| | | $wb["limit_client_error"] = 'Maksymalna liczba kientów została już osiągnięta.';
|
| | | $wb['limit_maildomain_txt'] = 'Maksymalna ilość domen email'; |
| | | $wb['limit_mailbox_txt'] = 'Maksymalna ilość skrzynek pocztowych'; |
| | | $wb['limit_mailalias_txt'] = 'Maxymalna ilość aliasów e-mail'; |
| | | $wb['limit_mailforward_txt'] = 'Maksymalna ilość przekierowań e-mail'; |
| | | $wb['limit_mailcatchall_txt'] = 'Maksymalna ilość kont e-mail catchall'; |
| | | $wb['limit_mailrouting_txt'] = 'Maksymalna ilość ścieżek e-mail'; |
| | | $wb['limit_mailfilter_txt'] = 'Maksymalna ilość filtrów e-mail'; |
| | | $wb['limit_fetchmail_txt'] = 'Maksymalna ilość kont z fetchmail'; |
| | | $wb['limit_mailquota_txt'] = 'Pojemność skrzynki'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Maksymalna ilość filtrów spamu białej / czarnej listy'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Maksymalna ilość filtrów spamu użytkowników'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Maksymalna ilość polityk filtrów spamu'; |
| | | $wb['default_mailserver_txt'] = 'Domyślny serwer e-mail'; |
| | | $wb['company_name_txt'] = 'Nazwa firmy'; |
| | | $wb['contact_name_txt'] = 'Nazwa kontaktu'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['password_txt'] = 'Hasło'; |
| | | $wb['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['language_txt'] = 'Język'; |
| | | $wb['usertheme_txt'] = 'Styl'; |
| | | $wb['street_txt'] = 'Ulica'; |
| | | $wb['zip_txt'] = 'Kod pocztowy'; |
| | | $wb['city_txt'] = 'Miasto'; |
| | | $wb['state_txt'] = 'Województwo'; |
| | | $wb['country_txt'] = 'Państwo'; |
| | | $wb['telephone_txt'] = 'Telefon'; |
| | | $wb['mobile_txt'] = 'Komórka'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['internet_txt'] = 'Strona www'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notatki'; |
| | | $wb['company_txt'] = 'Firma'; |
| | | $wb['title_txt'] = 'Tytuł'; |
| | | $wb['firstname_txt'] = 'Imię'; |
| | | $wb['surname_txt'] = 'Nazwisko'; |
| | | $wb['limit_domain_txt'] = 'limit_domen'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomen'; |
| | | $wb['limit_webquota_txt'] = 'limit_pojemnosci_www'; |
| | | $wb['limit_database_txt'] = 'Maksymalna ilość bazy danych'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['ip_address_txt'] = 'adres_ip'; |
| | | $wb['limit_client_error_notint'] = 'Limit subklientów musi być liczbą.'; |
| | | $wb['firstname_error_empty'] = 'Imię jest puste.'; |
| | | $wb['contact_error_empty'] = 'Nazwa konatku jest pusta.'; |
| | | $wb['default_webserver_txt'] = 'Domyślny serwer WWW'; |
| | | $wb['limit_web_domain_txt'] = 'Maksymalna ilość domen WWW'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Maksymalna ilość aliasów domen'; |
| | | $wb['limit_web_subdomain_txt'] = 'Maksymalna ilość subdomen'; |
| | | $wb['limit_ftp_user_txt'] = 'Maksymalna ilość użytkowników FTP'; |
| | | $wb['default_dnsserver_txt'] = 'Domyślny serwer DNS'; |
| | | $wb['limit_dns_zone_txt'] = 'Maksymalna ilość stref DNS'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS'; |
| | | $wb['limit_shell_user_txt'] = 'Maksymalna ilość użytkowników shell'; |
| | | $wb['limit_client_txt'] = 'Maksymalna ilość klientów'; |
| | | $wb['username_error_empty'] = 'Nazwa uużytkownika jest pusta.'; |
| | | $wb['username_error_unique'] = 'Nazwa użytkownika musi być unikatowa.'; |
| | | $wb['limit_maildomain_error_notint'] = 'Limit domen musi być liczbą.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Limit skrzynek pocztowych musi być liczbą.'; |
| | | $wb['limit_mailalias_error_notint'] = 'Limit aliasów e-mail musi być liczbą.'; |
| | | $wb['limit_mailforward_error_notint'] = 'Limit przekierowań musi być liczbą.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'Limit e-mail catchall musi być liczbą.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'Limit ścieżek e-mail musi być liczbą.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'Limit filtrów e-mail musi być liczbą.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'Limit fetchmail musi być liczbą.'; |
| | | $wb['limit_mailquota_error_notint'] = 'Limit pojemności skrzynki musi być liczbą.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'Limit filtrów spamu biała / czarna lista musi być liczbą.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'Limit filtrów spamu użytkownika musi być liczbą.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'Limit polityk filtrów spamu musi być liczbą.'; |
| | | $wb['limit_web_domain_error_notint'] = 'Limit stron www musi być liczbą.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'Limit aliasów strony www musi być liczbą.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'Limit subdomen strony www musi być liczbą.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'Limit użytkowników FTP musi być liczbą.'; |
| | | $wb['limit_shell_user_error_notint'] = 'Limit użytkowników shell musi być liczbą.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'Limit wpisów DNS musi być liczbą.'; |
| | | $wb['default_dbserver_txt'] = 'Domyślny serwer bazy danych'; |
| | | $wb['limit_database_error_notint'] = 'Limit baz danych musi być liczbą.'; |
| | | $wb['limit_cron_error_notint'] = 'Limit zadań cron musi być liczbą.'; |
| | | $wb['limit_cron_error_frequency'] = 'Limit częstości zadań cron musi być liczbą.'; |
| | | $wb['username_error_regex'] = 'Nazwa użytkownika zawiera niedozwolone znaki.'; |
| | | $wb['template_master_txt'] = 'Główny szablon'; |
| | | $wb['template_additional_txt'] = 'Dodatkowy szablon'; |
| | | $wb['ssh_chroot_txt'] = 'Opcje SSH-root'; |
| | | $wb['web_php_options_txt'] = 'Opcje PHP'; |
| | | $wb['limit_client_error'] = 'Maksymalna liczba kientów została już osiągnięta.'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | |
|
| | | $wb["limit_client_error_notint"] = 'Limit klientów musi być liczbą.';
|
| | | $wb["limit_maildomain_txt"] = 'Maksymalna ilość domen e-mail';
|
| | | $wb["limit_mailbox_txt"] = 'Maksymalna ilość skrzynek pocztowych';
|
| | | $wb["limit_mailalias_txt"] = 'Maksymalna ilość aliasów e-mail';
|
| | | $wb["limit_mailforward_txt"] = 'Maksymalna ilość przekierowań e-mail';
|
| | | $wb["limit_mailcatchall_txt"] = 'Maksymalna ilość kont e-mail catchall';
|
| | | $wb["limit_mailrouting_txt"] = 'Maksymalna ilość ścieżek e-mail';
|
| | | $wb["limit_mailfilter_txt"] = 'Maksymalna ilość filtrów e-mail';
|
| | | $wb["limit_fetchmail_txt"] = 'Maksymalna ilość kont z fetchmail';
|
| | | $wb["limit_mailquota_txt"] = 'Pojemność skrzynki';
|
| | | $wb["limit_spamfilter_wblist_txt"] = 'Maksymalna ilość filtrów spamu białej / czarnej listy';
|
| | | $wb["limit_spamfilter_user_txt"] = 'Maksymalna ilość filtrów spamu użytkowników';
|
| | | $wb["limit_spamfilter_policy_txt"] = 'Maksymalna ilość polityk filtrów spamu';
|
| | | $wb["limit_domain_txt"] = 'limit_domen';
|
| | | $wb["limit_subdomain_txt"] = 'limit_subdomen';
|
| | | $wb["limit_webquota_txt"] = 'limit_pojemnosci_www';
|
| | | $wb["limit_database_txt"] = 'limit_baz_danych';
|
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs';
|
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)';
|
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions';
|
| | | $wb["limit_web_domain_txt"] = 'Maksymalna ilość domen';
|
| | | $wb["limit_web_aliasdomain_txt"] = 'Maksymalna ilość domen';
|
| | | $wb["limit_web_subdomain_txt"] = 'Maksymalna ilość subdomen';
|
| | | $wb["limit_ftp_user_txt"] = 'Maksymalna ilość uzytkowników FTP';
|
| | | $wb["limit_dns_zone_txt"] = 'Maksymalna ilość stref DNS';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS';
|
| | | $wb["limit_shell_user_txt"] = 'Maksymalna ilość użytkowników shell';
|
| | | $wb["limit_client_txt"] = 'Maksymalna ilość klientów';
|
| | | $wb["limit_maildomain_error_notint"] = 'Limit domen musi być liczbą.';
|
| | | $wb["limit_mailbox_error_notint"] = 'Limit skrzynek pocztowych musi być liczbą.';
|
| | | $wb["limit_mailalias_error_notint"] = 'Limit aliasów musi być liczbą.';
|
| | | $wb["limit_mailforward_error_notint"] = 'Limit przekierowań e-mail musi być liczbą.';
|
| | | $wb["limit_mailcatchall_error_notint"] = 'Limit e-mail catchall musi być liczbą.';
|
| | | $wb["limit_mailrouting_error_notint"] = 'Limit ścieżek e-mail musi być liczbą.';
|
| | | $wb["limit_mailfilter_error_notint"] = 'Limit filtrów e-mail musi być liczbą.';
|
| | | $wb["limit_mailfetchmail_error_notint"] = 'Limit fetchmail musi być liczbą.';
|
| | | $wb["limit_mailquota_error_notint"] = 'Limit pojemności skrzynki musi być liczbą.';
|
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'Limit filtrów spamu biała / czarna lista musi być liczbą.';
|
| | | $wb["limit_spamfilter_user_error_notint"] = 'Limit filtrów spamu użytkownika musi być liczbą.';
|
| | | $wb["limit_spamfilter_policy_error_notint"] = 'Limit polityk filtrów spamu musi być liczbą.';
|
| | | $wb["limit_web_domain_error_notint"] = 'Limit stron www musi być liczbą.';
|
| | | $wb["limit_web_aliasdomain_error_notint"] = 'Limit aliasów strony www musi być liczbą.';
|
| | | $wb["limit_web_subdomain_error_notint"] = 'Limit subdomen strony www musi być liczbą.';
|
| | | $wb["limit_ftp_user_error_notint"] = 'Limit użytkowników FTP musi być liczbą.';
|
| | | $wb["limit_shell_user_error_notint"] = 'Limit użytkowników shell musi być liczbą.';
|
| | | $wb["limit_dns_zone_error_notint"] = 'Limit stref DNS musi być liczbą.';
|
| | | $wb["limit_dns_zone_error_notint"] = 'Limit wpisów DNS musi być liczbą.';
|
| | | $wb["limit_database_txt"] = 'Maksymalna ilość baz danych';
|
| | | $wb["limit_database_error_notint"] = 'Limit baz danych musi być liczbą.';
|
| | | $wb["limit_cron_error_notint"] = 'Limit zadań cron musi być liczbą.';
|
| | | $wb["limit_cron_error_frequency"] = 'Limit częstości zadań corn musi być liczbą.';
|
| | | $wb["error_template_name_empty"] = 'Proszę wpisać nazwę szablonu';
|
| | | $wb['limit_client_error_notint'] = 'Limit klientów musi być liczbą.'; |
| | | $wb['limit_maildomain_txt'] = 'Maksymalna ilość domen e-mail'; |
| | | $wb['limit_mailbox_txt'] = 'Maksymalna ilość skrzynek pocztowych'; |
| | | $wb['limit_mailalias_txt'] = 'Maksymalna ilość aliasów e-mail'; |
| | | $wb['limit_mailforward_txt'] = 'Maksymalna ilość przekierowań e-mail'; |
| | | $wb['limit_mailcatchall_txt'] = 'Maksymalna ilość kont e-mail catchall'; |
| | | $wb['limit_mailrouting_txt'] = 'Maksymalna ilość ścieżek e-mail'; |
| | | $wb['limit_mailfilter_txt'] = 'Maksymalna ilość filtrów e-mail'; |
| | | $wb['limit_fetchmail_txt'] = 'Maksymalna ilość kont z fetchmail'; |
| | | $wb['limit_mailquota_txt'] = 'Pojemność skrzynki'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Maksymalna ilość filtrów spamu białej / czarnej listy'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Maksymalna ilość filtrów spamu użytkowników'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Maksymalna ilość polityk filtrów spamu'; |
| | | $wb['limit_domain_txt'] = 'limit_domen'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomen'; |
| | | $wb['limit_webquota_txt'] = 'limit_pojemnosci_www'; |
| | | $wb['limit_database_txt'] = 'Maksymalna ilość baz danych'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['limit_web_domain_txt'] = 'Maksymalna ilość domen'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Maksymalna ilość domen'; |
| | | $wb['limit_web_subdomain_txt'] = 'Maksymalna ilość subdomen'; |
| | | $wb['limit_ftp_user_txt'] = 'Maksymalna ilość uzytkowników FTP'; |
| | | $wb['limit_dns_zone_txt'] = 'Maksymalna ilość stref DNS'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS'; |
| | | $wb['limit_shell_user_txt'] = 'Maksymalna ilość użytkowników shell'; |
| | | $wb['limit_client_txt'] = 'Maksymalna ilość klientów'; |
| | | $wb['limit_maildomain_error_notint'] = 'Limit domen musi być liczbą.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Limit skrzynek pocztowych musi być liczbą.'; |
| | | $wb['limit_mailalias_error_notint'] = 'Limit aliasów musi być liczbą.'; |
| | | $wb['limit_mailforward_error_notint'] = 'Limit przekierowań e-mail musi być liczbą.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'Limit e-mail catchall musi być liczbą.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'Limit ścieżek e-mail musi być liczbą.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'Limit filtrów e-mail musi być liczbą.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'Limit fetchmail musi być liczbą.'; |
| | | $wb['limit_mailquota_error_notint'] = 'Limit pojemności skrzynki musi być liczbą.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'Limit filtrów spamu biała / czarna lista musi być liczbą.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'Limit filtrów spamu użytkownika musi być liczbą.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'Limit polityk filtrów spamu musi być liczbą.'; |
| | | $wb['limit_web_domain_error_notint'] = 'Limit stron www musi być liczbą.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'Limit aliasów strony www musi być liczbą.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'Limit subdomen strony www musi być liczbą.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'Limit użytkowników FTP musi być liczbą.'; |
| | | $wb['limit_shell_user_error_notint'] = 'Limit użytkowników shell musi być liczbą.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'Limit wpisów DNS musi być liczbą.'; |
| | | $wb['limit_database_error_notint'] = 'Limit baz danych musi być liczbą.'; |
| | | $wb['limit_cron_error_notint'] = 'Limit zadań cron musi być liczbą.'; |
| | | $wb['limit_cron_error_frequency'] = 'Limit częstości zadań corn musi być liczbą.'; |
| | | $wb['error_template_name_empty'] = 'Proszę wpisać nazwę szablonu'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Szablon klienta';
|
| | | $wb["template_type_txt"] = 'Typ';
|
| | | $wb["template_name_txt"] = 'Nazwa szablonu';
|
| | | $wb['list_head_txt'] = 'Szablon klienta'; |
| | | $wb['template_type_txt'] = 'Typ'; |
| | | $wb['template_name_txt'] = 'Nazwa szablonu'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Clients'; |
| | | $wb["client_id_txt"] = 'ID'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new client'; |
| | | $wb['list_head_txt'] = 'Clients'; |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new client'; |
| | | ?> |
| | |
| | | <?php
|
| | | $wb["limit_maildomain_txt"] = 'Maksymalna ilość domen e-mail';
|
| | | $wb["limit_mailbox_txt"] = 'Maksymalna ilość skrzynek pocztowych';
|
| | | $wb["limit_mailalias_txt"] = 'Maksymalna ilość aliasów e-mail';
|
| | | $wb["limit_mailforward_txt"] = 'Maksymalna ilość przekierowań e-mail';
|
| | | $wb["limit_mailcatchall_txt"] = 'Maksymalna ilość kont e-mail catchall';
|
| | | $wb["limit_mailrouting_txt"] = 'Maksymalna ilość ścieżek e-mail';
|
| | | $wb["limit_mailfilter_txt"] = 'Maksymalna ilość filtrów e-mail';
|
| | | $wb["limit_fetchmail_txt"] = 'Maksymalna ilość kont fetchmail';
|
| | | $wb["limit_mailquota_txt"] = 'Limit skrzynki pocztowej';
|
| | | $wb["limit_spamfilter_wblist_txt"] = 'Maksymalna ilość filtrów spamu białej / czarnej listy';
|
| | | $wb["limit_spamfilter_user_txt"] = 'Maksymalna ilość użytkowników z filtrem spamu';
|
| | | $wb["limit_spamfilter_policy_txt"] = 'Maksymalna ilość polityk filtrów spamu';
|
| | | $wb["default_mailserver_txt"] = 'Domyślny serwer poczty';
|
| | | $wb["company_name_txt"] = 'Nazwa firmy';
|
| | | $wb["contact_name_txt"] = 'Nazwa kontaktu';
|
| | | $wb["username_txt"] = 'Nazwa użytkownika';
|
| | | $wb["password_txt"] = 'Hasło';
|
| | | $wb["password_strength_txt"] = 'Siła hasła';
|
| | | $wb["language_txt"] = 'Język';
|
| | | $wb["usertheme_txt"] = 'Szablon';
|
| | | $wb["street_txt"] = 'Ulica';
|
| | | $wb["zip_txt"] = 'Kod pocztowy';
|
| | | $wb["city_txt"] = 'Miasto';
|
| | | $wb["state_txt"] = 'Województwo';
|
| | | $wb["country_txt"] = 'Państwo';
|
| | | $wb["telephone_txt"] = 'Telefon';
|
| | | $wb["mobile_txt"] = 'Komórka';
|
| | | $wb["fax_txt"] = 'Fax';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["internet_txt"] = 'Strona www';
|
| | | $wb["icq_txt"] = 'ICQ';
|
| | | $wb["notes_txt"] = 'Notatki';
|
| | | $wb["company_txt"] = 'Firma';
|
| | | $wb["title_txt"] = 'Tytuł';
|
| | | $wb["firstname_txt"] = 'Imię';
|
| | | $wb["surname_txt"] = 'Nazwisko';
|
| | | $wb["limit_domain_txt"] = 'limit_domen';
|
| | | $wb["limit_subdomain_txt"] = 'limit_subdomen';
|
| | | $wb["limit_webquota_txt"] = 'limit_pojemnosci_www';
|
| | | $wb["limit_database_txt"] = 'limit_baz_danych';
|
| | | $wb["limit_cron_txt"] = 'Maksymalna ilość zadań crone';
|
| | | $wb["limit_cron_type_txt"] = 'Maksymalna ilość typów zadań corne (zadania admina oraz sugerowane url)';
|
| | | $wb["limit_cron_frequency_txt"] = 'Minimalne odstępy między zadaniami';
|
| | | $wb["ip_address_txt"] = 'adres_ip';
|
| | | $wb["limit_client_error_notint"] = 'Limik klienta nie jest liczbą.';
|
| | | $wb["firstname_error_empty"] = 'Imię jest puste.';
|
| | | $wb["contact_error_empty"] = 'Nazwa kontaktu jest pusta.';
|
| | | $wb["default_webserver_txt"] = 'Domyślny serwer www';
|
| | | $wb["limit_web_domain_txt"] = 'Maksymalna ilość domen www';
|
| | | $wb["limit_web_aliasdomain_txt"] = 'Maksymalna ilość aliasów';
|
| | | $wb["limit_web_subdomain_txt"] = 'Maksymalna ilość subdomen';
|
| | | $wb["limit_ftp_user_txt"] = 'Maksymalna ilość użytkowników FTP';
|
| | | $wb["default_dnsserver_txt"] = 'Domyślny serwer DNS';
|
| | | $wb["limit_dns_zone_txt"] = 'Maksymalna ilość stref DNS';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS';
|
| | | $wb["limit_shell_user_txt"] = 'Maksymalna ilość użytkowników Shell';
|
| | | $wb["limit_client_txt"] = 'Maksymalna ilość klientów';
|
| | | $wb["username_error_empty"] = 'Nazwa użytkownika jest pusta.';
|
| | | $wb["username_error_unique"] = 'Nazwa użytkownika musi być unikatowa.';
|
| | | $wb["limit_maildomain_error_notint"] = 'Limit domen e-mail musi być liczbą.';
|
| | | $wb["limit_mailbox_error_notint"] = 'Limit skrzynek pocztowych musi być liczbą.';
|
| | | $wb["limit_mailalias_error_notint"] = 'Limit aliasów e-mail musi być liczbą.';
|
| | | $wb["limit_mailforward_error_notint"] = 'Limit przekierowań e-mail musi być liczbą.';
|
| | | $wb["limit_mailcatchall_error_notint"] = 'Limit kont e-mail catchall musi być liczbą.';
|
| | | $wb["limit_mailrouting_error_notint"] = 'Limit ścieżek e-mail musi być liczbą.';
|
| | | $wb["limit_mailfilter_error_notint"] = 'Limit filtrów e-mail musi być liczbą.';
|
| | | $wb["limit_mailfetchmail_error_notint"] = 'Limit kont fetchmail musi być liczbą.';
|
| | | $wb["limit_mailquota_error_notint"] = 'Limit pojemności konta e-mail musi być liczbą.';
|
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'Limit filtrów spamu białej / czarnej listy musi być liczbą.';
|
| | | $wb["limit_spamfilter_user_error_notint"] = 'Limit filtrów spamu użytkownika musi być liczbą';
|
| | | $wb["limit_spamfilter_policy_error_notint"] = 'Limit polityk filtrów spamu musi być liczbą.';
|
| | | $wb["limit_web_domain_error_notint"] = 'Limit stron www musi być liczbą.';
|
| | | $wb["limit_web_aliasdomain_error_notint"] = 'Limit aliasów musi być liczbą.';
|
| | | $wb["limit_web_subdomain_error_notint"] = 'Limit subdomen musi być liczbą.';
|
| | | $wb["limit_ftp_user_error_notint"] = 'Limit użytkowników ftp musi być liczbą.';
|
| | | $wb["limit_shell_user_error_notint"] = 'Limit użytkowników shell musi być liczbą.';
|
| | | $wb["limit_dns_zone_error_notint"] = 'Limit stref DNS musi być liczbą.';
|
| | | $wb["limit_dns_zone_error_notint"] = 'Limit wpisów DNS musi być liczbą.';
|
| | | $wb["limit_client_error_notint"] = 'Ilość klientów musi być liczbą.';
|
| | | $wb["default_dbserver_txt"] = 'Domyślny serwer bazy danych';
|
| | | $wb["limit_database_txt"] = 'Maksymalna ilość bazy danych';
|
| | | $wb["limit_database_error_notint"] = 'Limit baz danych musi być liczbą.';
|
| | | $wb["limit_cron_error_notint"] = 'Limit zadań crone musi być liczbą.';
|
| | | $wb["limit_cron_error_frequency"] = 'TLimit częstości zadań crone musi być liczbą.';
|
| | | $wb["username_error_regex"] = 'Nazwa użytkownika zawiera niedozwolone znaki.';
|
| | | $wb["template_master_txt"] = 'Głowny szablon';
|
| | | $wb["template_additional_txt"] = 'Dodatkowy szablon';
|
| | | $wb["ssh_chroot_txt"] = 'Opcje root-a SSH';
|
| | | $wb["web_php_options_txt"] = 'Opcje PHP';
|
| | | $wb["limit_client_error"] = 'Maksymalna ilość klientów została przekroczona.';
|
| | | $wb["limit_client_error_positive"] = 'Liczba klientów musi być > 0';
|
| | | $wb['limit_maildomain_txt'] = 'Maksymalna ilość domen e-mail'; |
| | | $wb['limit_mailbox_txt'] = 'Maksymalna ilość skrzynek pocztowych'; |
| | | $wb['limit_mailalias_txt'] = 'Maksymalna ilość aliasów e-mail'; |
| | | $wb['limit_mailforward_txt'] = 'Maksymalna ilość przekierowań e-mail'; |
| | | $wb['limit_mailcatchall_txt'] = 'Maksymalna ilość kont e-mail catchall'; |
| | | $wb['limit_mailrouting_txt'] = 'Maksymalna ilość ścieżek e-mail'; |
| | | $wb['limit_mailfilter_txt'] = 'Maksymalna ilość filtrów e-mail'; |
| | | $wb['limit_fetchmail_txt'] = 'Maksymalna ilość kont fetchmail'; |
| | | $wb['limit_mailquota_txt'] = 'Limit skrzynki pocztowej'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Maksymalna ilość filtrów spamu białej / czarnej listy'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Maksymalna ilość użytkowników z filtrem spamu'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Maksymalna ilość polityk filtrów spamu'; |
| | | $wb['default_mailserver_txt'] = 'Domyślny serwer poczty'; |
| | | $wb['company_name_txt'] = 'Nazwa firmy'; |
| | | $wb['contact_name_txt'] = 'Nazwa kontaktu'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['password_txt'] = 'Hasło'; |
| | | $wb['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['language_txt'] = 'Język'; |
| | | $wb['usertheme_txt'] = 'Szablon'; |
| | | $wb['street_txt'] = 'Ulica'; |
| | | $wb['zip_txt'] = 'Kod pocztowy'; |
| | | $wb['city_txt'] = 'Miasto'; |
| | | $wb['state_txt'] = 'Województwo'; |
| | | $wb['country_txt'] = 'Państwo'; |
| | | $wb['telephone_txt'] = 'Telefon'; |
| | | $wb['mobile_txt'] = 'Komórka'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['internet_txt'] = 'Strona www'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notatki'; |
| | | $wb['company_txt'] = 'Firma'; |
| | | $wb['title_txt'] = 'Tytuł'; |
| | | $wb['firstname_txt'] = 'Imię'; |
| | | $wb['surname_txt'] = 'Nazwisko'; |
| | | $wb['limit_domain_txt'] = 'limit_domen'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomen'; |
| | | $wb['limit_webquota_txt'] = 'limit_pojemnosci_www'; |
| | | $wb['limit_database_txt'] = 'Maksymalna ilość bazy danych'; |
| | | $wb['limit_cron_txt'] = 'Maksymalna ilość zadań crone'; |
| | | $wb['limit_cron_type_txt'] = 'Maksymalna ilość typów zadań corne (zadania admina oraz sugerowane url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Minimalne odstępy między zadaniami'; |
| | | $wb['ip_address_txt'] = 'adres_ip'; |
| | | $wb['limit_client_error_notint'] = 'Ilość klientów musi być liczbą.'; |
| | | $wb['firstname_error_empty'] = 'Imię jest puste.'; |
| | | $wb['contact_error_empty'] = 'Nazwa kontaktu jest pusta.'; |
| | | $wb['default_webserver_txt'] = 'Domyślny serwer www'; |
| | | $wb['limit_web_domain_txt'] = 'Maksymalna ilość domen www'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Maksymalna ilość aliasów'; |
| | | $wb['limit_web_subdomain_txt'] = 'Maksymalna ilość subdomen'; |
| | | $wb['limit_ftp_user_txt'] = 'Maksymalna ilość użytkowników FTP'; |
| | | $wb['default_dnsserver_txt'] = 'Domyślny serwer DNS'; |
| | | $wb['limit_dns_zone_txt'] = 'Maksymalna ilość stref DNS'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS'; |
| | | $wb['limit_shell_user_txt'] = 'Maksymalna ilość użytkowników Shell'; |
| | | $wb['limit_client_txt'] = 'Maksymalna ilość klientów'; |
| | | $wb['username_error_empty'] = 'Nazwa użytkownika jest pusta.'; |
| | | $wb['username_error_unique'] = 'Nazwa użytkownika musi być unikatowa.'; |
| | | $wb['limit_maildomain_error_notint'] = 'Limit domen e-mail musi być liczbą.'; |
| | | $wb['limit_mailbox_error_notint'] = 'Limit skrzynek pocztowych musi być liczbą.'; |
| | | $wb['limit_mailalias_error_notint'] = 'Limit aliasów e-mail musi być liczbą.'; |
| | | $wb['limit_mailforward_error_notint'] = 'Limit przekierowań e-mail musi być liczbą.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'Limit kont e-mail catchall musi być liczbą.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'Limit ścieżek e-mail musi być liczbą.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'Limit filtrów e-mail musi być liczbą.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'Limit kont fetchmail musi być liczbą.'; |
| | | $wb['limit_mailquota_error_notint'] = 'Limit pojemności konta e-mail musi być liczbą.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'Limit filtrów spamu białej / czarnej listy musi być liczbą.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'Limit filtrów spamu użytkownika musi być liczbą'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'Limit polityk filtrów spamu musi być liczbą.'; |
| | | $wb['limit_web_domain_error_notint'] = 'Limit stron www musi być liczbą.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'Limit aliasów musi być liczbą.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'Limit subdomen musi być liczbą.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'Limit użytkowników ftp musi być liczbą.'; |
| | | $wb['limit_shell_user_error_notint'] = 'Limit użytkowników shell musi być liczbą.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'Limit wpisów DNS musi być liczbą.'; |
| | | $wb['default_dbserver_txt'] = 'Domyślny serwer bazy danych'; |
| | | $wb['limit_database_error_notint'] = 'Limit baz danych musi być liczbą.'; |
| | | $wb['limit_cron_error_notint'] = 'Limit zadań crone musi być liczbą.'; |
| | | $wb['limit_cron_error_frequency'] = 'TLimit częstości zadań crone musi być liczbą.'; |
| | | $wb['username_error_regex'] = 'Nazwa użytkownika zawiera niedozwolone znaki.'; |
| | | $wb['template_master_txt'] = 'Głowny szablon'; |
| | | $wb['template_additional_txt'] = 'Dodatkowy szablon'; |
| | | $wb['ssh_chroot_txt'] = 'Opcje root-a SSH'; |
| | | $wb['web_php_options_txt'] = 'Opcje PHP'; |
| | | $wb['limit_client_error'] = 'Maksymalna ilość klientów została przekroczona.'; |
| | | $wb['limit_client_error_positive'] = 'Liczba klientów musi być > 0'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Reseller-y';
|
| | | $wb["client_id_txt"] = 'ID';
|
| | | $wb["company_name_txt"] = 'Nazwa firmy';
|
| | | $wb["contact_name_txt"] = 'Nazwa kontaktu';
|
| | | $wb["city_txt"] = 'Miasty';
|
| | | $wb["country_txt"] = 'Państwo';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy reseller';
|
| | | $wb['list_head_txt'] = 'Reseller-y'; |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['company_name_txt'] = 'Nazwa firmy'; |
| | | $wb['contact_name_txt'] = 'Nazwa kontaktu'; |
| | | $wb['city_txt'] = 'Miasty'; |
| | | $wb['country_txt'] = 'Państwo'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy reseller'; |
| | | ?>
|
| | | |
| | |
| | | <?php |
| | | $wb["limit_maildomain_txt"] = 'Max. number of email domains'; |
| | | $wb["limit_mailbox_txt"] = 'Max. number of mailboxes'; |
| | | $wb["limit_mailalias_txt"] = 'Max. number of email aliases'; |
| | | $wb["limit_mailforward_txt"] = 'Max. number of email forwarders'; |
| | | $wb["limit_mailcatchall_txt"] = 'Max. number of email catchall accounts'; |
| | | $wb["limit_mailrouting_txt"] = 'Max. number of email routes'; |
| | | $wb["limit_mailfilter_txt"] = 'Max. number of email filters'; |
| | | $wb["limit_fetchmail_txt"] = 'Max. number of fetchmail accounts'; |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["default_mailserver_txt"] = 'Default Mailserver'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["username_txt"] = 'Username'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["usertheme_txt"] = 'Theme'; |
| | | $wb["street_txt"] = 'Street'; |
| | | $wb["zip_txt"] = 'ZIP'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["state_txt"] = 'State'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["telephone_txt"] = 'Telephone'; |
| | | $wb["mobile_txt"] = 'Mobile'; |
| | | $wb["fax_txt"] = 'Fax'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["internet_txt"] = 'Internet'; |
| | | $wb["icq_txt"] = 'ICQ'; |
| | | $wb["notes_txt"] = 'Notes'; |
| | | $wb["company_txt"] = 'Company'; |
| | | $wb["title_txt"] = 'Title'; |
| | | $wb["firstname_txt"] = 'Firstname'; |
| | | $wb["surname_txt"] = 'Surname'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | | $wb["limit_database_txt"] = 'limit_database'; |
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs'; |
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions'; |
| | | $wb["ip_address_txt"] = 'ip_address'; |
| | | $wb["limit_client_error_notint"] = 'Client Limit is not a number.'; |
| | | $wb["firstname_error_empty"] = 'Firstname is empty.'; |
| | | $wb["contact_error_empty"] = 'Contact name is empty.'; |
| | | $wb["default_webserver_txt"] = 'Default Webserver'; |
| | | $wb["limit_web_domain_txt"] = 'Max. number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Max. number of web aliasdomains'; |
| | | $wb["limit_web_subdomain_txt"] = 'Max. number of web subdomains'; |
| | | $wb["limit_ftp_user_txt"] = 'Max. number of FTP users'; |
| | | $wb["default_dnsserver_txt"] = 'Default DNS Server'; |
| | | $wb["limit_dns_zone_txt"] = 'Max. number of DNS zones'; |
| | | $wb["limit_dns_record_txt"] = 'Max. number DNS records'; |
| | | $wb["limit_shell_user_txt"] = 'Max. number of Shell users'; |
| | | $wb["limit_client_txt"] = 'Max. number of Clients'; |
| | | $wb["username_error_empty"] = 'Username is empty.'; |
| | | $wb["username_error_unique"] = 'The username must be unique.'; |
| | | $wb["limit_maildomain_error_notint"] = 'The email domain limit must be a number.'; |
| | | $wb["limit_mailbox_error_notint"] = 'The mailbox limit must be a number.'; |
| | | $wb["limit_mailalias_error_notint"] = 'The email alias limit must be a number.'; |
| | | $wb["limit_mailforward_error_notint"] = 'The email forward limit must be a number.'; |
| | | $wb["limit_mailcatchall_error_notint"] = 'The email catchall limit must be a number.'; |
| | | $wb["limit_mailrouting_error_notint"] = 'The email routing limit must be a number.'; |
| | | $wb["limit_mailfilter_error_notint"] = 'The email filter limit must be a number.'; |
| | | $wb["limit_mailfetchmail_error_notint"] = 'The fetchmail limit must be a number.'; |
| | | $wb["limit_mailquota_error_notint"] = 'The email quota limit must be a number.'; |
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb["limit_spamfilter_user_error_notint"] = 'The spamfilter user limit must be a number.'; |
| | | $wb["limit_spamfilter_policy_error_notint"] = 'The spamfilter policy limit must be a number.'; |
| | | $wb["limit_web_domain_error_notint"] = 'The website limit must be a number.'; |
| | | $wb["limit_web_aliasdomain_error_notint"] = 'The website alias domain limit must be a number.'; |
| | | $wb["limit_web_subdomain_error_notint"] = 'The website subdomain limit must be a number.'; |
| | | $wb["limit_ftp_user_error_notint"] = 'The ftp user limit must be a number.'; |
| | | $wb["limit_shell_user_error_notint"] = 'The shell user limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns zone limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns record limit must be a number.'; |
| | | $wb["limit_client_error_notint"] = 'The sub client limit must be a number.'; |
| | | $wb["default_dbserver_txt"] = 'Default Database Server'; |
| | | $wb["limit_database_txt"] = 'Max. number of Databases'; |
| | | $wb["limit_database_error_notint"] = 'The database limit must be a number.'; |
| | | $wb["limit_cron_error_notint"] = 'The cron limit must be a number.'; |
| | | $wb["limit_cron_error_frequency"] = 'The cron frequency limit must be a number.'; |
| | | $wb["username_error_regex"] = 'The Username contains invalid chracaters.'; |
| | | $wb["template_master_txt"] = 'Master template'; |
| | | $wb["template_additional_txt"] = 'Addon template'; |
| | | $wb["ssh_chroot_txt"] = 'SSH-Chroot Options'; |
| | | $wb["web_php_options_txt"] = 'PHP Options'; |
| | | $wb["limit_client_error"] = 'The max. number of clients is reached.'; |
| | | $wb["limit_client_error_positive"] = 'The number of clients must be > 0'; |
| | | $wb['limit_maildomain_txt'] = 'Max. number of email domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. number of mailboxes'; |
| | | $wb['limit_mailalias_txt'] = 'Max. number of email aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. number of email forwarders'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. number of email catchall accounts'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. number of email routes'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. number of email filters'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. number of fetchmail accounts'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox quota'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. number of spamfilter users'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. number of spamfilter policys'; |
| | | $wb['default_mailserver_txt'] = 'Default Mailserver'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['language_txt'] = 'Language'; |
| | | $wb['usertheme_txt'] = 'Theme'; |
| | | $wb['street_txt'] = 'Street'; |
| | | $wb['zip_txt'] = 'ZIP'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['telephone_txt'] = 'Telephone'; |
| | | $wb['mobile_txt'] = 'Mobile'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notes'; |
| | | $wb['company_txt'] = 'Company'; |
| | | $wb['title_txt'] = 'Title'; |
| | | $wb['firstname_txt'] = 'Firstname'; |
| | | $wb['surname_txt'] = 'Surname'; |
| | | $wb['limit_domain_txt'] = 'limit_domain'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomain'; |
| | | $wb['limit_webquota_txt'] = 'limit_webquota'; |
| | | $wb['limit_database_txt'] = 'Max. number of Databases'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['ip_address_txt'] = 'ip_address'; |
| | | $wb['limit_client_error_notint'] = 'The sub client limit must be a number.'; |
| | | $wb['firstname_error_empty'] = 'Firstname is empty.'; |
| | | $wb['contact_error_empty'] = 'Contact name is empty.'; |
| | | $wb['default_webserver_txt'] = 'Default Webserver'; |
| | | $wb['limit_web_domain_txt'] = 'Max. number of web domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. number of web aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. number of web subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. number of FTP users'; |
| | | $wb['default_dnsserver_txt'] = 'Default DNS Server'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. number of DNS zones'; |
| | | $wb['limit_dns_record_txt'] = 'Max. number DNS records'; |
| | | $wb['limit_shell_user_txt'] = 'Max. number of Shell users'; |
| | | $wb['limit_client_txt'] = 'Max. number of Clients'; |
| | | $wb['username_error_empty'] = 'Username is empty.'; |
| | | $wb['username_error_unique'] = 'The username must be unique.'; |
| | | $wb['limit_maildomain_error_notint'] = 'The email domain limit must be a number.'; |
| | | $wb['limit_mailbox_error_notint'] = 'The mailbox limit must be a number.'; |
| | | $wb['limit_mailalias_error_notint'] = 'The email alias limit must be a number.'; |
| | | $wb['limit_mailforward_error_notint'] = 'The email forward limit must be a number.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'The email catchall limit must be a number.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'The email routing limit must be a number.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'The email filter limit must be a number.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'The fetchmail limit must be a number.'; |
| | | $wb['limit_mailquota_error_notint'] = 'The email quota limit must be a number.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'The spamfilter user limit must be a number.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'The spamfilter policy limit must be a number.'; |
| | | $wb['limit_web_domain_error_notint'] = 'The website limit must be a number.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'The website alias domain limit must be a number.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'The website subdomain limit must be a number.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'The ftp user limit must be a number.'; |
| | | $wb['limit_shell_user_error_notint'] = 'The shell user limit must be a number.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'The dns record limit must be a number.'; |
| | | $wb['default_dbserver_txt'] = 'Default Database Server'; |
| | | $wb['limit_database_error_notint'] = 'The database limit must be a number.'; |
| | | $wb['limit_cron_error_notint'] = 'The cron limit must be a number.'; |
| | | $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.'; |
| | | $wb['username_error_regex'] = 'The Username contains invalid chracaters.'; |
| | | $wb['template_master_txt'] = 'Master template'; |
| | | $wb['template_additional_txt'] = 'Addon template'; |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['limit_client_error'] = 'The max. number of clients is reached.'; |
| | | $wb['limit_client_error_positive'] = 'The number of clients must be > 0'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Resellers'; |
| | | $wb["client_id_txt"] = 'ID'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new reseller'; |
| | | $wb['list_head_txt'] = 'Resellers'; |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["limit_maildomain_txt"] = 'Max. number of email domains'; |
| | | $wb["limit_mailbox_txt"] = 'Max. number of mailboxes'; |
| | | $wb["limit_mailalias_txt"] = 'Max. number of email aliases'; |
| | | $wb["limit_mailforward_txt"] = 'Max. number of email forwarders'; |
| | | $wb["limit_mailcatchall_txt"] = 'Max. number of email catchall accounts'; |
| | | $wb["limit_mailrouting_txt"] = 'Max. number of email routes'; |
| | | $wb["limit_mailfilter_txt"] = 'Max. number of email filters'; |
| | | $wb["limit_fetchmail_txt"] = 'Max. number of fetchmail accounts'; |
| | | $wb["limit_mailquota_txt"] = 'Mailbox quota'; |
| | | $wb["limit_spamfilter_wblist_txt"] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb["limit_spamfilter_user_txt"] = 'Max. number of spamfilter users'; |
| | | $wb["limit_spamfilter_policy_txt"] = 'Max. number of spamfilter policys'; |
| | | $wb["default_mailserver_txt"] = 'Default Mailserver'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["username_txt"] = 'Username'; |
| | | $wb["password_txt"] = 'Password'; |
| | | $wb["password_strength_txt"] = 'Password strength'; |
| | | $wb["language_txt"] = 'Language'; |
| | | $wb["usertheme_txt"] = 'Theme'; |
| | | $wb["street_txt"] = 'Street'; |
| | | $wb["zip_txt"] = 'ZIP'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["state_txt"] = 'State'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["telephone_txt"] = 'Telephone'; |
| | | $wb["mobile_txt"] = 'Mobile'; |
| | | $wb["fax_txt"] = 'Fax'; |
| | | $wb["email_txt"] = 'Email'; |
| | | $wb["internet_txt"] = 'Internet'; |
| | | $wb["icq_txt"] = 'ICQ'; |
| | | $wb["notes_txt"] = 'Notes'; |
| | | $wb["company_txt"] = 'Company'; |
| | | $wb["title_txt"] = 'Title'; |
| | | $wb["firstname_txt"] = 'Firstname'; |
| | | $wb["surname_txt"] = 'Surname'; |
| | | $wb["limit_domain_txt"] = 'limit_domain'; |
| | | $wb["limit_subdomain_txt"] = 'limit_subdomain'; |
| | | $wb["limit_webquota_txt"] = 'limit_webquota'; |
| | | $wb["limit_database_txt"] = 'limit_database'; |
| | | $wb["limit_cron_txt"] = 'Max. number of cron jobs'; |
| | | $wb["limit_cron_type_txt"] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb["limit_cron_frequency_txt"] = 'Min. delay between executions'; |
| | | $wb["ip_address_txt"] = 'ip_address'; |
| | | $wb["limit_client_error_notint"] = 'Client Limit is not a number.'; |
| | | $wb["firstname_error_empty"] = 'Firstname is empty.'; |
| | | $wb["contact_error_empty"] = 'Contact name is empty.'; |
| | | $wb["default_webserver_txt"] = 'Default Webserver'; |
| | | $wb["limit_web_domain_txt"] = 'Max. number of web domains'; |
| | | $wb["limit_web_aliasdomain_txt"] = 'Max. number of web aliasdomains'; |
| | | $wb["limit_web_subdomain_txt"] = 'Max. number of web subdomains'; |
| | | $wb["limit_ftp_user_txt"] = 'Max. number of FTP users'; |
| | | $wb["default_dnsserver_txt"] = 'Default DNS Server'; |
| | | $wb["limit_dns_zone_txt"] = 'Max. number of DNS zones'; |
| | | $wb["limit_dns_record_txt"] = 'Max. number DNS records'; |
| | | $wb["limit_shell_user_txt"] = 'Max. number of Shell users'; |
| | | $wb["limit_client_txt"] = 'Max. number of Clients'; |
| | | $wb["username_error_empty"] = 'Username is empty.'; |
| | | $wb["username_error_unique"] = 'The username must be unique.'; |
| | | $wb["limit_maildomain_error_notint"] = 'The email domain limit must be a number.'; |
| | | $wb["limit_mailbox_error_notint"] = 'The mailbox limit must be a number.'; |
| | | $wb["limit_mailalias_error_notint"] = 'The email alias limit must be a number.'; |
| | | $wb["limit_mailforward_error_notint"] = 'The email forward limit must be a number.'; |
| | | $wb["limit_mailcatchall_error_notint"] = 'The email catchall limit must be a number.'; |
| | | $wb["limit_mailrouting_error_notint"] = 'The email routing limit must be a number.'; |
| | | $wb["limit_mailfilter_error_notint"] = 'The email filter limit must be a number.'; |
| | | $wb["limit_mailfetchmail_error_notint"] = 'The fetchmail limit must be a number.'; |
| | | $wb["limit_mailquota_error_notint"] = 'The email quota limit must be a number.'; |
| | | $wb["limit_spamfilter_wblist_error_notint"] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb["limit_spamfilter_user_error_notint"] = 'The spamfilter user limit must be a number.'; |
| | | $wb["limit_spamfilter_policy_error_notint"] = 'The spamfilter policy limit must be a number.'; |
| | | $wb["limit_web_domain_error_notint"] = 'The website limit must be a number.'; |
| | | $wb["limit_web_aliasdomain_error_notint"] = 'The website alias domain limit must be a number.'; |
| | | $wb["limit_web_subdomain_error_notint"] = 'The website subdomain limit must be a number.'; |
| | | $wb["limit_ftp_user_error_notint"] = 'The ftp user limit must be a number.'; |
| | | $wb["limit_shell_user_error_notint"] = 'The shell user limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns zone limit must be a number.'; |
| | | $wb["limit_dns_zone_error_notint"] = 'The dns record limit must be a number.'; |
| | | $wb["limit_client_error_notint"] = 'The sub client limit must be a number.'; |
| | | $wb["default_dbserver_txt"] = 'Default Database Server'; |
| | | $wb["limit_database_txt"] = 'Max. number of Databases'; |
| | | $wb["limit_database_error_notint"] = 'The database limit must be a number.'; |
| | | $wb["limit_cron_error_notint"] = 'The cron limit must be a number.'; |
| | | $wb["limit_cron_error_frequency"] = 'The cron frequency limit must be a number.'; |
| | | $wb["username_error_regex"] = 'The Username contains invalid chracaters.'; |
| | | $wb["template_master_txt"] = 'Master template'; |
| | | $wb["template_additional_txt"] = 'Addon template'; |
| | | $wb["ssh_chroot_txt"] = 'SSH-Chroot Options'; |
| | | $wb["web_php_options_txt"] = 'PHP Options'; |
| | | $wb["limit_client_error"] = 'The max. number of clients is reached.'; |
| | | $wb["limit_client_error_positive"] = 'The number of clients must be > 0'; |
| | | $wb['limit_maildomain_txt'] = 'Max. number of email domains'; |
| | | $wb['limit_mailbox_txt'] = 'Max. number of mailboxes'; |
| | | $wb['limit_mailalias_txt'] = 'Max. number of email aliases'; |
| | | $wb['limit_mailforward_txt'] = 'Max. number of email forwarders'; |
| | | $wb['limit_mailcatchall_txt'] = 'Max. number of email catchall accounts'; |
| | | $wb['limit_mailrouting_txt'] = 'Max. number of email routes'; |
| | | $wb['limit_mailfilter_txt'] = 'Max. number of email filters'; |
| | | $wb['limit_fetchmail_txt'] = 'Max. number of fetchmail accounts'; |
| | | $wb['limit_mailquota_txt'] = 'Mailbox quota'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Max. number of spamfilter white / blacklist filters'; |
| | | $wb['limit_spamfilter_user_txt'] = 'Max. number of spamfilter users'; |
| | | $wb['limit_spamfilter_policy_txt'] = 'Max. number of spamfilter policys'; |
| | | $wb['default_mailserver_txt'] = 'Default Mailserver'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['language_txt'] = 'Language'; |
| | | $wb['usertheme_txt'] = 'Theme'; |
| | | $wb['street_txt'] = 'Street'; |
| | | $wb['zip_txt'] = 'ZIP'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['state_txt'] = 'State'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['telephone_txt'] = 'Telephone'; |
| | | $wb['mobile_txt'] = 'Mobile'; |
| | | $wb['fax_txt'] = 'Fax'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['internet_txt'] = 'Internet'; |
| | | $wb['icq_txt'] = 'ICQ'; |
| | | $wb['notes_txt'] = 'Notes'; |
| | | $wb['company_txt'] = 'Company'; |
| | | $wb['title_txt'] = 'Title'; |
| | | $wb['firstname_txt'] = 'Firstname'; |
| | | $wb['surname_txt'] = 'Surname'; |
| | | $wb['limit_domain_txt'] = 'limit_domain'; |
| | | $wb['limit_subdomain_txt'] = 'limit_subdomain'; |
| | | $wb['limit_webquota_txt'] = 'limit_webquota'; |
| | | $wb['limit_database_txt'] = 'Max. number of Databases'; |
| | | $wb['limit_cron_txt'] = 'Max. number of cron jobs'; |
| | | $wb['limit_cron_type_txt'] = 'Max. type of cron jobs (chrooted and full implies url)'; |
| | | $wb['limit_cron_frequency_txt'] = 'Min. delay between executions'; |
| | | $wb['ip_address_txt'] = 'ip_address'; |
| | | $wb['limit_client_error_notint'] = 'The sub client limit must be a number.'; |
| | | $wb['firstname_error_empty'] = 'Firstname is empty.'; |
| | | $wb['contact_error_empty'] = 'Contact name is empty.'; |
| | | $wb['default_webserver_txt'] = 'Default Webserver'; |
| | | $wb['limit_web_domain_txt'] = 'Max. number of web domains'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Max. number of web aliasdomains'; |
| | | $wb['limit_web_subdomain_txt'] = 'Max. number of web subdomains'; |
| | | $wb['limit_ftp_user_txt'] = 'Max. number of FTP users'; |
| | | $wb['default_dnsserver_txt'] = 'Default DNS Server'; |
| | | $wb['limit_dns_zone_txt'] = 'Max. number of DNS zones'; |
| | | $wb['limit_dns_record_txt'] = 'Max. number DNS records'; |
| | | $wb['limit_shell_user_txt'] = 'Max. number of Shell users'; |
| | | $wb['limit_client_txt'] = 'Max. number of Clients'; |
| | | $wb['username_error_empty'] = 'Username is empty.'; |
| | | $wb['username_error_unique'] = 'The username must be unique.'; |
| | | $wb['limit_maildomain_error_notint'] = 'The email domain limit must be a number.'; |
| | | $wb['limit_mailbox_error_notint'] = 'The mailbox limit must be a number.'; |
| | | $wb['limit_mailalias_error_notint'] = 'The email alias limit must be a number.'; |
| | | $wb['limit_mailforward_error_notint'] = 'The email forward limit must be a number.'; |
| | | $wb['limit_mailcatchall_error_notint'] = 'The email catchall limit must be a number.'; |
| | | $wb['limit_mailrouting_error_notint'] = 'The email routing limit must be a number.'; |
| | | $wb['limit_mailfilter_error_notint'] = 'The email filter limit must be a number.'; |
| | | $wb['limit_mailfetchmail_error_notint'] = 'The fetchmail limit must be a number.'; |
| | | $wb['limit_mailquota_error_notint'] = 'The email quota limit must be a number.'; |
| | | $wb['limit_spamfilter_wblist_error_notint'] = 'The spamfilter white / blacklist limit must be a number.'; |
| | | $wb['limit_spamfilter_user_error_notint'] = 'The spamfilter user limit must be a number.'; |
| | | $wb['limit_spamfilter_policy_error_notint'] = 'The spamfilter policy limit must be a number.'; |
| | | $wb['limit_web_domain_error_notint'] = 'The website limit must be a number.'; |
| | | $wb['limit_web_aliasdomain_error_notint'] = 'The website alias domain limit must be a number.'; |
| | | $wb['limit_web_subdomain_error_notint'] = 'The website subdomain limit must be a number.'; |
| | | $wb['limit_ftp_user_error_notint'] = 'The ftp user limit must be a number.'; |
| | | $wb['limit_shell_user_error_notint'] = 'The shell user limit must be a number.'; |
| | | $wb['limit_dns_zone_error_notint'] = 'The dns record limit must be a number.'; |
| | | $wb['default_dbserver_txt'] = 'Default Database Server'; |
| | | $wb['limit_database_error_notint'] = 'The database limit must be a number.'; |
| | | $wb['limit_cron_error_notint'] = 'The cron limit must be a number.'; |
| | | $wb['limit_cron_error_frequency'] = 'The cron frequency limit must be a number.'; |
| | | $wb['username_error_regex'] = 'The Username contains invalid chracaters.'; |
| | | $wb['template_master_txt'] = 'Master template'; |
| | | $wb['template_additional_txt'] = 'Addon template'; |
| | | $wb['ssh_chroot_txt'] = 'SSH-Chroot Options'; |
| | | $wb['web_php_options_txt'] = 'PHP Options'; |
| | | $wb['limit_client_error'] = 'The max. number of clients is reached.'; |
| | | $wb['limit_client_error_positive'] = 'The number of clients must be > 0'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Resellers'; |
| | | $wb["client_id_txt"] = 'ID'; |
| | | $wb["company_name_txt"] = 'Company name'; |
| | | $wb["contact_name_txt"] = 'Contact name'; |
| | | $wb["city_txt"] = 'City'; |
| | | $wb["country_txt"] = 'Country'; |
| | | $wb["add_new_record_txt"] = 'Add new reseller'; |
| | | $wb['list_head_txt'] = 'Resellers'; |
| | | $wb['client_id_txt'] = 'ID'; |
| | | $wb['company_name_txt'] = 'Company name'; |
| | | $wb['contact_name_txt'] = 'Contact name'; |
| | | $wb['city_txt'] = 'City'; |
| | | $wb['country_txt'] = 'Country'; |
| | | $wb['add_new_record_txt'] = 'Add new reseller'; |
| | | ?> |
| | |
| | | require_once('../lib/config.inc.php');
|
| | | require_once('../lib/app.inc.php');
|
| | |
|
| | | /* |
| | | $module = $_REQUEST["s_mod"];
|
| | | $page = $_REQUEST["s_pg"];
|
| | | */ |
| | |
|
| | | if(!preg_match("/^[a-z]{0,20}$/i", $module)) die('module name contains unallowed chars.');
|
| | | if(!preg_match("/^[a-z]{0,20}$/i", $page)) die('page name contains unallowed chars.');
|
| | | $module = 'login'; |
| | | $page = 'index'; |
| | |
|
| | | if(is_file("$module/$page.php")) {
|
| | | if(!preg_match("/^[a-z]{2,20}$/i", $module)) die('module name contains unallowed chars.'); |
| | | if(!preg_match("/^[a-z]{2,20}$/i", $page)) die('page name contains unallowed chars.'); |
| | |
|
| | | include_once("$module/$page.php");
|
| | | if(is_file(ISPC_WEB_PATH."/$module/$page.php")) { |
| | | |
| | | include_once(ISPC_WEB_PATH."/$module/$page.php"); |
| | |
|
| | | $classname = $module.'_'.$page;
|
| | | $page = new $classname();
|
| | |
| | | if(!preg_match("/^[a-z]{2,20}$/i", $module)) die('target module name contains unallowed chars.');
|
| | | if(!preg_match("/^[a-z]{2,20}$/i", $page)) die('target page name contains unallowed chars.');
|
| | |
|
| | | if(is_file("$module/$page.php")) {
|
| | | include_once("$module/$page.php");
|
| | | if(is_file(ISPC_WEB_PATH."/$module/$page.php")) { |
| | | include_once(ISPC_WEB_PATH."/$module/$page.php"); |
| | |
|
| | | $classname = $module.'_'.$page;
|
| | | $page = new $classname();
|
| | |
| | | $wb['auth_preset_perm_group_txt'] = 'Perm. Grupo'; |
| | | $wb['auth_preset_perm_other_txt'] = 'Perm. Outros'; |
| | | ?> |
| | | |
| | |
| | | $wb['title_txt'] = 'Título'; |
| | | $wb['description_txt'] = 'Descrição'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Remover o menu e todos os seus itens?'; |
| | | $wb['item_del_txt'] = 'Remover o item de menu?'; |
| | | ?> |
| | | |
| | |
| | | <b>Dica:</b> Todos os caminhos são relativos ao diretório web. |
| | | '; |
| | | ?> |
| | | |
| | |
| | | $wb['module_txt'] = 'Módulo'; |
| | | $wb['title_txt'] = 'Título'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Salvar'; |
| | | $wb['cancel_txt'] = 'Cancelar'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Salvar'; |
| | | $wb['cancel_txt'] = 'Cancelar'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Deseja apagar este menu e todos seus elementos?'; |
| | | $wb['item_del_txt'] = 'Deseja apagar este elemento do menu?'; |
| | | ?> |
| | | |
| | |
| | | $wb['auth_preset_perm_group_txt'] = 'Perm. Group'; |
| | | $wb['auth_preset_perm_other_txt'] = 'Perm. Other'; |
| | | ?> |
| | | |
| | |
| | | $wb['title_txt'] = 'Title'; |
| | | $wb['description_txt'] = 'Description'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Delete menu with all menuitems?'; |
| | | $wb['item_del_txt'] = 'Delete menuitem?'; |
| | | ?> |
| | | |
| | |
| | | <b>Hint:</b> All paths are relative to the directory web. |
| | | '; |
| | | ?> |
| | | |
| | |
| | | $wb['module_txt'] = 'Module'; |
| | | $wb['title_txt'] = 'Title'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Save'; |
| | | $wb['cancel_txt'] = 'Cancel'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Save'; |
| | | $wb['cancel_txt'] = 'Cancel'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Wollen Sie das Men� mit allen Untereintr�gen l�schen?'; |
| | | $wb['item_del_txt'] = 'Wollen Sie den Men�eintrag l�schen?'; |
| | | ?> |
| | | |
| | |
| | | $wb['auth_preset_perm_group_txt'] = 'Perm. Groep'; |
| | | $wb['auth_preset_perm_other_txt'] = 'Perm. Overige'; |
| | | ?> |
| | | |
| | |
| | | $wb['title_txt'] = 'Titel'; |
| | | $wb['description_txt'] = 'Omschrijving'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Verwijder menu met alle menuitems?'; |
| | | $wb['item_del_txt'] = 'Verwijder menuitem?'; |
| | | ?> |
| | | |
| | |
| | | <b>Hint:</b> Alle paden zijn relatief aan de directorie web.
|
| | | '; |
| | | ?> |
| | | |
| | |
| | | $wb['module_txt'] = 'Module'; |
| | | $wb['title_txt'] = 'Titel'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Opslaan'; |
| | | $wb['cancel_txt'] = 'Annuleren'; |
| | | ?> |
| | | |
| | |
| | | $wb['save_txt'] = 'Opslaan'; |
| | | $wb['cancel_txt'] = 'Annuleren'; |
| | | ?> |
| | | |
| | |
| | | $wb['menu_del_txt'] = 'Wilt u het menu en alle subitems verwijderen?'; |
| | | $wb['item_del_txt'] = 'Wilt u de menuitems verwijderen?'; |
| | | ?> |
| | | |
| | |
| | | <?php
|
| | | $wb["name_txt"] = 'Nazwa formularza';
|
| | | $wb["title_txt"] = 'Tytuł formularza';
|
| | | $wb["template_txt"] = 'Szablon';
|
| | | $wb["navframe_txt"] = 'Ramka nawigacyjna';
|
| | | $wb["startpage_txt"] = 'Strona startowa';
|
| | | $wb["tab_width_txt"] = 'Szerokość zakładki';
|
| | | $wb["save_txt"] = 'Zapisz';
|
| | | $wb["cancel_txt"] = 'Anuluj';
|
| | | $wb["header_txt"] = 'Parametry formularza';
|
| | | $wb["description_txt"] = 'Opis';
|
| | | $wb["action_txt"] = 'Akcja (skrypt)';
|
| | | $wb["db_table_txt"] = 'DB Tabela';
|
| | | $wb["db_table_idx_txt"] = 'DB Indeks tabeli';
|
| | | $wb["db_history_txt"] = 'Cofnij Log';
|
| | | $wb["tab_default_txt"] = 'Domyślna zakładka';
|
| | | $wb["list_default_txt"] = 'Domyślna lista';
|
| | | $wb["tab_width_txt"] = 'Szerokość zakładki';
|
| | | $wb["auth_txt"] = 'Dostęp';
|
| | | $wb["auth_preset_userid_txt"] = 'ID Użytkownika';
|
| | | $wb["auth_preset_groupid_txt"] = 'ID Grupy';
|
| | | $wb["auth_preset_perm_user_txt"] = 'Stały użytkownik';
|
| | | $wb["auth_preset_perm_group_txt"] = 'Stała grupa';
|
| | | $wb["auth_preset_perm_other_txt"] = 'Stała inna';
|
| | |
|
| | | $wb['name_txt'] = 'Nazwa formularza'; |
| | | $wb['title_txt'] = 'Tytuł formularza'; |
| | | $wb['template_txt'] = 'Szablon'; |
| | | $wb['navframe_txt'] = 'Ramka nawigacyjna'; |
| | | $wb['startpage_txt'] = 'Strona startowa'; |
| | | $wb['tab_width_txt'] = 'Szerokość zakładki'; |
| | | $wb['save_txt'] = 'Zapisz'; |
| | | $wb['cancel_txt'] = 'Anuluj'; |
| | | $wb['header_txt'] = 'Parametry formularza'; |
| | | $wb['description_txt'] = 'Opis'; |
| | | $wb['action_txt'] = 'Akcja (skrypt)'; |
| | | $wb['db_table_txt'] = 'DB Tabela'; |
| | | $wb['db_table_idx_txt'] = 'DB Indeks tabeli'; |
| | | $wb['db_history_txt'] = 'Cofnij Log'; |
| | | $wb['tab_default_txt'] = 'Domyślna zakładka'; |
| | | $wb['list_default_txt'] = 'Domyślna lista'; |
| | | $wb['auth_txt'] = 'Dostęp'; |
| | | $wb['auth_preset_userid_txt'] = 'ID Użytkownika'; |
| | | $wb['auth_preset_groupid_txt'] = 'ID Grupy'; |
| | | $wb['auth_preset_perm_user_txt'] = 'Stały użytkownik'; |
| | | $wb['auth_preset_perm_group_txt'] = 'Stała grupa'; |
| | | $wb['auth_preset_perm_other_txt'] = 'Stała inna'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Tylny formularz';
|
| | | $wb["form_txt"] = 'Formularz';
|
| | | $wb["module_txt"] = 'Moduł';
|
| | | $wb["title_txt"] = 'Tytuł';
|
| | | $wb["description_txt"] = 'Opis';
|
| | | $wb['list_head_txt'] = 'Tylny formularz'; |
| | | $wb['form_txt'] = 'Formularz'; |
| | | $wb['module_txt'] = 'Moduł'; |
| | | $wb['title_txt'] = 'Tytuł'; |
| | | $wb['description_txt'] = 'Opis'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["header_txt"] = 'Edytor formularza';
|
| | | $wb["title_txt"] = 'Tytuł formularza';
|
| | | $wb["name_txt"] = 'Nazwa formularza';
|
| | | $wb["delete_txt"] = 'Usuń';
|
| | | $wb["properties_txt"] = 'Preferencje';
|
| | | $wb["new_tab_txt"] = 'Nowa zakładka';
|
| | | $wb["edit_txt"] = 'Edytuj';
|
| | | $wb["new_txt"] = 'Nowy';
|
| | | $wb["up_txt"] = '^';
|
| | | $wb["down_txt"] = 'v';
|
| | | $wb["module_txt"] = 'Moduł';
|
| | | $wb["form_txt"] = 'Formularz';
|
| | | $wb["description_txt"] = 'Opis';
|
| | | $wb["module_del_txt"] = "Usunąć moduł i wszystkie podkatalogi?";
|
| | | $wb["menu_del_txt"] = "Usunąć menu i wszystkie jego elementy?";
|
| | | $wb["item_del_txt"] = "Usunąc element menu?";
|
| | | $wb['header_txt'] = 'Edytor formularza'; |
| | | $wb['title_txt'] = 'Tytuł formularza'; |
| | | $wb['name_txt'] = 'Nazwa formularza'; |
| | | $wb['delete_txt'] = 'Usuń'; |
| | | $wb['properties_txt'] = 'Preferencje'; |
| | | $wb['new_tab_txt'] = 'Nowa zakładka'; |
| | | $wb['edit_txt'] = 'Edytuj'; |
| | | $wb['new_txt'] = 'Nowy'; |
| | | $wb['up_txt'] = '^'; |
| | | $wb['down_txt'] = 'v'; |
| | | $wb['module_txt'] = 'Moduł'; |
| | | $wb['form_txt'] = 'Formularz'; |
| | | $wb['description_txt'] = 'Opis'; |
| | | $wb['module_del_txt'] = 'Usunąć moduł i wszystkie podkatalogi?'; |
| | | $wb['menu_del_txt'] = 'Usunąć menu i wszystkie jego elementy?'; |
| | | $wb['item_del_txt'] = 'Usunąc element menu?'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["name_txt"] = 'Nazwa modułu';
|
| | | $wb["title_txt"] = 'Tytuł modułu';
|
| | | $wb["template_txt"] = 'Plik szablonu';
|
| | | $wb["navframe_txt"] = 'Ramka nawigacyjna';
|
| | | $wb["startpage_txt"] = 'Strona domyślna';
|
| | | $wb["tab_width_txt"] = 'Szerokość zakładki';
|
| | | $wb["save_txt"] = 'Zapisz';
|
| | | $wb["cancel_txt"] = 'Anuluj';
|
| | | $wb["header_txt"] = 'Parametry modułu';
|
| | | $wb["description_txt"] = '
|
| | | $wb['name_txt'] = 'Nazwa modułu'; |
| | | $wb['title_txt'] = 'Tytuł modułu'; |
| | | $wb['template_txt'] = 'Plik szablonu'; |
| | | $wb['navframe_txt'] = 'Ramka nawigacyjna'; |
| | | $wb['startpage_txt'] = 'Strona domyślna'; |
| | | $wb['tab_width_txt'] = 'Szerokość zakładki'; |
| | | $wb['save_txt'] = 'Zapisz'; |
| | | $wb['cancel_txt'] = 'Anuluj'; |
| | | $wb['header_txt'] = 'Parametry modułu'; |
| | | $wb['description_txt'] = '
|
| | | <b>Opis</b>
|
| | | <br><br>
|
| | | <b>Nazwa modułu:</b> Nazwa katalogu z modułem. Tylko liczby, litery (bez polskich) i podkreślenie są dozwolone.<br>
|
| | |
| | | <b>Szerokość zakładki:</b> Szerokość zakładek w głownym menu nawigacyjnym. To pole jest domyślnie puste. Możesz podać wartość w pikselach (np.: 20) lub procentach (np.: 20%).<br>
|
| | | <b>Podpowiedź:</b> Wszystkie ścieżki są względne według strony www..
|
| | | ';
|
| | |
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Nazwa modułu';
|
| | | $wb["module_txt"] = 'Moduł';
|
| | | $wb["title_txt"] = 'Tytuł';
|
| | | $wb['list_head_txt'] = 'Nazwa modułu'; |
| | | $wb['module_txt'] = 'Moduł'; |
| | | $wb['title_txt'] = 'Tytuł'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["title_txt"] = 'Tytuł';
|
| | | $wb["header_txt"] = 'Paramtery nawigacyjne';
|
| | | $wb["save_txt"] = 'Zapisz';
|
| | | $wb["cancel_txt"] = 'Usuń';
|
| | | $wb['title_txt'] = 'Tytuł'; |
| | | $wb['header_txt'] = 'Paramtery nawigacyjne'; |
| | | $wb['save_txt'] = 'Zapisz'; |
| | | $wb['cancel_txt'] = 'Usuń'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["title_txt"] = 'Tytuł';
|
| | | $wb["target_txt"] = 'Cel';
|
| | | $wb["link_txt"] = 'Adres';
|
| | | $wb["header_txt"] = 'Parametry nawigacyjne';
|
| | | $wb["save_txt"] = 'Zapisz';
|
| | | $wb["cancel_txt"] = 'Usuń';
|
| | | $wb['title_txt'] = 'Tytuł'; |
| | | $wb['target_txt'] = 'Cel'; |
| | | $wb['link_txt'] = 'Adres'; |
| | | $wb['header_txt'] = 'Parametry nawigacyjne'; |
| | | $wb['save_txt'] = 'Zapisz'; |
| | | $wb['cancel_txt'] = 'Usuń'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["header_txt"] = 'Edytor menu';
|
| | | $wb["title_txt"] = 'Tytuł';
|
| | | $wb["name_txt"] = 'Moduł';
|
| | | $wb["delete_txt"] = 'Usuń';
|
| | | $wb["properties_txt"] = 'Parametry';
|
| | | $wb["new_menu_txt"] = 'Nowe menu';
|
| | | $wb["edit_txt"] = 'Edytuj';
|
| | | $wb["delete_txt"] = 'Usuń';
|
| | | $wb["new_txt"] = 'Nowy';
|
| | | $wb["up_txt"] = 'W górę';
|
| | | $wb["down_txt"] = 'W dół';
|
| | | $wb["module_txt"] = 'Moduł';
|
| | | $wb["module_del_txt"] = "Czy na pewno chcesz usunąć moduł wraz z wszystkimi plikami i wpisami w bazie danych?";
|
| | | $wb["menu_del_txt"] = "Czy na pewno chcesz usunąć menu z wszystkimi wpisami?";
|
| | | $wb["item_del_txt"] = "Czy na pewno chcesz usunąć wpis w menu?";
|
| | | $wb['header_txt'] = 'Edytor menu'; |
| | | $wb['title_txt'] = 'Tytuł'; |
| | | $wb['name_txt'] = 'Moduł'; |
| | | $wb['delete_txt'] = 'Usuń'; |
| | | $wb['properties_txt'] = 'Parametry'; |
| | | $wb['new_menu_txt'] = 'Nowe menu'; |
| | | $wb['edit_txt'] = 'Edytuj'; |
| | | $wb['new_txt'] = 'Nowy'; |
| | | $wb['up_txt'] = 'W górę'; |
| | | $wb['down_txt'] = 'W dół'; |
| | | $wb['module_txt'] = 'Moduł'; |
| | | $wb['module_del_txt'] = 'Czy na pewno chcesz usunąć moduł wraz z wszystkimi plikami i wpisami w bazie danych?'; |
| | | $wb['menu_del_txt'] = 'Czy na pewno chcesz usunąć menu z wszystkimi wpisami?'; |
| | | $wb['item_del_txt'] = 'Czy na pewno chcesz usunąć wpis w menu?'; |
| | | ?>
|
| | | |
| | |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| | | 'errmsg'=> 'data_error_empty'), |
| | | 1 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^[\w\.\-]{0,64}\s[\w\.\-]{0,64}\s[\w\.\-]{0,64}$/', |
| | | 'errmsg'=> 'srv_error_regex'), |
| | | ), |
| | | 'default' => '', |
| | | 'value' => '', |
| | |
| | | $wb['name_error_regex'] = 'The hostname has the wrong format.'; |
| | | $wb['data_error_empty'] = 'Server record empty'; |
| | | $wb['data_error_regex'] = 'Server record format invalid'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | |
| | | $wb['DNS TXT Record'] = 'Registro TXT DNS'; |
| | | $wb['DNS TXT'] = 'TXT DNS'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_regex'] = 'Endereço-IP formato inválido'; |
| | | $wb['data_error_duplicate'] = 'Registro-A duplicado'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'de'; |
| | | $wb['delete_confirmation'] = 'Tem certeza que deseja remover este registro?'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Endereço-IP em branco'; |
| | | $wb['data_error_regex'] = 'Endereço-IP com formato inválido'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Hostname de destino está em branco'; |
| | | $wb['data_error_regex'] = 'O hostname de destino está em um formato inválido.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Hostname de destino está em branco'; |
| | | $wb['data_error_regex'] = 'O hostname de destino está em um formato inválido.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Endereço-IP em branco'; |
| | | $wb['data_error_regex'] = 'Endereço-IP formato inválido'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Hostname do servidor de correio em branco'; |
| | | $wb['data_error_regex'] = 'Hostname do servidor de correio formato inválido'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Servidor de nomes em branco'; |
| | | $wb['data_error_regex'] = 'Servidor de nomes com formato inválido'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Endereço-IP em branco'; |
| | | $wb['data_error_regex'] = 'Endereço-IP formato inválido'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Pessoa responsável em branco'; |
| | | $wb['data_error_regex'] = 'Pessoa responsável formato inválido'; |
| | | ?> |
| | | |
| | |
| | | $wb['mbox_error_empty'] = 'Correio está em branco.'; |
| | | $wb['mbox_error_regex'] = 'Correio com formato inválido.'; |
| | | ?> |
| | | |
| | |
| | | $wb['mbox_txt'] = 'Correio'; |
| | | $wb['add_new_record_txt'] = 'Adcionar uma nova zona dns (SOA)'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_error_regex'] = 'O Hostname está com formato inválido.'; |
| | | $wb['data_error_empty'] = 'Registro do Servidor em branco'; |
| | | $wb['data_error_regex'] = 'Registro do Servidor com formato inválido'; |
| | | $wb['srv_error_regex'] = 'Registro do Servidor com formato inválido. São necessários 3 textos separados por espaços'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_txt'] = 'Gabarito'; |
| | | $wb['visible_txt'] = 'Visível'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Nome'; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo registro'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Endereço-IP em branco'; |
| | | $wb['data_error_regex'] = 'Endereço-IP formato inválido'; |
| | | ?> |
| | | |
| | |
| | | $wb['error_ns2_empty'] = 'NS2 vazio.'; |
| | | $wb['error_email_empty'] = 'Correio vazio.'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_error_regex'] = 'Der Hostname hat das falsche Format.'; |
| | | $wb['data_error_empty'] = 'Servereintrag ist leer'; |
| | | $wb['data_error_regex'] = 'Servereintrag Format ungültig'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | |
| | | $wb["name_error_regex"] = 'The hostname has the wrong format.'; |
| | | $wb["data_error_empty"] = 'Server record empty'; |
| | | $wb["data_error_regex"] = 'Server record format invalid'; |
| | | $wb["srv_error_regex"] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | |
| | | $wb['name_error_regex'] = 'El formato del nombre de máquina es incorrecto.'; |
| | | $wb['data_error_empty'] = 'Registro de servidor vacío.'; |
| | | $wb['data_error_regex'] = 'Registro de servidor inválido.'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | |
| | | $wb['name_error_regex'] = 'Verkkotunnus on vääränlainen.'; |
| | | $wb['data_error_empty'] = 'Palvelintietue on tyhjä.'; |
| | | $wb['data_error_regex'] = 'Palvelintietue on vääränlainen.'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | |
| | | $wb['name_error_regex'] = 'The hostname has the wrong format.'; |
| | | $wb['data_error_empty'] = 'Server record empty'; |
| | | $wb['data_error_regex'] = 'Server record format invalid'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | |
| | | $wb['DNS TXT Record'] = 'DNS TXT Record'; |
| | | $wb['DNS TXT'] = 'DNS TXT'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_error_regex'] = 'The hostname has the wrong format.'; |
| | | $wb['data_error_empty'] = 'IP-Address empty'; |
| | | $wb['data_error_regex'] = 'IP-Address format invalid'; |
| | | $wb['data_error_duplicate'] = 'Duplicate A-Record'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Add new DNS A-Record'; |
| | | $wb['delete_confirmation'] = 'Do you really want to delete this record?'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["zone_txt"] = 'Zone'; |
| | | $wb["name_txt"] = 'Hostname'; |
| | | $wb["type_txt"] = 'type'; |
| | | $wb["data_txt"] = 'IPv6-Address'; |
| | | $wb["ttl_txt"] = 'TTL'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["limit_dns_record_txt"] = 'The max. number of DNS records for your account is reached.'; |
| | | $wb["no_zone_perm"] = 'You do not have the permission to add a record to this DNS zone.'; |
| | | $wb["name_error_empty"] = 'The hostname is empty.'; |
| | | $wb["name_error_regex"] = 'The hostname has the wrong format.'; |
| | | $wb["data_error_empty"] = 'IP-Address empty'; |
| | | $wb["data_error_regex"] = 'IP-Address format invalid'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['zone_txt'] = 'Zone'; |
| | | $wb['name_txt'] = 'Hostname'; |
| | | $wb['type_txt'] = 'type'; |
| | | $wb['data_txt'] = 'IPv6-Address'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['limit_dns_record_txt'] = 'The max. number of DNS records for your account is reached.'; |
| | | $wb['no_zone_perm'] = 'You do not have the permission to add a record to this DNS zone.'; |
| | | $wb['name_error_empty'] = 'The hostname is empty.'; |
| | | $wb['name_error_regex'] = 'The hostname has the wrong format.'; |
| | | $wb['data_error_empty'] = 'IP-Address empty'; |
| | | $wb['data_error_regex'] = 'IP-Address format invalid'; |
| | | ?> |
| | |
| | | $wb['data_error_empty'] = 'Target hostname empty'; |
| | | $wb['data_error_regex'] = 'Target hostname format invalid'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Target hostname empty'; |
| | | $wb['data_error_regex'] = 'Target hostname format invalid'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Host information empty'; |
| | | $wb['data_error_regex'] = 'Host Information format invalid'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Mailserver hostname empty'; |
| | | $wb['data_error_regex'] = 'Mailserver hostname format invalid'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Nameserver empty'; |
| | | $wb['data_error_regex'] = 'Nameserver format invalid'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Canonical hostname empty'; |
| | | $wb['data_error_regex'] = 'Canonical hostname format invalid'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Responsible person field empty'; |
| | | $wb['data_error_regex'] = 'Responsible person field format invalid'; |
| | | ?> |
| | | |
| | |
| | | $wb['mbox_error_empty'] = 'Email is empty.'; |
| | | $wb['mbox_error_regex'] = 'Email format invalid.'; |
| | | ?> |
| | | |
| | |
| | | $wb['mbox_txt'] = 'Email'; |
| | | $wb['add_new_record_txt'] = 'Add new DNS Zone (SOA)'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_error_regex'] = 'The hostname has the wrong format.'; |
| | | $wb['data_error_empty'] = 'Server record empty'; |
| | | $wb['data_error_regex'] = 'Server record format invalid'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb["name_txt"] = 'Name'; |
| | | $wb["fields_txt"] = 'Fields'; |
| | | $wb["template_txt"] = 'Template'; |
| | | $wb["visible_txt"] = 'Visible'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['fields_txt'] = 'Fields'; |
| | | $wb['template_txt'] = 'Template'; |
| | | $wb['visible_txt'] = 'Visible'; |
| | | ?> |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'DNS Wizard Template'; |
| | | $wb["visible_txt"] = 'Visible'; |
| | | $wb["name_txt"] = 'Name'; |
| | | $wb["add_new_record_txt"] = 'Add new record'; |
| | | $wb['list_head_txt'] = 'DNS Wizard Template'; |
| | | $wb['visible_txt'] = 'Visible'; |
| | | $wb['name_txt'] = 'Name'; |
| | | $wb['add_new_record_txt'] = 'Add new record'; |
| | | ?> |
| | |
| | | $wb['data_error_empty'] = 'Text empty'; |
| | | $wb['data_error_regex'] = 'Text format invalid'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | |
| | | $wb['template_id_txt'] = 'Template'; |
| | | $wb['server_id_txt'] = 'Server'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb["btn_save_txt"] = 'Create DNS Record'; |
| | | $wb["btn_cancel_txt"] = 'Cancel'; |
| | | $wb['btn_save_txt'] = 'Create DNS Record'; |
| | | $wb['btn_cancel_txt'] = 'Cancel'; |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['ns1_txt'] = 'NS 1'; |
| | |
| | | $wb['error_ns1_empty'] = 'NS1 empty.'; |
| | | $wb['error_ns2_empty'] = 'NS2 empty.'; |
| | | $wb['error_email_empty'] = 'EMail empty.'; |
| | | |
| | | ?> |
| | |
| | | $wb['name_error_regex'] = 'The hostname has the wrong format.'; |
| | | $wb['data_error_empty'] = 'Server record empty'; |
| | | $wb['data_error_regex'] = 'Server record format invalid'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | |
| | | $wb['DNS TXT Record'] = 'DNS TXT record'; |
| | | $wb['DNS TXT'] = 'DNS TXT'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_regex'] = 'IP-adres indeling ongeldig.'; |
| | | $wb['data_error_duplicate'] = 'Dit A-record bestaat al.'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'van'; |
| | | $wb['delete_confirmation'] = 'Weet u zeker dat u dit record wilt verwijderen?'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'IP-adres is leeg.'; |
| | | $wb['data_error_regex'] = 'IP-adres heeft geen juiste indeling.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Doel hostnaam is leeg'; |
| | | $wb['data_error_regex'] = 'Doel hostnaam indeling is ongeldig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Doel hostnaam is leeg.'; |
| | | $wb['data_error_regex'] = 'Doel hostnaam formaat ongeldig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Host informatie is leeg.'; |
| | | $wb['data_error_regex'] = 'Host Informatie indeling is ongeldig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Mailserver hostnaam is leeg.'; |
| | | $wb['data_error_regex'] = 'Mailserver hostnaam indeling is ongeldig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Nameserver is leeg.'; |
| | | $wb['data_error_regex'] = 'Nameserver formaat ongeldig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Canonical hostnaam is leeg.'; |
| | | $wb['data_error_regex'] = 'Canonical hostnaam formaat ongeldig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Verantwoordelijke persoon veld is leeg.'; |
| | | $wb['data_error_regex'] = 'Verantwoordelijke persoon veld indeling is ongeldig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['mbox_error_empty'] = 'E-mailadres is leeg.'; |
| | | $wb['mbox_error_regex'] = 'De indeling van het e-mailadres is ongeldig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['mbox_txt'] = 'E-mailadres zone-verantwoordelijke'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe DNS zone toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_error_regex'] = 'De hostnaam heeft een verkeerde indeling.'; |
| | | $wb['data_error_empty'] = 'Server record is leeg.'; |
| | | $wb['data_error_regex'] = 'Server record indeling is ongeldig.'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | | |
| | |
| | | $wb['template_txt'] = 'Template-data'; |
| | | $wb['visible_txt'] = 'Zichtbaar?'; |
| | | ?> |
| | | |
| | |
| | | $wb['name_txt'] = 'Naam'; |
| | | $wb['add_new_record_txt'] = 'Nieuw record toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['data_error_empty'] = 'Tekst is leeg.'; |
| | | $wb['data_error_regex'] = 'Tekst indeling is ongeldig.'; |
| | | ?> |
| | | |
| | |
| | | $wb['error_ns2_empty'] = 'Nameserver 2 is leeg.'; |
| | | $wb['error_email_empty'] = 'E-mail is leeg.'; |
| | | ?> |
| | | |
| | |
| | | <?php
|
| | |
|
| | | $wb['DNS'] = 'DNS';
|
| | | $wb['Zones'] = 'Strefy';
|
| | | $wb['DNS A'] = 'DNS A';
|
| | |
| | | $wb['DNS SRV'] = 'DNS SRV';
|
| | | $wb['DNS TXT Record'] = 'Wpis DNS TXT';
|
| | | $wb['DNS TXT'] = 'DNS TXT';
|
| | |
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa serwera';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Adres - IP';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis DNS dla tej strefy.';
|
| | | $wb["name_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa serwera ma niepoprawny format.';
|
| | | $wb["data_error_empty"] = 'Adres IP jest pusty';
|
| | | $wb["data_error_regex"] = 'Adres IP ma niepoprawny format';
|
| | | $wb["data_error_duplicate"] = 'Duplikat wpisu A';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Adres - IP'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis DNS dla tej strefy.'; |
| | | $wb['name_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa serwera ma niepoprawny format.'; |
| | | $wb['data_error_empty'] = 'Adres IP jest pusty'; |
| | | $wb['data_error_regex'] = 'Adres IP ma niepoprawny format'; |
| | | $wb['data_error_duplicate'] = 'Duplikat wpisu A'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'A-Wpis';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa';
|
| | | $wb["data_txt"] = 'Data';
|
| | | $wb["aux_txt"] = 'Priorytet';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy A-Wpis DNS';
|
| | | $wb["page_txt"] = 'Strona';
|
| | | $wb["page_of_txt"] = 'z';
|
| | | $wb['list_head_txt'] = 'A-Wpis'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['data_txt'] = 'Data'; |
| | | $wb['aux_txt'] = 'Priorytet'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy A-Wpis DNS'; |
| | | $wb['page_txt'] = 'Strona'; |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Jesteś pewny, że chcesz usunąć ten wpis?';
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa serwera';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Adres IPv6';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis w tej strefie DNS.';
|
| | | $wb["name_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa serwera ma niepoprawny format.';
|
| | | $wb["data_error_empty"] = 'Adres IP jest pusty';
|
| | | $wb["data_error_regex"] = 'Adres IP ma niepoprawny format';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Adres IPv6'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis w tej strefie DNS.'; |
| | | $wb['name_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa serwera ma niepoprawny format.'; |
| | | $wb['data_error_empty'] = 'Adres IP jest pusty'; |
| | | $wb['data_error_regex'] = 'Adres IP ma niepoprawny format'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa serwera';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Docelowa nazwa serwera';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywne';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis dla tej strefy DNS.';
|
| | | $wb["name_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa serwera ma zły format.';
|
| | | $wb["data_error_empty"] = 'Docelowa nazwa serwera jest pusta.';
|
| | | $wb["data_error_regex"] = 'Docelowa nazwa serwera ma niepoprawny format.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Docelowa nazwa serwera'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywne'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis dla tej strefy DNS.'; |
| | | $wb['name_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa serwera ma zły format.'; |
| | | $wb['data_error_empty'] = 'Docelowa nazwa serwera jest pusta.'; |
| | | $wb['data_error_regex'] = 'Docelowa nazwa serwera ma niepoprawny format.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa serwera';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Docelowa nazwa serwera';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywne';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis w tej strefie DNS.';
|
| | | $wb["name_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa serwera ma niepoprawny format.';
|
| | | $wb["data_error_empty"] = 'Docelowa nazwa serwera jest pusta';
|
| | | $wb["data_error_regex"] = 'Docelowa nazwa serwera ma niepoprawny format';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Docelowa nazwa serwera'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywne'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis w tej strefie DNS.'; |
| | | $wb['name_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa serwera ma niepoprawny format.'; |
| | | $wb['data_error_empty'] = 'Docelowa nazwa serwera jest pusta'; |
| | | $wb['data_error_regex'] = 'Docelowa nazwa serwera ma niepoprawny format'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa serwera';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Informacje o serwerze';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.';
|
| | | $wb["name_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa serwera ma niepoprawny format.';
|
| | | $wb["data_error_empty"] = 'Informacje o serwerze są puste';
|
| | | $wb["data_error_regex"] = 'Informacje o serwerze mają niepoprawny format';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Informacje o serwerze'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.'; |
| | | $wb['name_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa serwera ma niepoprawny format.'; |
| | | $wb['data_error_empty'] = 'Informacje o serwerze są puste'; |
| | | $wb['data_error_regex'] = 'Informacje o serwerze mają niepoprawny format'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa serwera';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Nazwa serwera poczty e-mail';
|
| | | $wb["aux_txt"] = 'Priorytet';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.';
|
| | | $wb["name_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa serwera ma zły format.';
|
| | | $wb["data_error_empty"] = 'Nazwa serwera poczty e-mail jest pusta.';
|
| | | $wb["data_error_regex"] = 'Nazwa serwera poczty e-mail ma niepoprawny format.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Nazwa serwera poczty e-mail'; |
| | | $wb['aux_txt'] = 'Priorytet'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.'; |
| | | $wb['name_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa serwera ma zły format.'; |
| | | $wb['data_error_empty'] = 'Nazwa serwera poczty e-mail jest pusta.'; |
| | | $wb['data_error_regex'] = 'Nazwa serwera poczty e-mail ma niepoprawny format.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Strefa';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Nazwa serwera';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywne';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.';
|
| | | $wb["name_error_empty"] = 'Strefa jest pusta.';
|
| | | $wb["name_error_regex"] = 'Strefa ma zły format.';
|
| | | $wb["data_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["data_error_regex"] = 'Nazwa serwera ma zły format.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Strefa'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Nazwa serwera'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywne'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.'; |
| | | $wb['name_error_empty'] = 'Strefa jest pusta.'; |
| | | $wb['name_error_regex'] = 'Strefa ma zły format.'; |
| | | $wb['data_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['data_error_regex'] = 'Nazwa serwera ma zły format.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Standardowa nazwa serwera';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.';
|
| | | $wb["name_error_empty"] = 'Nazwa jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa ma zły format.';
|
| | | $wb["data_error_empty"] = 'Standardowa nazwa serwera jest pusta';
|
| | | $wb["data_error_regex"] = 'Standardowa nazwa serwera ma zły format';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Standardowa nazwa serwera'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.'; |
| | | $wb['name_error_empty'] = 'Nazwa jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa ma zły format.'; |
| | | $wb['data_error_empty'] = 'Standardowa nazwa serwera jest pusta'; |
| | | $wb['data_error_regex'] = 'Standardowa nazwa serwera ma zły format'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa serwera';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Osoba odpowiedzialna';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.';
|
| | | $wb["name_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa serwera ma zły format.';
|
| | | $wb["data_error_empty"] = 'Musisz podać osobę odpowiedzialna';
|
| | | $wb["data_error_regex"] = 'Nazwa osoby odpowiedzialnej ma niepoprawny format';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Osoba odpowiedzialna'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis do tej strefy DNS.'; |
| | | $wb['name_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa serwera ma zły format.'; |
| | | $wb['data_error_empty'] = 'Musisz podać osobę odpowiedzialna'; |
| | | $wb['data_error_regex'] = 'Nazwa osoby odpowiedzialnej ma niepoprawny format'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["origin_txt"] = 'Strefa (SOA)';
|
| | | $wb["ns_txt"] = 'NS';
|
| | | $wb["mbox_txt"] = 'E-mail';
|
| | | $wb["serial_txt"] = 'Klucz';
|
| | | $wb["refresh_txt"] = 'Odśwież';
|
| | | $wb["retry_txt"] = 'Ponów';
|
| | | $wb["expire_txt"] = 'Wygasł';
|
| | | $wb["minimum_txt"] = 'Minimum';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["xfer_txt"] = 'Zezwól na przeniesienie stref do <br />tych adresów IP (adresy rozdzielaj przecinkiem)';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_dns_zone_txt"] = 'Maksymalna ilość stref DNS dla Twojego konta została przekroczona.';
|
| | | $wb["client_txt"] = 'Klient';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis dla tej strefy DNS.';
|
| | | $wb["server_id_error_empty"] = 'Nie wybrano serwera';
|
| | | $wb["origin_error_empty"] = 'Strefa jest pusta.';
|
| | | $wb["origin_error_unique"] = 'Istnieje już wpis dla tej strefy.';
|
| | | $wb["origin_error_regex"] = 'Strefa ma niepoprawny format.';
|
| | | $wb["ns_error_regex"] = 'NS ma niepoprawny format.';
|
| | | $wb["mbox_error_empty"] = 'E-mail jest pusty.';
|
| | | $wb["mbox_error_regex"] = 'E-mail ma niepoprawny format.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['origin_txt'] = 'Strefa (SOA)'; |
| | | $wb['ns_txt'] = 'NS'; |
| | | $wb['mbox_txt'] = 'E-mail'; |
| | | $wb['serial_txt'] = 'Klucz'; |
| | | $wb['refresh_txt'] = 'Odśwież'; |
| | | $wb['retry_txt'] = 'Ponów'; |
| | | $wb['expire_txt'] = 'Wygasł'; |
| | | $wb['minimum_txt'] = 'Minimum'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['xfer_txt'] = 'Zezwól na przeniesienie stref do <br />tych adresów IP (adresy rozdzielaj przecinkiem)'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_zone_txt'] = 'Maksymalna ilość stref DNS dla Twojego konta została przekroczona.'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis dla tej strefy DNS.'; |
| | | $wb['server_id_error_empty'] = 'Nie wybrano serwera'; |
| | | $wb['origin_error_empty'] = 'Strefa jest pusta.'; |
| | | $wb['origin_error_unique'] = 'Istnieje już wpis dla tej strefy.'; |
| | | $wb['origin_error_regex'] = 'Strefa ma niepoprawny format.'; |
| | | $wb['ns_error_regex'] = 'NS ma niepoprawny format.'; |
| | | $wb['mbox_error_empty'] = 'E-mail jest pusty.'; |
| | | $wb['mbox_error_regex'] = 'E-mail ma niepoprawny format.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Strefy DNS';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["origin_txt"] = 'Strefa';
|
| | | $wb["ns_txt"] = 'NS';
|
| | | $wb["mbox_txt"] = 'E-mail';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nową stefę DNS (SOA)';
|
| | | $wb['list_head_txt'] = 'Strefy DNS'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['origin_txt'] = 'Strefa'; |
| | | $wb['ns_txt'] = 'NS'; |
| | | $wb['mbox_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową stefę DNS (SOA)'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa serwera';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Wpis serwera';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis dla tej strefy DNS.';
|
| | | $wb["name_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa serwera ma zły format.';
|
| | | $wb["data_error_empty"] = 'Wpis serwera jest pusty';
|
| | | $wb["data_error_regex"] = 'Wpis serwera ma niepoprawny format';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Wpis serwera'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis dla tej strefy DNS.'; |
| | | $wb['name_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa serwera ma zły format.'; |
| | | $wb['data_error_empty'] = 'Wpis serwera jest pusty'; |
| | | $wb['data_error_regex'] = 'Wpis serwera ma niepoprawny format'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["name_txt"] = 'Nazwa';
|
| | | $wb["fields_txt"] = 'Pola';
|
| | | $wb["template_txt"] = 'Szablon';
|
| | | $wb["visible_txt"] = 'Widoczność';
|
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['fields_txt'] = 'Pola'; |
| | | $wb['template_txt'] = 'Szablon'; |
| | | $wb['visible_txt'] = 'Widoczność'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Instalator szablonów DNS';
|
| | | $wb["visible_txt"] = 'Widoczność';
|
| | | $wb["name_txt"] = 'Nazwa';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy wpis';
|
| | | $wb['list_head_txt'] = 'Instalator szablonów DNS'; |
| | | $wb['visible_txt'] = 'Widoczność'; |
| | | $wb['name_txt'] = 'Nazwa'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy wpis'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["zone_txt"] = 'Strefa';
|
| | | $wb["name_txt"] = 'Nazwa serwera';
|
| | | $wb["type_txt"] = 'typ';
|
| | | $wb["data_txt"] = 'Tekst';
|
| | | $wb["ttl_txt"] = 'TTL';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_dns_record_txt"] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.';
|
| | | $wb["no_zone_perm"] = 'Nie masz uprawnień, aby dodać nowy wpis dla tej strefy DNS.';
|
| | | $wb["name_error_empty"] = 'Nazwa serwera jest pusta.';
|
| | | $wb["name_error_regex"] = 'Nazwa serwera ma zły format.';
|
| | | $wb["data_error_empty"] = 'Tekst jest pusty';
|
| | | $wb["data_error_regex"] = 'Tekst ma zły format';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['zone_txt'] = 'Strefa'; |
| | | $wb['name_txt'] = 'Nazwa serwera'; |
| | | $wb['type_txt'] = 'typ'; |
| | | $wb['data_txt'] = 'Tekst'; |
| | | $wb['ttl_txt'] = 'TTL'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_dns_record_txt'] = 'Maksymalna ilość wpisów DNS dla Twojego konta została przekroczona.'; |
| | | $wb['no_zone_perm'] = 'Nie masz uprawnień, aby dodać nowy wpis dla tej strefy DNS.'; |
| | | $wb['name_error_empty'] = 'Nazwa serwera jest pusta.'; |
| | | $wb['name_error_regex'] = 'Nazwa serwera ma zły format.'; |
| | | $wb['data_error_empty'] = 'Tekst jest pusty'; |
| | | $wb['data_error_regex'] = 'Tekst ma zły format'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | |
|
| | | $wb['template_id_txt'] = 'Szablon';
|
| | | $wb['server_id_txt'] = 'Serwer';
|
| | | $wb['client_txt'] = 'Klient';
|
| | | $wb["btn_save_txt"] = 'Stwórz wpid DNS';
|
| | | $wb["btn_cancel_txt"] = 'Anuluj';
|
| | | $wb['btn_save_txt'] = 'Stwórz wpid DNS'; |
| | | $wb['btn_cancel_txt'] = 'Anuluj'; |
| | | $wb['domain_txt'] = 'Domena';
|
| | | $wb['email_txt'] = 'E-mail';
|
| | | $wb['ns1_txt'] = 'NS 1';
|
| | |
| | | $wb['error_ns1_empty'] = 'NS1 jest puste.';
|
| | | $wb['error_ns2_empty'] = 'NS2 jest puste.';
|
| | | $wb['error_email_empty'] = 'E-mail jest pusty.';
|
| | |
|
| | | ?>
|
| | | |
| | |
| | | $wb['name_error_regex'] = 'Имя узла имеет неправильный формат.'; |
| | | $wb['data_error_empty'] = 'Сервер record пустой'; |
| | | $wb['data_error_regex'] = 'Сервер record имеет неправильный формат'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | |
| | | $wb['name_error_regex'] = 'The hostname has the wrong format.'; |
| | | $wb['data_error_empty'] = 'Server record empty'; |
| | | $wb['data_error_regex'] = 'Server record format invalid'; |
| | | $wb['srv_error_regex'] = 'Invalid server record format. The server record must contain 3 text strings separated by spaces.'; |
| | | ?> |
| | |
| | | $wb['View messages'] = 'Ver Mensagem'; |
| | | $wb['Support'] = 'Suporte'; |
| | | ?> |
| | | |
| | |
| | | $wb['message_txt'] = 'Mensagem'; |
| | | $wb['tstamp_txt'] = 'Data'; |
| | | ?> |
| | | |
| | |
| | | $wb['subject_txt'] = 'Assunto'; |
| | | $wb['add_new_record_txt'] = 'Crie uma nova mensagem de suporte'; |
| | | ?> |
| | | |
| | |
| | | $wb['View messages'] = 'Üzeneteket megnéz'; |
| | | $wb['Support'] = 'Support'; |
| | | ?> |
| | | |
| | |
| | | $wb['message_txt'] = 'Üzenet'; |
| | | $wb['tstamp_txt'] = 'Időbélyeg'; |
| | | ?> |
| | | |
| | |
| | | $wb['subject_txt'] = 'Tárgy'; |
| | | $wb['add_new_record_txt'] = 'Új szupport üzenet'; |
| | | ?> |
| | | |
| | |
| | | $wb['View messages'] = 'Bekijk berichten'; |
| | | $wb['Support'] = 'Support'; |
| | | ?> |
| | | |
| | |
| | | $wb['message_txt'] = 'Bericht'; |
| | | $wb['tstamp_txt'] = 'Datum en tijd'; |
| | | ?> |
| | | |
| | |
| | | $wb['subject_txt'] = 'Onderwerp'; |
| | | $wb['add_new_record_txt'] = 'Nieuw support bericht aanmaken'; |
| | | ?> |
| | | |
| | |
| | | $wb['View messages'] = 'Pokaż wiadomość'; |
| | | $wb['Support'] = 'Pomoc'; |
| | | ?> |
| | | |
| | |
| | | $wb['message_txt'] = 'Wiadomość';
|
| | | $wb['tstamp_txt'] = 'Kalendarz';
|
| | | ?>
|
| | |
|
| | | |
| | |
| | | $wb['subject_txt'] = 'Temat'; |
| | | $wb['add_new_record_txt'] = 'Wyślij wiadomość'; |
| | | ?> |
| | | |
| | |
| | | $username = $app->db->quote($_POST['username']); |
| | | $passwort = $app->db->quote($_POST['passwort']); |
| | | $loginAs = false; |
| | | $time = time(); |
| | | |
| | | if($username != '' && $passwort != '' && $error == '') { |
| | | /* |
| | |
| | | $wb['password_txt'] = 'Senha'; |
| | | $wb['login_button_txt'] = 'Login'; |
| | | ?> |
| | | |
| | |
| | | <?php |
| | | $wb['1001'] = 'Felhasználónév vagy jelszó mező üres.'; |
| | | $wb['1002'] = 'Felhasználónév vagy jelszó hibás'; |
| | | $wb['1003'] = 'Felhasználó blokkolt.'; |
| | | $wb['1004'] = 'Túl sok hibás bejelentkezés, Kérem próbálja 15 perc múlva'; |
| | | $wb['pass_reset_txt'] = 'Új jelszót generáltunk és email címére elküldjük, amennyiben a lent beírt email cím megegyezik a nyilvántartásban szereplő címmel.'; |
| | | $wb['pw_reset'] = 'Jelszavát reseteltük és elküldtük email címére.'; |
| | | $wb['pw_error'] = 'Felhasználónév vagy email cím nem egyezik.'; |
| | |
| | | $wb['pw_reset_mail_title'] = 'ISPConfig 3 Control panel jelszó módosítva.'; |
| | | $wb['user_regex_error'] = 'Felhasználónév érvénytelen karaktereket tartalmaz, vagy több mint 64 karakter'; |
| | | $wb['pw_error_length'] = 'A jelszó kevesebb legyen mint 64 karakter'; |
| | | $wb['error_user_password_empty'] = 'Username or Password empty.'; |
| | | $wb['error_user_password_incorrect'] = 'Username or Password wrong.'; |
| | | $wb['error_user_blocked'] = 'User is blocked.'; |
| | | $wb['error_user_too_many_logins'] = 'To many wrong logins, Please retry it after 15 minutes'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['login_button_txt'] = 'Login'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_txt'] = 'Wachtwoord'; |
| | | $wb['login_button_txt'] = 'Inloggen'; |
| | | ?> |
| | | |
| | |
| | | <?php
|
| | |
|
| | | $wb[1001] = "Nazwa użytkownika lub hasło są puste.";
|
| | | $wb[1002] = "Nazwa użytkownika lub hasło są niepoprawne.";
|
| | | $wb[1003] = "Za dużo błednych logowań. Proszę spróbować za 15 minut.";
|
| | | $wb[1004] = "To many wrong login's, Please retry it after 15 minutes";
|
| | | $wb['pass_reset_txt'] = 'Nowe hasło zostanie wygenerowane i wysłane na Twój adres e-mail, jeśli podany adres e-mail będzie pasował do tego w ustawieniach Twojego profilu.';
|
| | | $wb['pw_reset'] = 'Nowe hasło zostało wygenerowane i wysłane na Twój adres e-mail.';
|
| | | $wb['pw_error'] = 'Nazwa użytkownika lub e-mail nie pasują do siebie.';
|
| | | $wb['pw_error_noinput'] = 'Podaj nazwę użytkownika i adres e-mail.';
|
| | |
|
| | | $wb['pw_reset_mail_msg'] = 'Hasło do Twojego panelu w ISPConfig 3 zostało z resetowane. Twoje nowe hasło to: ';
|
| | | $wb['pw_reset_mail_title'] = 'Hasło do paneli w ISPConfig 3 zostało z resetowane.';
|
| | |
|
| | | $wb['user_regex_error'] = 'Nazwa użytkownika zawiera niedozwolone znaki lub jest dłuższa niż 64 znaki.';
|
| | | $wb['pw_error_length'] = 'Dłogość hasła jest > 64 znaki.';
|
| | |
|
| | | $wb['error_user_password_empty'] = 'Username or Password empty.'; |
| | | $wb['error_user_password_incorrect'] = 'Username or Password wrong.'; |
| | | $wb['error_user_blocked'] = 'User is blocked.'; |
| | | $wb['error_user_too_many_logins'] = 'To many wrong logins, Please retry it after 15 minutes'; |
| | | $wb['username_txt'] = 'Username'; |
| | | $wb['password_txt'] = 'Password'; |
| | | $wb['login_button_txt'] = 'Login'; |
| | | ?>
|
| | | |
| | |
| | | $wb['welcome_mail_fromname_txt'] = 'ISPConfig3'; |
| | | $wb['welcome_mail_fromemail_txt'] = 'webmaster@localhost.tld'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'There is already an alias or forwrd with this email address.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | |
| | | $wb['Content Filter'] = 'Filtros de Conteúdo'; |
| | | $wb['Global Filters'] = 'Filtros Globais'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_mailalias_txt'] = 'O número máximo de aliases para sua conta foi atingido.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Já existe uma caixa de correio com este endereço.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['add_new_record_txt'] = 'Add new Email alias'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Tipo'; |
| | | $wb['limit_mailfilter_txt'] = 'O número máximo de filtros de correio para sua conta foi atingido..'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Adcionar novo registro a lista'; |
| | | $wb['access_txt'] = 'acesso'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Ativo'; |
| | | $wb['pattern_error_empty'] = 'Padrão em branco'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Ação'; |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo filtro de conteúdo'; |
| | | ?> |
| | | |
| | |
| | | $wb['policy_txt'] = 'Filtro Anti-Spam'; |
| | | $wb['no_policy'] = '- desativado -'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_regex'] = 'O nome do domínio contém caracteres inválidos'; |
| | | $wb['limit_mailcatchall_txt'] = 'O número máximo de catchall para este domínio foi atingido.'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domínio'; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo Catchall'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Adcionar novo domínio'; |
| | | $wb['active_txt'] = 'Ativo'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_mailforward_txt'] = 'O número máximo de encaminhamentos para sua conta foi atingido.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Já existe uma caixa de correio com este endereço.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Correio'; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo encaminhamento'; |
| | | ?> |
| | | |
| | |
| | | $wb['source_password_error_isempty'] = 'Senha em branco.'; |
| | | $wb['destination_error_isemail'] = 'Destino não selecionado.'; |
| | | ?> |
| | | |
| | |
| | | $wb['destination_txt'] = 'Destino'; |
| | | $wb['add_new_record_txt'] = 'Adcionar nova Conta'; |
| | | ?> |
| | | |
| | |
| | | $wb['spam_redirect_maildir_purge_txt'] = 'Remover Maildir depois'; |
| | | $wb['days_txt'] = 'Dias.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Correio'; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo filtro anti-spam'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Ativo'; |
| | | $wb['limit_mailrouting_txt'] = 'O número máximo de rotas para sua conta foi atingido.'; |
| | | ?> |
| | | |
| | |
| | | $wb['sort_order_txt'] = 'Ordenar por'; |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo transporte'; |
| | | ?> |
| | | |
| | |
| | | $wb['disableimap_txt'] = 'Desativar IMAP'; |
| | | $wb['disablepop3_txt'] = 'Disativar POP3'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'Já existe um aliase o encaminhamento com este endereço de correio.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | | |
| | |
| | | $wb['searchterm_is_empty'] = 'Termo de busca em branco.'; |
| | | $wb['source_txt'] = 'Origem'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'de'; |
| | | $wb['delete_confirmation'] = 'Está certo que quer remover este mailfilter?'; |
| | | ?> |
| | | |
| | |
| | | $wb['autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['add_new_record_txt'] = 'Adcionar nova caixa de correio'; |
| | | ?> |
| | | |
| | |
| | | $wb['this_year_txt'] = 'Este Ano'; |
| | | $wb['last_year_txt'] = 'Último Ano'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Tipo'; |
| | | $wb['limit_mailfilter_txt'] = 'O número máximo de filtros para sua conta foi atingido.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo registro a lista'; |
| | | $wb['access_txt'] = 'acesso'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Ativo'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'O número máximo de registros de lista negra / branca foi atingido para esta conta.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Correio na Lista Negra'; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo registro a lista'; |
| | | ?> |
| | | |
| | |
| | | $wb['mailbox_size_limit_txt'] = 'Tamanho Caixa de Correio'; |
| | | $wb['message_size_limit_txt'] = 'Tamanho da Mensagem'; |
| | | ?> |
| | | |
| | |
| | | $wb['server_name_txt'] = 'Servidor'; |
| | | $wb['server_id_txt'] = 'id_servidor'; |
| | | ?> |
| | | |
| | |
| | | $wb['message_size_limit_txt'] = 'Tamanho limite da mensagem'; |
| | | $wb['banned_rulenames_txt'] = 'Regras de Banimento'; |
| | | ?> |
| | | |
| | |
| | | $wb['bad_header_lover_txt'] = 'Permitir Bad Header'; |
| | | $wb['add_new_record_txt'] = 'Adcionar Registro'; |
| | | ?> |
| | | |
| | |
| | | $wb['fullname_txt'] = 'Nome'; |
| | | $wb['local_txt'] = 'Local'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['add_new_record_txt'] = 'Adcionar Usuário'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Ativo'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'O número máximo de registros da lista branca / negra foi atingido para esta conta.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Correio na lista branca'; |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo correio'; |
| | | ?> |
| | | |
| | |
| | | $wb['welcome_mail_fromname_txt'] = 'ISPConfig3'; |
| | | $wb['welcome_mail_fromemail_txt'] = 'webmaster@ihredomain.at'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'Es existiert bereits ein Alias oder eine Weiterleitung mit dieser Email Adresse.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | |
| | | $wb['welcome_mail_fromname_txt'] = 'ISPConfig3'; |
| | | $wb['welcome_mail_fromemail_txt'] = 'webmaster@localhost.tld'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'There is already an alias or forwrd with this email address.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | |
| | | $wb['disablepop3_txt'] = 'Estä POP3'; |
| | | $wb['password_strength_txt'] = 'Salasanan vahvuus'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'There is already an alias or forwrd with this email address.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | |
| | | $wb['welcome_mail_fromname_txt'] = 'ISPConfig3'; |
| | | $wb['welcome_mail_fromemail_txt'] = 'webmaster@localhost.tld'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'There is already an alias or forwrd with this email address.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | |
| | | $wb['Content Filter'] = 'Tartalom szűrő'; |
| | | $wb['Global Filters'] = 'Globális szűrők'; |
| | | ?> |
| | | |
| | |
| | | $wb['no_domain_perm'] = 'Nincs joga ehhez a domainhoz.'; |
| | | $wb['destination_error_isemail'] = 'Címzett email címe érvénytelen'; |
| | | $wb['limit_mailalias_txt'] = 'Nincs több alias lehetőség.'; |
| | | $wb['duplicate_mailbox_txt'] = 'There is already a mailbox with this email address'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['add_new_record_txt'] = 'Új email alias'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Típus'; |
| | | $wb['limit_mailfilter_txt'] = 'Nincs több szűrő lehetőség.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Új feketelistás'; |
| | | $wb['access_txt'] = 'hozzáférés'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktív'; |
| | | $wb['pattern_error_empty'] = 'Minta mező üres.'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Művelet'; |
| | | $wb['add_new_record_txt'] = 'Új tartalom szűrő'; |
| | | ?> |
| | | |
| | |
| | | $wb['policy_txt'] = 'Spamszűrő'; |
| | | $wb['no_policy'] = '- nem engedélyezett -'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_regex'] = 'Érvénytelen domain vagy a domain érvénytelen karaktereket tartalmaz.'; |
| | | $wb['limit_mailcatchall_txt'] = 'Nincs több catchall lehetőség.'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domain'; |
| | | $wb['add_new_record_txt'] = 'Új Catchall'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Új domain'; |
| | | $wb['active_txt'] = 'Aktív'; |
| | | ?> |
| | | |
| | |
| | | $wb['destination_txt'] = 'Címzett Email'; |
| | | $wb['active_txt'] = 'Aktív'; |
| | | $wb['limit_mailforward_txt'] = 'Nincs több email továbbítási lehetőség.'; |
| | | $wb['duplicate_mailbox_txt'] = 'There is already a mailbox with this email address'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['add_new_record_txt'] = 'Új email továbbítás'; |
| | | ?> |
| | | |
| | |
| | | $wb['source_password_error_isempty'] = 'Jelszó üres.'; |
| | | $wb['destination_error_isemail'] = 'Nem választott címzettet.'; |
| | | ?> |
| | | |
| | |
| | | $wb['destination_txt'] = 'Címzett'; |
| | | $wb['add_new_record_txt'] = 'Új legyűjtés'; |
| | | ?> |
| | | |
| | |
| | | $wb['spam_redirect_maildir_purge_txt'] = 'Levelesládát kiüríti '; |
| | | $wb['days_txt'] = 'nap után.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['add_new_record_txt'] = 'Új spamszűrő'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktív'; |
| | | $wb['limit_mailrouting_txt'] = 'Nincs több Email irányítás lehetőség.'; |
| | | ?> |
| | | |
| | |
| | | $wb['sort_order_txt'] = 'Rendezés'; |
| | | $wb['add_new_record_txt'] = 'Új irányítás'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['welcome_mail_fromname_txt'] = 'ISPConfig3'; |
| | | $wb['welcome_mail_fromemail_txt'] = 'webmaster@localhost.tld'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'There is already an alias or forwrd with this email address.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | | |
| | |
| | | $wb['searchterm_is_empty'] = 'Keresési feltétel üres'; |
| | | $wb['source_txt'] = 'Forrás'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_txt'] = 'Oldal'; |
| | | $wb['page_of_txt'] = 'Összesen'; |
| | | $wb['add_new_record_txt'] = 'Új szűrő'; |
| | | $wb['delete_confirmation'] = 'Do you really want to Delete the mailfilter?'; |
| | | ?> |
| | | |
| | |
| | | $wb['autoresponder_txt'] = 'Automatikus válasz'; |
| | | $wb['add_new_record_txt'] = 'Levelező fiókot létrehoz'; |
| | | ?> |
| | | |
| | |
| | | $wb['this_year_txt'] = 'Idén'; |
| | | $wb['last_year_txt'] = 'Tavaly'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Típus'; |
| | | $wb['limit_mailfilter_txt'] = 'Nincs több szűrő lehetőség.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Új Fehérlista'; |
| | | $wb['access_txt'] = 'hozzáférés'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktív'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Nincs több Fehér- Feketelista lehetőség.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Fehérlistás Email'; |
| | | $wb['add_new_record_txt'] = 'Új Feketelista'; |
| | | ?> |
| | | |
| | |
| | | $wb['mailbox_size_limit_txt'] = 'Mailbox Méret korlát'; |
| | | $wb['message_size_limit_txt'] = 'Üzenet méret korlát'; |
| | | ?> |
| | | |
| | |
| | | $wb['server_name_txt'] = 'Szerver'; |
| | | $wb['server_id_txt'] = 'szerver_azonosító'; |
| | | ?> |
| | | |
| | |
| | | $wb['message_size_limit_txt'] = 'Levél méret limit'; |
| | | $wb['banned_rulenames_txt'] = 'Tiltószabály nevek'; |
| | | ?> |
| | | |
| | |
| | | $wb['bad_header_lover_txt'] = 'Hibás fejlécet szereti'; |
| | | $wb['add_new_record_txt'] = 'Új Szabály'; |
| | | ?> |
| | | |
| | |
| | | $wb['fullname_txt'] = 'Név'; |
| | | $wb['local_txt'] = 'Helyi'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Email'; |
| | | $wb['add_new_record_txt'] = 'Új Spamszűrő Felhasználó'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Aktív'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Nincs több Fehér- Feketelista lehetőség.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Fehérlistás Email'; |
| | | $wb['add_new_record_txt'] = 'Új fehérlistás'; |
| | | ?> |
| | | |
| | |
| | | $wb['welcome_mail_fromname_txt'] = 'ISPConfig3'; |
| | | $wb['welcome_mail_fromemail_txt'] = 'webmaster@localhost.tld'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'There is already an alias or forwrd with this email address.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | |
| | | $wb['Content Filter'] = 'Content filter'; |
| | | $wb['Global Filters'] = 'Globale filters'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_mailalias_txt'] = 'Het max. aantal e-mailaliassen voor uw account is bereikt.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Er is al een e-mailaccount ingesteld op het door u gewenste adres.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe e-mailalias toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['limit_mailfilter_txt'] = 'Het max. aantal e-mailfilters voor uw account is bereikt.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Nieuw blacklist record toevoegen'; |
| | | $wb['access_txt'] = 'Toegang'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Actieve'; |
| | | $wb['pattern_error_empty'] = 'Patroon is leeg.'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Actie'; |
| | | $wb['add_new_record_txt'] = 'Nieuw content filter toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['policy_txt'] = 'Spamfilter'; |
| | | $wb['no_policy'] = '- niet ingeschakeld -'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_regex'] = 'Ongeldige domeinnaam of het domein bevat ongeldige karakters.'; |
| | | $wb['limit_mailcatchall_txt'] = 'Het max. aantal e-mail catch-all accounts voor uw account is bereikt.'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domeinnaam'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe catch-all toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Nieuw domein toevoegen'; |
| | | $wb['active_txt'] = 'Actief?'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_mailforward_txt'] = 'Het max. aantal email forwarders voor uw account is bereikt.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Er is al een e-mailaccount aanwezig op het door u gewenste adres.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe e-mail forward toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['source_password_error_isempty'] = 'Wachtwoord is leeg.'; |
| | | $wb['destination_error_isemail'] = 'Er is geen bestemming geselecteerd.'; |
| | | ?> |
| | | |
| | |
| | | $wb['destination_txt'] = 'Bestemming'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe account toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['spam_redirect_maildir_purge_txt'] = 'Leeg map na'; |
| | | $wb['days_txt'] = 'dagen.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Spamfilter record toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Actief?'; |
| | | $wb['limit_mailrouting_txt'] = 'Het max. aantal routes voor uw account is bereikt.'; |
| | | ?> |
| | | |
| | |
| | | $wb['sort_order_txt'] = 'Sorteren op'; |
| | | $wb['add_new_record_txt'] = 'Nieuw e-mail route toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['duplicate_alias_or_forward_txt'] = 'Er is al een e-mailalias of een forward ingesteld voor dit e-mailadres.'; |
| | | $wb['quota_error_value'] = 'Ongeldige schijfruimte-limiet. Toegestaan zijn: -1 (onbeperkt) of cijfers (>1)'; |
| | | ?> |
| | | |
| | |
| | | $wb['searchterm_is_empty'] = 'Zoekterm is leeg.'; |
| | | $wb['source_txt'] = 'Bron'; |
| | | ?> |
| | | |
| | |
| | | $wb['page_of_txt'] = 'van'; |
| | | $wb['delete_confirmation'] = 'Weet u zeker dat u deze e-mailfilter wilt verwijderen?'; |
| | | ?> |
| | | |
| | |
| | | $wb['autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['add_new_record_txt'] = 'Nieuw e-mailaccount toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['this_year_txt'] = 'Dit jaar'; |
| | | $wb['last_year_txt'] = 'Vorig jaar'; |
| | | ?> |
| | | |
| | |
| | | $wb['type_txt'] = 'Type'; |
| | | $wb['limit_mailfilter_txt'] = 'Het max. aantal e-mailfilters voor uw account is bereikt.'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Nieuw whitelist record toevoegen'; |
| | | $wb['access_txt'] = 'Toegang'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Actief?'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Het max. aantal white- en blacklist-records van uw account is bereikt.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Whitelisted e-mail'; |
| | | $wb['add_new_record_txt'] = 'Blacklist record toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['mailbox_size_limit_txt'] = 'Mailboxgrootte Limiet'; |
| | | $wb['message_size_limit_txt'] = 'Berichtgrootte Limiet'; |
| | | ?> |
| | | |
| | |
| | | $wb['server_name_txt'] = 'Server'; |
| | | $wb['server_id_txt'] = 'server ID'; |
| | | ?> |
| | | |
| | |
| | | $wb['message_size_limit_txt'] = 'Berichtgrootte limiet'; |
| | | $wb['banned_rulenames_txt'] = 'Verboden regelnaam'; |
| | | ?> |
| | | |
| | |
| | | $wb['bad_header_lover_txt'] = 'Verbannen header liefhebbers'; |
| | | $wb['add_new_record_txt'] = 'Policy record toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['fullname_txt'] = 'Naam'; |
| | | $wb['local_txt'] = 'Lokaal'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Spamfilter gebruiker toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['active_txt'] = 'Actief?'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Het max. aantal white- en blacklist-records van uw account is bereikt.'; |
| | | ?> |
| | | |
| | |
| | | $wb['email_txt'] = 'Whitelisted e-mail'; |
| | | $wb['add_new_record_txt'] = 'Whitelist record toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['Email Whitelist'] = 'Biała lista E-mail';
|
| | | $wb['Whitelist'] = 'Biała lista';
|
| | | $wb['Spamfilter blacklist'] = 'Filtr spamu czarnej listy';
|
| | | $wb['Blacklist'] = 'Czarna lista';
|
| | | $wb['Spamfilter Config'] = 'konfiguracja filtrów spamu';
|
| | | $wb['Server'] = 'Serwer';
|
| | | $wb['Spamfilter policy'] = 'Polityka filtrów spamu';
|
| | |
| | | $wb['Spamfilter users'] = 'Filtr spamu użytkowników';
|
| | | $wb['Users'] = 'Użytkownicy';
|
| | | $wb['Spamfilter Whitelist'] = 'Filtr spamu białej listy';
|
| | | $wb['Whitelist'] = 'Biała lista';
|
| | | $wb['Email'] = 'E-mail';
|
| | | $wb['Email Mailbox'] = 'Skrzynka pocztowa E-mail';
|
| | | $wb['Email Accounts'] = 'Konta E-mail';
|
| | | $wb['User / Domain'] = 'Użytkownik / Domena';
|
| | | $wb['Server Settings'] = 'Ustawienia serwera';
|
| | | $wb['Spamfilter'] = 'Filtr spamu';
|
| | | $wb['Fetchmail'] = 'Fetchmail';
|
| | | $wb['Mailbox traffic'] = 'Ruch w skrzynce pocztowej';
|
| | | $wb['Statistics'] = 'Statystyki';
|
| | |
| | | $wb['Postfix Blacklist'] = 'Popraw czarną listę';
|
| | | $wb['Content Filter'] = 'Zawartość filtru';
|
| | | $wb['Global Filters'] = 'Globalne filtry';
|
| | |
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["destination_txt"] = 'Opis';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["email_error_isemail"] = 'Adres e-mail jest niepoprawny.';
|
| | | $wb["email_error_unique"] = 'Duplikat adresów e-mail.';
|
| | | $wb["no_domain_perm"] = "Nie masz dostępu do tej domeny.";
|
| | | $wb["destination_error_isemail"] = 'Element docelowy adresów e-mail jest niepoprawny.';
|
| | | $wb["limit_mailalias_txt"] = 'Maksymalna ilość aliasów e-mail dla Twojego konta została przekroczona.';
|
| | | $wb["duplicate_mailbox_txt"] = 'There is already a mailbox with this email address';
|
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['destination_txt'] = 'Opis'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['email_error_isemail'] = 'Adres e-mail jest niepoprawny.'; |
| | | $wb['email_error_unique'] = 'Duplikat adresów e-mail.'; |
| | | $wb['no_domain_perm'] = 'Nie masz dostępu do tej domeny.'; |
| | | $wb['destination_error_isemail'] = 'Element docelowy adresów e-mail jest niepoprawny.'; |
| | | $wb['limit_mailalias_txt'] = 'Maksymalna ilość aliasów e-mail dla Twojego konta została przekroczona.'; |
| | | $wb['duplicate_mailbox_txt'] = 'There is already a mailbox with this email address'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Aliasy E-mail';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["source_txt"] = 'źródło';
|
| | | $wb["destination_txt"] = 'Element docelowy';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy alias e-mail';
|
| | | $wb['list_head_txt'] = 'Aliasy E-mail'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['source_txt'] = 'źródło'; |
| | | $wb['destination_txt'] = 'Element docelowy'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy alias e-mail'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["source_txt"] = 'Adres Czarnej listy';
|
| | | $wb["recipient_txt"] = 'Odbiorca';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["source_error_notempty"] = 'Adres jest pusty.';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["limit_mailfilter_txt"] = 'Maksymalna ilość filtrów dla Twojego konta została przekroczona.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['source_txt'] = 'Adres Czarnej listy'; |
| | | $wb['recipient_txt'] = 'Odbiorca'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['source_error_notempty'] = 'Adres jest pusty.'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Maksymalna ilość filtrów dla Twojego konta została przekroczona.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Czarna lista E-mail';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["source_txt"] = 'Adresy wpisane na czarną listę';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["recipient_txt"] = 'Odbiorca';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy wpis czarnej listy';
|
| | | $wb["access_txt"] = 'dostęp';
|
| | | $wb['list_head_txt'] = 'Czarna lista E-mail'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['source_txt'] = 'Adresy wpisane na czarną listę'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['recipient_txt'] = 'Odbiorca'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy wpis czarnej listy'; |
| | | $wb['access_txt'] = 'dostęp'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["type_txt"] = 'Filtr';
|
| | | $wb["pattern_txt"] = 'Wyrażenie regularne, wzór';
|
| | | $wb["data_txt"] = 'Data';
|
| | | $wb["action_txt"] = 'Akcja';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["pattern_error_empty"] = 'Wzór jest pusty.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['type_txt'] = 'Filtr'; |
| | | $wb['pattern_txt'] = 'Wyrażenie regularne, wzór'; |
| | | $wb['data_txt'] = 'Data'; |
| | | $wb['action_txt'] = 'Akcja'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['pattern_error_empty'] = 'Wzór jest pusty.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Popraw nagłowek oraz stronę';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["pattern_txt"] = 'Wzór';
|
| | | $wb["action_txt"] = 'Akcja';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy zbiór filtrów';
|
| | | $wb['list_head_txt'] = 'Popraw nagłowek oraz stronę'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['pattern_txt'] = 'Wzór'; |
| | | $wb['action_txt'] = 'Akcja'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy zbiór filtrów'; |
| | | ?>
|
| | | |
| | |
| | | $wb['policy_txt'] = 'Filtr spamu';
|
| | | $wb['no_policy'] = '-nie używane-';
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["domain_txt"] = 'Domena';
|
| | | $wb["destination_txt"] = 'Element docelowy';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["domain_error_unique"] = "Jest już wpis Catchall dla tej domeny.";
|
| | | $wb["no_domain_perm"] = "Nie masz dostępu do tej domeny.";
|
| | | $wb["domain_error_regex"] = 'Nieprawidłowa nazwa domeny. Domena zawiera niedozolone znaki.';
|
| | | $wb["limit_mailcatchall_txt"] = 'Maksymalna ilość kont e-mial catchall dla Twojej domeny została przekroczona.';
|
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['destination_txt'] = 'Element docelowy'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['domain_error_unique'] = 'Jest już wpis Catchall dla tej domeny.'; |
| | | $wb['no_domain_perm'] = 'Nie masz dostępu do tej domeny.'; |
| | | $wb['domain_error_regex'] = 'Nieprawidłowa nazwa domeny. Domena zawiera niedozolone znaki.'; |
| | | $wb['limit_mailcatchall_txt'] = 'Maksymalna ilość kont e-mial catchall dla Twojej domeny została przekroczona.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'E-mail Catchall';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["source_txt"] = 'źródło';
|
| | | $wb["destination_txt"] = 'Element docelowy adresu E-mail';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["domain_txt"] = 'Domena';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy Catchall';
|
| | | $wb['list_head_txt'] = 'E-mail Catchall'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['source_txt'] = 'źródło'; |
| | | $wb['destination_txt'] = 'Element docelowy adresu E-mail'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy Catchall'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Domena E-mail';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["domain_txt"] = 'Domena';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nową domenę';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb['list_head_txt'] = 'Domena E-mail'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową domenę'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["destination_txt"] = 'Element docelowy E-mail';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_mailforward_txt"] = 'Maksymalna ilość przekierowań e-mail dla Twojego konta została przekroczona.';
|
| | | $wb["duplicate_mailbox_txt"] = 'Istnieje już skrzynka pocztowa o podanym adresie e-mail';
|
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['destination_txt'] = 'Element docelowy E-mail'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_mailforward_txt'] = 'Maksymalna ilość przekierowań e-mail dla Twojego konta została przekroczona.'; |
| | | $wb['duplicate_mailbox_txt'] = 'Istnieje już skrzynka pocztowa o podanym adresie e-mail'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Przekierowanie E-mail';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["source_txt"] = 'źródło';
|
| | | $wb["destination_txt"] = 'Element docelowy';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowe przekierowanie E-mail';
|
| | | $wb['list_head_txt'] = 'Przekierowanie E-mail'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['source_txt'] = 'źródło'; |
| | | $wb['destination_txt'] = 'Element docelowy'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowe przekierowanie E-mail'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["source_server_txt"] = 'Pop3/Imap Serwer';
|
| | | $wb["source_username_txt"] = 'Nazwa uzytkownika';
|
| | | $wb["source_password_txt"] = 'Hasło';
|
| | | $wb["source_delete_txt"] = 'Usuń adresy e-mail po odzyskaniu';
|
| | | $wb["destination_txt"] = 'Element docelowy';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_fetchmail_txt"] = 'Maksymalna ilość wpisów Fetchmail dla Twojego konta została przekroczona.';
|
| | | $wb["source_server_error_isempty"] = 'Serwer jest pusty.';
|
| | | $wb["source_username_error_isempty"] = 'Nazwa użytkownika jest pusta.';
|
| | | $wb["source_password_error_isempty"] = 'Hasło jest puste.';
|
| | | $wb["destination_error_isemail"] = 'Nie wybrano elementu docelowego.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['source_server_txt'] = 'Pop3/Imap Serwer'; |
| | | $wb['source_username_txt'] = 'Nazwa uzytkownika'; |
| | | $wb['source_password_txt'] = 'Hasło'; |
| | | $wb['source_delete_txt'] = 'Usuń adresy e-mail po odzyskaniu'; |
| | | $wb['destination_txt'] = 'Element docelowy'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_fetchmail_txt'] = 'Maksymalna ilość wpisów Fetchmail dla Twojego konta została przekroczona.'; |
| | | $wb['source_server_error_isempty'] = 'Serwer jest pusty.'; |
| | | $wb['source_username_error_isempty'] = 'Nazwa użytkownika jest pusta.'; |
| | | $wb['source_password_error_isempty'] = 'Hasło jest puste.'; |
| | | $wb['destination_error_isemail'] = 'Nie wybrano elementu docelowego.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Pokaż adresy e-mail z zewnętrznych serwerów POP3 / IMAP';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["source_server_txt"] = 'Zewnętrzny Serwer';
|
| | | $wb["source_username_txt"] = 'Nazwa użytkownika';
|
| | | $wb["destination_txt"] = 'Element docelowy';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowe konto';
|
| | | $wb['list_head_txt'] = 'Pokaż adresy e-mail z zewnętrznych serwerów POP3 / IMAP'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['source_server_txt'] = 'Zewnętrzny Serwer'; |
| | | $wb['source_username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['destination_txt'] = 'Element docelowy'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowe konto'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["spam_rewrite_score_int_txt"] = 'Popraw wynik';
|
| | | $wb["spam_redirect_score_int_txt"] = 'Przekieruj wynik';
|
| | | $wb["spam_delete_score_int_txt"] = 'Usuń wynik';
|
| | | $wb["spam_rewrite_subject_txt"] = 'Popraw temat';
|
| | | $wb["spam_redirect_maildir_txt"] = 'Przekieruj skrzynkę pocztową';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["spam_rewrite_txt"] = 'Popraw temat wiadomości e-mail z tym wynikiem.';
|
| | | $wb["spam_redirect_txt"] = 'Przekieruj wiadomość e-mail z tym wynikiem do wybranej skrzynki pocztowej.';
|
| | | $wb["spam_delete_txt"] = 'Usuń wiadomość e-mail z tym wynikiem.';
|
| | | $wb["disable_txt"] = 'Podpowiedź: Aby wyłączyć opcje filtru, ustaw wynik na 0.00.';
|
| | | $wb["email_error_isemail"] = 'Adres e-mail jest niepoprawny.';
|
| | | $wb["email_error_unique"] = 'Istnieje już wpis z filtrem spamu dla tego adresu e-mail.';
|
| | | $wb["spam_redirect_maildir_purge_txt"] = 'Wyczyść później Maildir';
|
| | | $wb["days_txt"] = 'Dni.';
|
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['spam_rewrite_score_int_txt'] = 'Popraw wynik'; |
| | | $wb['spam_redirect_score_int_txt'] = 'Przekieruj wynik'; |
| | | $wb['spam_delete_score_int_txt'] = 'Usuń wynik'; |
| | | $wb['spam_rewrite_subject_txt'] = 'Popraw temat'; |
| | | $wb['spam_redirect_maildir_txt'] = 'Przekieruj skrzynkę pocztową'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['spam_rewrite_txt'] = 'Popraw temat wiadomości e-mail z tym wynikiem.'; |
| | | $wb['spam_redirect_txt'] = 'Przekieruj wiadomość e-mail z tym wynikiem do wybranej skrzynki pocztowej.'; |
| | | $wb['spam_delete_txt'] = 'Usuń wiadomość e-mail z tym wynikiem.'; |
| | | $wb['disable_txt'] = 'Podpowiedź: Aby wyłączyć opcje filtru, ustaw wynik na 0.00.'; |
| | | $wb['email_error_isemail'] = 'Adres e-mail jest niepoprawny.'; |
| | | $wb['email_error_unique'] = 'Istnieje już wpis z filtrem spamu dla tego adresu e-mail.'; |
| | | $wb['spam_redirect_maildir_purge_txt'] = 'Wyczyść później Maildir'; |
| | | $wb['days_txt'] = 'Dni.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Filtr spamu';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["server_name_txt"] = 'nazwa_serwera';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy wpis z filtrem spamu';
|
| | | $wb['list_head_txt'] = 'Filtr spamu'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['server_name_txt'] = 'nazwa_serwera'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy wpis z filtrem spamu'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["domain_txt"] = 'Domena';
|
| | | $wb["destination_txt"] = 'Element docelowy';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["mx_txt"] = 'Brak MX';
|
| | | $wb["sort_order_txt"] = 'Sortuj według';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_mailrouting_txt"] = 'Maksymalna ilość ścieżek dla Twojego konta została przekroczona.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['destination_txt'] = 'Element docelowy'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['mx_txt'] = 'Brak MX'; |
| | | $wb['sort_order_txt'] = 'Sortuj według'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_mailrouting_txt'] = 'Maksymalna ilość ścieżek dla Twojego konta została przekroczona.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Zaawansowane ścieżki E-mail';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["domain_txt"] = 'Domena';
|
| | | $wb["transport_txt"] = 'Przenieś';
|
| | | $wb["sort_order_txt"] = 'Sortuj według';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowe przeniesienie';
|
| | | $wb['list_head_txt'] = 'Zaawansowane ścieżki E-mail'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['transport_txt'] = 'Przenieś'; |
| | | $wb['sort_order_txt'] = 'Sortuj według'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowe przeniesienie'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["custom_mailfilter_txt"] = 'Standardowy filtr e-mail';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["cryptpwd_txt"] = 'Hasło';
|
| | | $wb["password_strength_txt"] = 'Siła hasła';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["email_error_isemail"] = 'Adres e-mail jest niepoprawny.';
|
| | | $wb["email_error_unique"] = 'Duplikat adresu e-mail.';
|
| | | $wb["autoresponder_text_txt"] = 'Tekst';
|
| | | $wb["autoresponder_txt"] = 'Autoresponder';
|
| | | $wb["no_domain_perm"] = 'Nie masz dostępu do tej domeny.';
|
| | | $wb["error_no_pwd"] = 'Hasło jest puste.';
|
| | | $wb["quota_error_isint"] = 'Wielkość skrzynki pocztowej musi być liczbą.';
|
| | | $wb["quota_txt"] = 'Limit';
|
| | | $wb["server_id_txt"] = 'Serwer_id';
|
| | | $wb["password_txt"] = 'Hasło';
|
| | | $wb["maildir_txt"] = 'Maildir';
|
| | | $wb["postfix_txt"] = 'Możliwe otrzymywanie';
|
| | | $wb["access_txt"] = 'Możliwy dostęp';
|
| | | $wb["policy_txt"] = 'Filtr spamu';
|
| | | $wb["no_policy"] = '- nie dostępny -';
|
| | | $wb["limit_mailbox_txt"] = 'Maksymalna ilość skrzynek pocztowych dla Twojego konta została przekroczona.';
|
| | | $wb["limit_mailquota_txt"] = 'Maxymalna pojemność skrzynki pocztowej została przekroczona. Maksymalne dostępne miejsce w MB to: ';
|
| | | $wb["welcome_mail_fromname_txt"] = 'ISPConfig3';
|
| | | $wb["welcome_mail_fromemail_txt"] = "webmaster@localhost.tld";
|
| | | $wb["welcome_mail_subject"] = 'Witaj w swoim nowym koncie pocztowym.';
|
| | | $wb["welcome_mail_message"] = "Witaj w swoim nowym koncie pocztowym. Admin.";
|
| | | $wb["disableimap_txt"] = 'Wyłącz IMAP';
|
| | | $wb["disablepop3_txt"] = 'Wyłącz POP3';
|
| | | $wb["duplicate_alias_or_forward_txt"] = 'Istnieje już alias lub przekierowanie dla tego adresu e-mail.';
|
| | | $wb['custom_mailfilter_txt'] = 'Standardowy filtr e-mail'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['cryptpwd_txt'] = 'Hasło'; |
| | | $wb['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['email_error_isemail'] = 'Adres e-mail jest niepoprawny.'; |
| | | $wb['email_error_unique'] = 'Duplikat adresu e-mail.'; |
| | | $wb['autoresponder_text_txt'] = 'Tekst'; |
| | | $wb['autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['no_domain_perm'] = 'Nie masz dostępu do tej domeny.'; |
| | | $wb['error_no_pwd'] = 'Hasło jest puste.'; |
| | | $wb['quota_error_isint'] = 'Wielkość skrzynki pocztowej musi być liczbą.'; |
| | | $wb['quota_txt'] = 'Limit'; |
| | | $wb['server_id_txt'] = 'Serwer_id'; |
| | | $wb['password_txt'] = 'Hasło'; |
| | | $wb['maildir_txt'] = 'Maildir'; |
| | | $wb['postfix_txt'] = 'Możliwe otrzymywanie'; |
| | | $wb['access_txt'] = 'Możliwy dostęp'; |
| | | $wb['policy_txt'] = 'Filtr spamu'; |
| | | $wb['no_policy'] = '- nie dostępny -'; |
| | | $wb['limit_mailbox_txt'] = 'Maksymalna ilość skrzynek pocztowych dla Twojego konta została przekroczona.'; |
| | | $wb['limit_mailquota_txt'] = 'Maxymalna pojemność skrzynki pocztowej została przekroczona. Maksymalne dostępne miejsce w MB to: '; |
| | | $wb['welcome_mail_fromname_txt'] = 'ISPConfig3'; |
| | | $wb['welcome_mail_fromemail_txt'] = 'webmaster@localhost.tld'; |
| | | $wb['welcome_mail_subject'] = 'Witaj w swoim nowym koncie pocztowym.'; |
| | | $wb['welcome_mail_message'] = 'Witaj w swoim nowym koncie pocztowym. Admin.'; |
| | | $wb['disableimap_txt'] = 'Wyłącz IMAP'; |
| | | $wb['disablepop3_txt'] = 'Wyłącz POP3'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'Istnieje już alias lub przekierowanie dla tego adresu e-mail.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["rulename_txt"] = 'Nazwa';
|
| | | $wb["action_txt"] = 'Akcja';
|
| | | $wb["target_txt"] = 'Folder';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["rulename_error_empty"] = 'Nazwa jest pusta.';
|
| | | $wb["searchterm_is_empty"] = 'Szukany termin jest pusty.';
|
| | | $wb["source_txt"] = 'Źródło';
|
| | | $wb['rulename_txt'] = 'Nazwa'; |
| | | $wb['action_txt'] = 'Akcja'; |
| | | $wb['target_txt'] = 'Folder'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['rulename_error_empty'] = 'Nazwa jest pusta.'; |
| | | $wb['searchterm_is_empty'] = 'Szukany termin jest pusty.'; |
| | | $wb['source_txt'] = 'Źródło'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["rulename_txt"] = 'Nazwa';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy filtr';
|
| | | $wb["page_txt"] = 'Strona';
|
| | | $wb["page_of_txt"] = 'z';
|
| | | $wb["delete_confirmation"] = 'Do you really want to Delete the mailfilter?';
|
| | | $wb['rulename_txt'] = 'Nazwa'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy filtr'; |
| | | $wb['page_txt'] = 'Strona'; |
| | | $wb['page_of_txt'] = 'z'; |
| | | $wb['delete_confirmation'] = 'Do you really want to Delete the mailfilter?'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Skrzynka pocztowa';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["autoresponder_txt"] = 'Autoresponder';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nową skrzynkę pocztową';
|
| | | $wb['list_head_txt'] = 'Skrzynka pocztowa'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['autoresponder_txt'] = 'Autoresponder'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową skrzynkę pocztową'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Ruch wiadomości';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["this_month_txt"] = 'Ten miesiąc';
|
| | | $wb["last_month_txt"] = 'Ostatni miesiąc';
|
| | | $wb["this_year_txt"] = 'Ten rok';
|
| | | $wb["last_year_txt"] = 'Ostatni rok';
|
| | | $wb['list_head_txt'] = 'Ruch wiadomości'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['this_month_txt'] = 'Ten miesiąc'; |
| | | $wb['last_month_txt'] = 'Ostatni miesiąc'; |
| | | $wb['this_year_txt'] = 'Ten rok'; |
| | | $wb['last_year_txt'] = 'Ostatni rok'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["source_txt"] = 'Adres białej listy';
|
| | | $wb["recipient_txt"] = 'Odbiorca';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["source_error_notempty"] = 'Adres jest pusty.';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["limit_mailfilter_txt"] = 'Maksymalna ilość filtrów e-mail dla Twojego konta zosała przekroczona.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['source_txt'] = 'Adres białej listy'; |
| | | $wb['recipient_txt'] = 'Odbiorca'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['source_error_notempty'] = 'Adres jest pusty.'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['limit_mailfilter_txt'] = 'Maksymalna ilość filtrów e-mail dla Twojego konta zosała przekroczona.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'E-mail białej listy';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["source_txt"] = 'Adres dodany do białej listy';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["recipient_txt"] = 'odbiorca';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy wpis białej listy';
|
| | | $wb["access_txt"] = 'dostęp';
|
| | | $wb['list_head_txt'] = 'E-mail białej listy'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['source_txt'] = 'Adres dodany do białej listy'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['recipient_txt'] = 'odbiorca'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy wpis białej listy'; |
| | | $wb['access_txt'] = 'dostęp'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["wb_txt"] = 'wb';
|
| | | $wb["rid_txt"] = 'Użytkownik';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["priority_txt"] = 'Priorytet';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_spamfilter_wblist_txt"] = 'Maksymalna ilość wpisów do białej i czarnej listy dla Twojego konta została przekroczona.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['wb_txt'] = 'wb'; |
| | | $wb['rid_txt'] = 'Użytkownik'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['priority_txt'] = 'Priorytet'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Maksymalna ilość wpisów do białej i czarnej listy dla Twojego konta została przekroczona.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Filtr spamu czarnej listy';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["priority_txt"] = 'Priorytet';
|
| | | $wb["rid_txt"] = 'Użytkownik';
|
| | | $wb["email_txt"] = 'E-mail dodany do czarnej listy';
|
| | | $wb["add_new_record_txt"] = 'Dodaj wpis czarnej listy';
|
| | | $wb['list_head_txt'] = 'Filtr spamu czarnej listy'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['priority_txt'] = 'Priorytet'; |
| | | $wb['rid_txt'] = 'Użytkownik'; |
| | | $wb['email_txt'] = 'E-mail dodany do czarnej listy'; |
| | | $wb['add_new_record_txt'] = 'Dodaj wpis czarnej listy'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["getmail_config_dir_txt"] = 'Ścieżka konfiguracyjna Getmail';
|
| | | $wb["ip_address_txt"] = 'Adres IP';
|
| | | $wb["netmask_txt"] = 'Maska';
|
| | | $wb["gateway_txt"] = 'Bramka';
|
| | | $wb["hostname_txt"] = 'Nazwa serwera';
|
| | | $wb["nameservers_txt"] = 'Nazwy serwerów';
|
| | | $wb["module_txt"] = 'Moduł serwera';
|
| | | $wb["maildir_path_txt"] = 'Ścieżka Maildir';
|
| | | $wb["homedir_path_txt"] = 'Ścieżka Homedir';
|
| | | $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"] = 'Relayhost';
|
| | | $wb["relayhost_user_txt"] = 'Użytkownik Relayhost';
|
| | | $wb["relayhost_password_txt"] = 'Hasło Relayhost';
|
| | | $wb["mailbox_size_limit_txt"] = 'Limit wielkości skrzynki pocztowej';
|
| | | $wb["message_size_limit_txt"] = 'Limit wielkości wiadomości';
|
| | | $wb['getmail_config_dir_txt'] = 'Ścieżka konfiguracyjna Getmail'; |
| | | $wb['ip_address_txt'] = 'Adres IP'; |
| | | $wb['netmask_txt'] = 'Maska'; |
| | | $wb['gateway_txt'] = 'Bramka'; |
| | | $wb['hostname_txt'] = 'Nazwa serwera'; |
| | | $wb['nameservers_txt'] = 'Nazwy serwerów'; |
| | | $wb['module_txt'] = 'Moduł serwera'; |
| | | $wb['maildir_path_txt'] = 'Ścieżka Maildir'; |
| | | $wb['homedir_path_txt'] = 'Ścieżka Homedir'; |
| | | $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'] = 'Relayhost'; |
| | | $wb['relayhost_user_txt'] = 'Użytkownik Relayhost'; |
| | | $wb['relayhost_password_txt'] = 'Hasło Relayhost'; |
| | | $wb['mailbox_size_limit_txt'] = 'Limit wielkości skrzynki pocztowej'; |
| | | $wb['message_size_limit_txt'] = 'Limit wielkości wiadomości'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Konfiguracja serwer';
|
| | | $wb["server_name_txt"] = 'Serwer';
|
| | | $wb["server_id_txt"] = 'id_serwera';
|
| | | $wb['list_head_txt'] = 'Konfiguracja serwer'; |
| | | $wb['server_name_txt'] = 'Serwer'; |
| | | $wb['server_id_txt'] = 'id_serwera'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["policy_name_txt"] = 'Nazwa polityki';
|
| | | $wb["virus_lover_txt"] = 'Przyjmuj wirusy';
|
| | | $wb["spam_lover_txt"] = 'Przyjmuj SPAM';
|
| | | $wb["banned_files_lover_txt"] = 'Przyjmuj zablokowane pliki';
|
| | | $wb["bad_header_lover_txt"] = 'Przyjmuj złe nagłowki';
|
| | | $wb["bypass_virus_checks_txt"] = 'Omijaj zaznaczone jako wirus';
|
| | | $wb["bypass_banned_checks_txt"] = 'Omijaj zaznaczone jako zabrobione';
|
| | | $wb["bypass_header_checks_txt"] = 'Omijaj zaznaczone jako złe nagłowki';
|
| | | $wb["virus_quarantine_to_txt"] = 'Przekieruj wirusy na adres e-mail';
|
| | | $wb["spam_quarantine_to_txt"] = 'Przekieruj spam na adres e-mail';
|
| | | $wb["banned_quarantine_to_txt"] = 'Przekieruj zabronione na adres e-mail';
|
| | | $wb["bad_header_quarantine_to_txt"] = 'Przekieruj złe nagłowki na adres e-mail';
|
| | | $wb["clean_quarantine_to_txt"] = 'Przekieruj czyste na adres e-mail';
|
| | | $wb["other_quarantine_to_txt"] = 'Przekieruj inne na adres e-mail';
|
| | | $wb["spam_tag_level_txt"] = 'Poziom oznaczania spamu';
|
| | | $wb["spam_tag2_level_txt"] = 'Poziom oznaczania spamu 2';
|
| | | $wb["spam_kill_level_txt"] = 'Poziom usunięcia spamu';
|
| | | $wb["spam_dsn_cutoff_level_txt"] = 'Poziom spam przy którym nastąpi odcięcie dns';
|
| | | $wb["spam_quarantine_cutoff_level_txt"] = 'Poziom spam przy którym nastąpi odcięcie kwarantanny';
|
| | | $wb["spam_modifies_subj_txt"] = 'Modyfikacja tematu';
|
| | | $wb["spam_subject_tag_txt"] = 'Przedrostek tematu ze spamem';
|
| | | $wb["spam_subject_tag2_txt"] = 'Przedrostek tematu ze spamem 2';
|
| | | $wb["addr_extension_virus_txt"] = 'Przedrostek z informacją o wirusie';
|
| | | $wb["addr_extension_spam_txt"] = 'Przedrostek z informacją o spamie';
|
| | | $wb["addr_extension_banned_txt"] = 'Przedrostek z informacją o zablokowanej treści';
|
| | | $wb["addr_extension_bad_header_txt"] = 'Przedrostek z informacją o złych nagłówkach';
|
| | | $wb["warnvirusrecip_txt"] = 'Ostrzeż odbiorcę o wirusie';
|
| | | $wb["warnbannedrecip_txt"] = 'Ostrzeż odbiorcę o zablokowanej trści';
|
| | | $wb["warnbadhrecip_txt"] = 'Ostrzeż odbiorcę o złych nagłówkach';
|
| | | $wb["newvirus_admin_txt"] = 'Admin obsługi nowych wirusów';
|
| | | $wb["virus_admin_txt"] = 'Admin obsługi wirusów';
|
| | | $wb["banned_admin_txt"] = 'Admin obłsugi zablokowanych treści';
|
| | | $wb["bad_header_admin_txt"] = 'Admin obsługi złych nagłowków';
|
| | | $wb["spam_admin_txt"] = 'Admin obsługi spamu';
|
| | | $wb["message_size_limit_txt"] = 'Limit wielkości wiadomości';
|
| | | $wb["banned_rulenames_txt"] = 'Zabrobione nazwy zasad';
|
| | | $wb['policy_name_txt'] = 'Nazwa polityki'; |
| | | $wb['virus_lover_txt'] = 'Przyjmuj wirusy'; |
| | | $wb['spam_lover_txt'] = 'Przyjmuj SPAM'; |
| | | $wb['banned_files_lover_txt'] = 'Przyjmuj zablokowane pliki'; |
| | | $wb['bad_header_lover_txt'] = 'Przyjmuj złe nagłowki'; |
| | | $wb['bypass_virus_checks_txt'] = 'Omijaj zaznaczone jako wirus'; |
| | | $wb['bypass_banned_checks_txt'] = 'Omijaj zaznaczone jako zabrobione'; |
| | | $wb['bypass_header_checks_txt'] = 'Omijaj zaznaczone jako złe nagłowki'; |
| | | $wb['virus_quarantine_to_txt'] = 'Przekieruj wirusy na adres e-mail'; |
| | | $wb['spam_quarantine_to_txt'] = 'Przekieruj spam na adres e-mail'; |
| | | $wb['banned_quarantine_to_txt'] = 'Przekieruj zabronione na adres e-mail'; |
| | | $wb['bad_header_quarantine_to_txt'] = 'Przekieruj złe nagłowki na adres e-mail'; |
| | | $wb['clean_quarantine_to_txt'] = 'Przekieruj czyste na adres e-mail'; |
| | | $wb['other_quarantine_to_txt'] = 'Przekieruj inne na adres e-mail'; |
| | | $wb['spam_tag_level_txt'] = 'Poziom oznaczania spamu'; |
| | | $wb['spam_tag2_level_txt'] = 'Poziom oznaczania spamu 2'; |
| | | $wb['spam_kill_level_txt'] = 'Poziom usunięcia spamu'; |
| | | $wb['spam_dsn_cutoff_level_txt'] = 'Poziom spam przy którym nastąpi odcięcie dns'; |
| | | $wb['spam_quarantine_cutoff_level_txt'] = 'Poziom spam przy którym nastąpi odcięcie kwarantanny'; |
| | | $wb['spam_modifies_subj_txt'] = 'Modyfikacja tematu'; |
| | | $wb['spam_subject_tag_txt'] = 'Przedrostek tematu ze spamem'; |
| | | $wb['spam_subject_tag2_txt'] = 'Przedrostek tematu ze spamem 2'; |
| | | $wb['addr_extension_virus_txt'] = 'Przedrostek z informacją o wirusie'; |
| | | $wb['addr_extension_spam_txt'] = 'Przedrostek z informacją o spamie'; |
| | | $wb['addr_extension_banned_txt'] = 'Przedrostek z informacją o zablokowanej treści'; |
| | | $wb['addr_extension_bad_header_txt'] = 'Przedrostek z informacją o złych nagłówkach'; |
| | | $wb['warnvirusrecip_txt'] = 'Ostrzeż odbiorcę o wirusie'; |
| | | $wb['warnbannedrecip_txt'] = 'Ostrzeż odbiorcę o zablokowanej trści'; |
| | | $wb['warnbadhrecip_txt'] = 'Ostrzeż odbiorcę o złych nagłówkach'; |
| | | $wb['newvirus_admin_txt'] = 'Admin obsługi nowych wirusów'; |
| | | $wb['virus_admin_txt'] = 'Admin obsługi wirusów'; |
| | | $wb['banned_admin_txt'] = 'Admin obłsugi zablokowanych treści'; |
| | | $wb['bad_header_admin_txt'] = 'Admin obsługi złych nagłowków'; |
| | | $wb['spam_admin_txt'] = 'Admin obsługi spamu'; |
| | | $wb['message_size_limit_txt'] = 'Limit wielkości wiadomości'; |
| | | $wb['banned_rulenames_txt'] = 'Zabrobione nazwy zasad'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Polityka filtrów spamu';
|
| | | $wb["policy_name_txt"] = 'Nazwa';
|
| | | $wb["virus_lover_txt"] = 'Przyjmuj wirusy';
|
| | | $wb["spam_lover_txt"] = 'Przyjmuj spam';
|
| | | $wb["banned_files_lover_txt"] = 'Przyjmuj zablokowane pliki';
|
| | | $wb["bad_header_lover_txt"] = 'Przyjmuj złe nagłowki';
|
| | | $wb["add_new_record_txt"] = 'Dodaj wpis plityki';
|
| | | $wb['list_head_txt'] = 'Polityka filtrów spamu'; |
| | | $wb['policy_name_txt'] = 'Nazwa'; |
| | | $wb['virus_lover_txt'] = 'Przyjmuj wirusy'; |
| | | $wb['spam_lover_txt'] = 'Przyjmuj spam'; |
| | | $wb['banned_files_lover_txt'] = 'Przyjmuj zablokowane pliki'; |
| | | $wb['bad_header_lover_txt'] = 'Przyjmuj złe nagłowki'; |
| | | $wb['add_new_record_txt'] = 'Dodaj wpis plityki'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["priority_txt"] = 'Priorytet';
|
| | | $wb["policy_id_txt"] = 'Polityka';
|
| | | $wb["email_txt"] = 'Email (Wzór)';
|
| | | $wb["fullname_txt"] = 'Nazwa';
|
| | | $wb["local_txt"] = 'Lokalne';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['priority_txt'] = 'Priorytet'; |
| | | $wb['policy_id_txt'] = 'Polityka'; |
| | | $wb['email_txt'] = 'Email (Wzór)'; |
| | | $wb['fullname_txt'] = 'Nazwa'; |
| | | $wb['local_txt'] = 'Lokalne'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Filtr spamu użytkowników';
|
| | | $wb["local_txt"] = 'Lokalny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["priority_txt"] = 'Priorytet';
|
| | | $wb["policy_id_txt"] = 'Polityka';
|
| | | $wb["fullname_txt"] = 'Nazwa';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["add_new_record_txt"] = 'Dodaj filtr spamu użytkownika';
|
| | | $wb['list_head_txt'] = 'Filtr spamu użytkowników'; |
| | | $wb['local_txt'] = 'Lokalny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['priority_txt'] = 'Priorytet'; |
| | | $wb['policy_id_txt'] = 'Polityka'; |
| | | $wb['fullname_txt'] = 'Nazwa'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['add_new_record_txt'] = 'Dodaj filtr spamu użytkownika'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["wb_txt"] = 'wb';
|
| | | $wb["rid_txt"] = 'Użytkownik';
|
| | | $wb["email_txt"] = 'E-mail';
|
| | | $wb["priority_txt"] = 'Priorytet';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_spamfilter_wblist_txt"] = 'Maksymalna liczba wpisów białej lub czarnej listy została przekroczona.';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['wb_txt'] = 'wb'; |
| | | $wb['rid_txt'] = 'Użytkownik'; |
| | | $wb['email_txt'] = 'E-mail'; |
| | | $wb['priority_txt'] = 'Priorytet'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_spamfilter_wblist_txt'] = 'Maksymalna liczba wpisów białej lub czarnej listy została przekroczona.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Filtrs spamu białej listy';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["priority_txt"] = 'Priorytet';
|
| | | $wb["rid_txt"] = 'Użytkownik';
|
| | | $wb["email_txt"] = 'Adres e-mail dodany do białej listy';
|
| | | $wb["add_new_record_txt"] = 'Dodaj wpis do białej listy';
|
| | | $wb['list_head_txt'] = 'Filtrs spamu białej listy'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['priority_txt'] = 'Priorytet'; |
| | | $wb['rid_txt'] = 'Użytkownik'; |
| | | $wb['email_txt'] = 'Adres e-mail dodany do białej listy'; |
| | | $wb['add_new_record_txt'] = 'Dodaj wpis do białej listy'; |
| | | ?>
|
| | | |
| | |
| | | $wb['welcome_mail_fromname_txt'] = 'ISPConfig3'; |
| | | $wb['welcome_mail_fromemail_txt'] = 'webmaster@localhost.tld'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'There is already an alias or forwrd with this email address.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | |
| | | $wb['welcome_mail_fromname_txt'] = 'ISPConfig3'; |
| | | $wb['welcome_mail_fromemail_txt'] = 'webmaster@localhost.tld'; |
| | | $wb['duplicate_alias_or_forward_txt'] = 'There is already an alias or forwrd with this email address.'; |
| | | $wb['quota_error_value'] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1'; |
| | | ?> |
| | |
| | | if($policy_id > 0) { |
| | | if($tmp_user["id"] > 0) { |
| | | // There is already a record that we will update |
| | | $app->db->datalogUpdate('spamfilter_users', "policy_id = $ploicy_id", 'id', $tmp_user["id"]); |
| | | $app->db->datalogUpdate('spamfilter_users', "policy_id = $policy_id", 'id', $tmp_user["id"]); |
| | | } else { |
| | | $tmp_domain = $app->db->queryOneRecord("SELECT sys_groupid FROM mail_domain WHERE domain_id = ".$this->id); |
| | | // We create a new record |
| | |
| | | $tmp = $app->db->queryOneRecord("SELECT sum(quota) as mailquota FROM mail_user WHERE mailuser_id != ".intval($this->id)." AND sys_groupid = $client_group_id"); |
| | | $mailquota = $tmp["mailquota"] / 1024 / 1024; |
| | | $new_mailbox_quota = intval($this->dataRecord["quota"]); |
| | | if($mailquota + $new_mailbox_quota > $client["limit_mailquota"]) { |
| | | if(($mailquota + $new_mailbox_quota > $client["limit_mailquota"]) || ($new_mailbox_quota == 0 && $client["limit_mailquota"] != -1)) { |
| | | $max_free_quota = $client["limit_mailquota"] - $mailquota; |
| | | $app->tform->errorMessage .= $app->tform->lng("limit_mailquota_txt").": ".$max_free_quota."<br>"; |
| | | // Set the quota field to the max free space |
| | |
| | | } else { |
| | | // We create a new record |
| | | $insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `priority`, `policy_id`, `email`, `fullname`, `local`) |
| | | VALUES (".$_SESSION["s"]["user"]["userid"].", ".$domain["sys_groupid"].", 'riud', 'riud', '', ".$domain["server_id"].", 1, ".$policy_id.", '".mysql_real_escape_string($this->dataRecord["email"])."', '".mysql_real_escape_string($this->dataRecord["email"])."', 'Y')"; |
| | | VALUES (".$_SESSION["s"]["user"]["userid"].", ".$domain["sys_groupid"].", 'riud', 'riud', '', ".$domain["server_id"].", 10, ".$policy_id.", '".mysql_real_escape_string($this->dataRecord["email"])."', '".mysql_real_escape_string($this->dataRecord["email"])."', 'Y')"; |
| | | $app->db->datalogInsert('spamfilter_users', $insert_data, 'id'); |
| | | } |
| | | } // endif spamfilter policy |
| | |
| | | } else { |
| | | // We create a new record |
| | | $insert_data = "(`sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `server_id`, `priority`, `policy_id`, `email`, `fullname`, `local`) |
| | | VALUES (".$_SESSION["s"]["user"]["userid"].", ".$domain["sys_groupid"].", 'riud', 'riud', '', ".$domain["server_id"].", 1, ".$policy_id.", '".mysql_real_escape_string($this->dataRecord["email"])."', '".mysql_real_escape_string($this->dataRecord["email"])."', 'Y')"; |
| | | VALUES (".$_SESSION["s"]["user"]["userid"].", ".$domain["sys_groupid"].", 'riud', 'riud', '', ".$domain["server_id"].", 10, ".$policy_id.", '".mysql_real_escape_string($this->dataRecord["email"])."', '".mysql_real_escape_string($this->dataRecord["email"])."', 'Y')"; |
| | | $app->db->datalogInsert('spamfilter_users', $insert_data, 'id'); |
| | | } |
| | | }else { |
| | |
| | | function onAfterInsert() { |
| | | global $app, $conf; |
| | | |
| | | /* |
| | | $mailuser = $app->db->queryOneRecord("SELECT sys_groupid, custom_mailfilter FROM mail_user WHERE mailuser_id = ".$this->dataRecord["mailuser_id"]); |
| | | $rule_content = $mailuser['custom_mailfilter']."\n".$app->db->quote($this->getRule()); |
| | | $rule_content = $app->db->quote($rule_content); |
| | |
| | | |
| | | // set permissions |
| | | $app->db->query("UPDATE mail_user_filter SET sys_groupid = ".$mailuser['sys_groupid']." WHERE filter_id = ".$this->id); |
| | | */ |
| | | $this->onAfterUpdate(); |
| | | |
| | | $app->db->query("UPDATE mail_user_filter SET sys_groupid = ".$mailuser['sys_groupid']." WHERE filter_id = ".$this->id); |
| | | } |
| | | |
| | | function onAfterUpdate() { |
| | |
| | | } elseif ($this->dataRecord["op"] == 'is') { |
| | | $content .= $searchterm."$/:h)\n"; |
| | | } elseif ($this->dataRecord["op"] == 'begins') { |
| | | $content .= $searchterm."/:h)\n"; |
| | | $content .= " ".$searchterm."/:h)\n"; |
| | | } elseif ($this->dataRecord["op"] == 'ends') { |
| | | $content .= ".*".$searchterm."$/:h)\n"; |
| | | } |
| | |
| | | </div>
|
| | | <div class="ctrlHolder">
|
| | | <label for="destination">{tmpl_var name='destination_txt'}</label>
|
| | | <input name="destination" id="destination" value="{tmpl_var name='destination'}" size="30" maxlength="255" type="text" class="textInput" />
|
| | | <textarea rows="10" cols="40" name="destination" id="destination" type="text" class="textInput">{tmpl_var name='destination'}</textarea> |
| | | </div>
|
| | | <div class="ctrlHolder">
|
| | | <p class="label">{tmpl_var name='active_txt'}</p>
|
| | |
| | | $wb['monitor_title_rkhunterlog_txt'] = 'Log do RKHunter'; |
| | | $wb['monitor_updates_nosupport_txt'] = 'Sua distribuição não suporta este tipo de monitoramento'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Ação'; |
| | | $wb['status_txt'] = 'Status'; |
| | | ?> |
| | | |
| | |
| | | $wb['loglevel_txt'] = 'Nível do Log'; |
| | | $wb['message_txt'] = 'Mensagem'; |
| | | ?> |
| | | |
| | |
| | | $wb['monitor_title_rkhunterlog_txt'] = 'RKHunter-Log'; |
| | | $wb['monitor_updates_nosupport_txt'] = 'Your distribution is not supported for this monitoring'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Művelet'; |
| | | $wb['status_txt'] = 'Állapot'; |
| | | ?> |
| | | |
| | |
| | | $wb['loglevel_txt'] = 'Naplózási szint'; |
| | | $wb['message_txt'] = 'Üzenet'; |
| | | ?> |
| | | |
| | |
| | | $wb['monitor_title_rkhunterlog_txt'] = 'RKHunter-Log'; |
| | | $wb['monitor_updates_nosupport_txt'] = 'Uw distributie ondersteunt deze controle-software niet'; |
| | | ?> |
| | | |
| | |
| | | $wb['action_txt'] = 'Actie'; |
| | | $wb['status_txt'] = 'Status'; |
| | | ?> |
| | | |
| | |
| | | $wb['loglevel_txt'] = 'Loglevel'; |
| | | $wb['message_txt'] = 'Bericht'; |
| | | ?> |
| | | |
| | |
| | | <?php
|
| | | $wb["Server online since"] = "Serwer online do tej pory";
|
| | | $wb["Users online"] = "Użytkowników Online";
|
| | | $wb["System load 1 minute"] = "Obciążenie systemu przez ostatnią minute";
|
| | | $wb["System load 5 minutes"] = "Obciążenie systemu przez ostatnie 5 minut";
|
| | | $wb["System load 15 minutes"] = "Obciążenie systemu przez ostatnie 15 minut";
|
| | | $wb['Server online since'] = 'Serwer online do tej pory'; |
| | | $wb['Users online'] = 'Użytkowników Online'; |
| | | $wb['System load 1 minute'] = 'Obciążenie systemu przez ostatnią minute'; |
| | | $wb['System load 5 minutes'] = 'Obciążenie systemu przez ostatnie 5 minut'; |
| | | $wb['System load 15 minutes'] = 'Obciążenie systemu przez ostatnie 15 minut'; |
| | | $wb['Server Load'] = 'Serwer włączony';
|
| | | $wb['Disk usage'] = 'Użycie dysku';
|
| | | $wb['Memory usage'] = 'Użycie pamięci';
|
| | |
| | | $wb['Logfiles'] = 'Pliki logów';
|
| | | $wb['Status of services'] = 'Stan serwisów';
|
| | | $wb['No Refresh'] = 'Nie odświeżaj';
|
| | | $wb["minutes"] = "minuty";
|
| | | $wb["Show Overview"] = "Pokaż wszystko";
|
| | | $wb["System State (All Servers)"] = "Status systemu (Wszystkie serwery)";
|
| | | $wb['minutes'] = 'minuty'; |
| | | $wb['Show Overview'] = 'Pokaż wszystko'; |
| | | $wb['System State (All Servers)'] = 'Status systemu (Wszystkie serwery)'; |
| | | $wb['Hardware-Information'] = 'Informacje o sprzęcie';
|
| | | $wb['Show CPU info'] = 'Pokaż informacje o procesorze';
|
| | | $wb['Server State'] = 'Status serwera';
|
| | |
| | | $wb['monitor_title_rkhunterlog_txt'] = 'Log RKHunter';
|
| | | $wb['monitor_updates_nosupport_txt'] = 'Twoja dystrybucja systemu nie obsługuje monitorowania';
|
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Kolejka zadań';
|
| | | $wb["tstamp_txt"] = 'Data';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["dbtable_txt"] = 'Tabele DB';
|
| | | $wb["action_txt"] = 'Akcja';
|
| | | $wb["status_txt"] = 'Status';
|
| | | $wb['list_head_txt'] = 'Kolejka zadań'; |
| | | $wb['tstamp_txt'] = 'Data'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['dbtable_txt'] = 'Tabele DB'; |
| | | $wb['action_txt'] = 'Akcja'; |
| | | $wb['status_txt'] = 'Status'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Log ISPConfig';
|
| | | $wb["tstamp_txt"] = 'Data';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["loglevel_txt"] = 'Poziom Logu';
|
| | | $wb["message_txt"] = 'Wiadomość';
|
| | | $wb['list_head_txt'] = 'Log ISPConfig'; |
| | | $wb['tstamp_txt'] = 'Data'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['loglevel_txt'] = 'Poziom Logu'; |
| | | $wb['message_txt'] = 'Wiadomość'; |
| | | ?>
|
| | | |
| | |
| | | if($has_error == true) { |
| | | parent::onError(); |
| | | exit; |
| | | } else { |
| | | return parent::onInsertSave($sql); |
| | | } |
| | | else parent::onInsertSave($sql); |
| | | } |
| | | |
| | | function onAfterInsert() { |
| | |
| | | |
| | | // Get the limits of the client |
| | | $client_group_id = $_SESSION["s"]["user"]["default_group"]; |
| | | $client = $app->db->queryOneRecord("SELECT client.client_id, limit_web_domain, default_webserver FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id"); |
| | | $client = $app->db->queryOneRecord("SELECT client.client_id, limit_web_domain, default_webserver, contact_name FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id"); |
| | | |
| | | // Set the webserver to the default server of the client |
| | | $tmp = $app->db->queryOneRecord("SELECT server_name FROM server WHERE server_id = $client[default_webserver]"); |
| | |
| | | // Fill the client select field |
| | | $sql = "SELECT groupid, name FROM sys_group, client WHERE sys_group.client_id = client.client_id AND client.parent_client_id = ".$client['client_id']; |
| | | $clients = $app->db->queryAllRecords($sql); |
| | | $client_select = ''; |
| | | $client_select = '<option value="'.$client['client_id'].'">'.$client['contact_name'].'</option>'; |
| | | if(is_array($clients)) { |
| | | foreach( $clients as $client) { |
| | | $selected = @($client["groupid"] == $this->dataRecord["sys_groupid"])?'SELECTED':''; |
| | |
| | | $wb['database_charset_change_txt'] = 'Charset на базата данни не може да бъде променен.'; |
| | | $wb['remote_ips_txt'] = 'Remote Access IPs (separate by , and leave blank for <i>any</i>)'; |
| | | $wb['database_remote_error_ips'] = 'At least one of the entered ip addresses is invalid.'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | |
| | | $wb['Websites'] = 'Websites'; |
| | | $wb['Stats'] = 'Estatísticas'; |
| | | ?> |
| | | |
| | |
| | | $wb['command_error_format'] = 'Formato de comando inválido. Somente endereços url http/https são permitidos.'; |
| | | $wb['unknown_fieldtype_error'] = 'Um tipo desconhecido de campo foi usado.'; |
| | | ?> |
| | | |
| | |
| | | $wb['command_txt'] = 'Comando'; |
| | | $wb['add_new_cron_txt'] = 'Adcionar uma nova tarefa no cron'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_charset_change_txt'] = 'O charset do banco não pode ser mudado'; |
| | | $wb['remote_ips_txt'] = 'Endereços IP Remotos (separados por , deixe em branco para <i>quaisquer ips</i>)'; |
| | | $wb['database_remote_error_ips'] = 'Pelo menos um dos endereços ip informados não é válido.'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_name_txt'] = 'Nome do banco'; |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo banco'; |
| | | ?> |
| | | |
| | |
| | | $wb['directory_error_notinweb'] = 'O diretório não esta dentro do diretório web principal.'; |
| | | $wb['parent_domain_id_error_empty'] = 'Nenhum website selecionado.'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Usuário'; |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo Usuário FTP'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_shell_user_txt'] = 'O número máximo de usuários shell para sua conta foi atingido.'; |
| | | $wb['parent_domain_id_error_empty'] = 'Nenhum website selecionado.'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Usuário'; |
| | | $wb['add_new_record_txt'] = 'Adcionar novo usuário de Shell'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_unique'] = 'O domínio deve ser único.'; |
| | | $wb['domain_error_regex'] = 'Nome de domínio inválido.'; |
| | | ?> |
| | | |
| | |
| | | $wb['client_group_id_txt'] = 'Cliente'; |
| | | $wb['stats_password_txt'] = 'Senha do diretório de estatísticas'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Domínio'; |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo site'; |
| | | ?> |
| | | |
| | |
| | | $wb['this_year_txt'] = 'Este ano'; |
| | | $wb['last_year_txt'] = 'Último ano'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_regex'] = 'Nome de domínio inválido.'; |
| | | $wb['host_txt'] = 'Host'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Sub-domínio'; |
| | | $wb['add_new_record_txt'] = 'Adcionar um novo sub-domínio'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_name_change_txt'] = 'Der Datenbankname kann nicht geändert werden.'; |
| | | $wb['database_charset_change_txt'] = 'Der Zeichensatz der Datenbank kann nicht geändert werden.'; |
| | | $wb['password_strength_txt'] = 'Passwortkomplexität'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | |
| | | $wb['database_charset_change_txt'] = 'La tabla de caracteres de la base de datos no se puede cambiar'; |
| | | $wb['remote_ips_txt'] = 'Remote Access IPs (separate by , and leave blank for <i>any</i>)'; |
| | | $wb['database_remote_error_ips'] = 'At least one of the entered ip addresses is invalid.'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | |
| | | $wb['database_charset_change_txt'] = 'Tietokannan merkistöä ei voi vaihtaa'; |
| | | $wb['remote_ips_txt'] = 'Remote Access IPs (separate by , and leave blank for <i>any</i>)'; |
| | | $wb['database_remote_error_ips'] = 'At least one of the entered ip addresses is invalid.'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | |
| | | $wb['database_charset_change_txt'] = 'The database charset can not be changed'; |
| | | $wb['remote_ips_txt'] = 'Remote Access IPs (separate by , and leave blank for <i>any</i>)'; |
| | | $wb['database_remote_error_ips'] = 'At least one of the entered ip addresses is invalid.'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | |
| | | $wb['Websites'] = 'Weboldalak'; |
| | | $wb['Stats'] = 'Statisztikák'; |
| | | ?> |
| | | |
New file |
| | |
| | | <?php |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb['parent_domain_id_txt'] = 'Parent website'; |
| | | $wb['active_txt'] = 'Active'; |
| | | $wb['client_txt'] = 'Client'; |
| | | $wb['run_min_txt'] = 'Minutes'; |
| | | $wb['run_hour_txt'] = 'Hours'; |
| | | $wb['run_mday_txt'] = 'Days of month'; |
| | | $wb['run_month_txt'] = 'Months'; |
| | | $wb['run_wday_txt'] = 'Days of week'; |
| | | $wb['command_txt'] = 'Command to run (commands are executed via sh, urls via wget)'; |
| | | $wb['limit_cron_txt'] = 'The maximum number of allowed cron jobs was reached.'; |
| | | $wb['limit_cron_frequency_txt'] = 'The cron job frequency exceeds the allowed limit.'; |
| | | $wb['run_min_error_format'] = 'Invalid format for minutes.'; |
| | | $wb['run_hour_error_format'] = 'Invalid format for hours.'; |
| | | $wb['run_mday_error_format'] = 'Invalid format for days of month.'; |
| | | $wb['run_month_error_format'] = 'Invalid format for months.'; |
| | | $wb['run_wday_error_format'] = 'Invalid format for days of the week.'; |
| | | $wb['command_error_format'] = 'Invalid command format. Please note that in case of an url call only http/https is allowed.'; |
| | | $wb['unknown_fieldtype_error'] = 'An unknown field type has been used.'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Cron Jobs'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["run_min_txt"] = 'Minute'; |
| | | $wb["run_hour_txt"] = 'Hour'; |
| | | $wb["run_mday_txt"] = 'Day of month'; |
| | | $wb["run_month_txt"] = 'Month'; |
| | | $wb["run_wday_txt"] = 'Day of week'; |
| | | $wb["command_txt"] = 'Command'; |
| | | $wb["add_new_cron_txt"] = 'Add new Cron job'; |
| | | ?> |
| | |
| | | $wb['database_name_change_txt'] = 'Adatbázis neve nem módosítható.'; |
| | | $wb['database_charset_change_txt'] = 'Adatbázis karakterkódolás nem módosítható.'; |
| | | $wb['password_strength_txt'] = 'Jelszó erőssége'; |
| | | $wb['remote_ips_txt'] = 'Remote Access IPs (separate by , and leave blank for <i>any</i>)'; |
| | | $wb['database_remote_error_ips'] = 'At least one of the entered ip addresses is invalid.'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_name_txt'] = 'Adatbázis neve'; |
| | | $wb['add_new_record_txt'] = 'Új adatbázis'; |
| | | ?> |
| | | |
| | |
| | | $wb['directory_error_empty'] = 'Könyvtár üres.'; |
| | | $wb['quota_files_unity_txt'] = 'Fájlok'; |
| | | $wb['password_strength_txt'] = 'Jelszó erőssége'; |
| | | $wb['directory_error_notinweb'] = 'Directory not inside of web root directory.'; |
| | | $wb['parent_domain_id_error_empty'] = 'No website selected.'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Felhasználónév'; |
| | | $wb['add_new_record_txt'] = 'Új FTP-felhasználó'; |
| | | ?> |
| | | |
| | |
| | | $wb['directory_error_empty'] = 'Könyvtár üres.'; |
| | | $wb['limit_shell_user_txt'] = 'The max number of shell users is reached.'; |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['parent_domain_id_error_empty'] = 'No website selected.'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Felhasználónév'; |
| | | $wb['add_new_record_txt'] = 'Új Shell felhasználó'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_unique'] = 'Domain már foglalt.'; |
| | | $wb['domain_error_regex'] = 'Domain név hibás.'; |
| | | ?> |
| | | |
| | |
| | | $wb['client_group_id_txt'] = 'Kliens'; |
| | | $wb['stats_password_txt'] = 'Statisztika jelszó'; |
| | | ?> |
| | | |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Websites'; |
| | | $wb["domain_id_txt"] = 'ID'; |
| | | $wb["active_txt"] = 'Active'; |
| | | $wb["server_id_txt"] = 'Server'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["add_new_record_txt"] = 'Add new website'; |
| | | ?> |
New file |
| | |
| | | <?php |
| | | $wb["list_head_txt"] = 'Web traffic'; |
| | | $wb["domain_txt"] = 'Domain'; |
| | | $wb["this_month_txt"] = 'This month'; |
| | | $wb["last_month_txt"] = 'Last month'; |
| | | $wb["this_year_txt"] = 'This year'; |
| | | $wb["last_year_txt"] = 'Last year'; |
| | | ?> |
| | |
| | | $wb['domain_error_regex'] = 'Domain név érvénytelen'; |
| | | $wb['host_txt'] = 'Állomás'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'aldomain'; |
| | | $wb['add_new_record_txt'] = 'Új Aldomain'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_charset_change_txt'] = 'The database charset can not be changed'; |
| | | $wb['remote_ips_txt'] = 'Remote Access IPs (separate by , and leave blank for <i>any</i>)'; |
| | | $wb['database_remote_error_ips'] = 'At least one of the entered ip addresses is invalid.'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | |
| | | $wb['Websites'] = 'Websites'; |
| | | $wb['Stats'] = 'Statistieken'; |
| | | ?> |
| | | |
| | |
| | | $wb['command_error_format'] = 'Ongeldige commando indeling. In geval van een URL, alleen http/https wordt ondersteund.'; |
| | | $wb['unknown_fieldtype_error'] = 'Een onbekend veld-type wordt gebruikt.'; |
| | | ?> |
| | | |
| | |
| | | $wb['command_txt'] = 'Commando'; |
| | | $wb['add_new_cron_txt'] = 'Nieuwe Cron job toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_name_error_len'] = 'Databasenaam - {db} - is te lang. De maximale lengte is 64 tekens.'; |
| | | $wb['database_user_error_len'] = 'Database gebruikersnaam - {user} - is te lang. De maximale lengte inclusief prefix is 16 tekens.'; |
| | | ?> |
| | | |
| | |
| | | $wb['database_name_txt'] = 'Databasenaam'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe database toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['directory_error_notinweb'] = 'Directory is niet binnen de website-root directory.'; |
| | | $wb['parent_domain_id_error_empty'] = 'Geen website geselecteerd.'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Gebruikersnaam'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe FTP-gebruiker toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['limit_shell_user_txt'] = 'Het maximum aantal shell gebruikers is bereikt.'; |
| | | $wb['parent_domain_id_error_empty'] = 'Geen website geselecteerd.'; |
| | | ?> |
| | | |
| | |
| | | $wb['username_txt'] = 'Gebruikersnaam'; |
| | | $wb['add_new_record_txt'] = 'Nieuwe Shell gebruiker toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_unique'] = 'Domein moet uniek zijn.';
|
| | | $wb['domain_error_regex'] = 'Domeinnaam is ongeldig.';
|
| | | ?>
|
| | |
|
| | |
| | | $wb['client_group_id_txt'] = 'Klant'; |
| | | $wb['stats_password_txt'] = 'Website statistieken wachtwoord'; |
| | | ?> |
| | | |
| | |
| | | $wb['add_new_record_txt'] = 'Nieuwe website toevoegen'; |
| | | $wb['domain_id_txt'] = 'ID'; |
| | | ?> |
| | | |
| | |
| | | $wb['this_year_txt'] = 'Dit jaar'; |
| | | $wb['last_year_txt'] = 'Vorig jaar'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_error_regex'] = 'Domeinnaam ongeldig.'; |
| | | $wb['host_txt'] = 'Hostnaam'; |
| | | ?> |
| | | |
| | |
| | | $wb['domain_txt'] = 'Subdomein'; |
| | | $wb['add_new_record_txt'] = 'Nieuw subdomein toevoegen'; |
| | | ?> |
| | | |
| | |
| | | $wb['Shell-User'] = 'Użytkownik Shell';
|
| | | $wb['Shell'] = 'Shell';
|
| | | $wb['Websites'] = 'Strony www';
|
| | | $wb["Stats"] = 'Statystyki';
|
| | | $wb['Stats'] = 'Statystyki'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['parent_domain_id_txt'] = 'Macierzysta';
|
| | | $wb['active_txt'] = 'Aktywny';
|
| | | $wb['client_txt'] = 'Klient';
|
| | |
| | | $wb['command_error_format'] = 'Niepoprawny format komendy. Proszę zanotuj że w zbiorze url może być tylko adres http/https który ma pozwolenie.';
|
| | | $wb['unknown_fieldtype_error'] = 'Został użyty niepoprawny format pola.';
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Zadania Cron';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["run_min_txt"] = 'Minuta';
|
| | | $wb["run_hour_txt"] = 'Godzina';
|
| | | $wb["run_mday_txt"] = 'Dzień w miesiącu';
|
| | | $wb["run_month_txt"] = 'Miesiąc';
|
| | | $wb["run_wday_txt"] = 'Dzień tygodnia';
|
| | | $wb["command_txt"] = 'Komenda';
|
| | | $wb["add_new_cron_txt"] = 'Dodaj nowe zadanie Cron';
|
| | | $wb['list_head_txt'] = 'Zadania Cron'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['run_min_txt'] = 'Minuta'; |
| | | $wb['run_hour_txt'] = 'Godzina'; |
| | | $wb['run_mday_txt'] = 'Dzień w miesiącu'; |
| | | $wb['run_month_txt'] = 'Miesiąc'; |
| | | $wb['run_wday_txt'] = 'Dzień tygodnia'; |
| | | $wb['command_txt'] = 'Komenda'; |
| | | $wb['add_new_cron_txt'] = 'Dodaj nowe zadanie Cron'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["database_name_txt"] = 'Nazwa bazy danych';
|
| | | $wb["database_user_txt"] = 'Użytkownik bazy danych';
|
| | | $wb["database_password_txt"] = 'Hasło bazy danych';
|
| | | $wb["password_strength_txt"] = 'Siła hasła';
|
| | | $wb["database_charset_txt"] = 'Kodowanie bazy danych';
|
| | | $wb["remote_access_txt"] = 'Dostęp zewnętrzny';
|
| | | $wb["remote_ips_txt"] = 'Zewnętrzny dostęp z adresów IP (adresy zrodziel , i zostaw póste pola dla <i>każdego</i>)';
|
| | | $wb["database_remote_error_ips"] = 'Jeden z podanych adresów IP ma niepoprawny format.';
|
| | | $wb["client_txt"] = 'Klient';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["database_name_error_empty"] = 'Nazwa bazy danych jest pusta.';
|
| | | $wb["database_name_error_unique"] = 'Istnieje już baza danych o takiej nazwie na serwerze. Aby mieć unikatową nazwę, np.: nazwij bazę danych tak samo jak domenę.';
|
| | | $wb["database_name_error_regex"] = 'Nieprawidłowa nazwa bazy danych. Nazwa bazy danych może zawierać znaki takie jak: a-z, A-Z, 0-9 oraz podkreślenie. Długość: 2 - 64 znaków.';
|
| | | $wb["database_user_error_empty"] = 'Nazwa użytkownika bazy danych jest pusta.';
|
| | | $wb["database_user_error_unique"] = 'Jest już użytkownik bazy danych o takiej nazwie. Aby mieć unikatową nazwę, np.: nazwij użytkownika tak samo jak domenę.';
|
| | | $wb["database_user_error_regex"] = 'Nieprawidłowa nazwa użytkownika bazy danych. Nazwa użytkownika bazy danych może zawierać znaki takie jak: a-z, A-Z, 0-9 oraz podkreślenie. Długość: 2 - 64 znaków.';
|
| | | $wb["limit_database_txt"] = 'Maksymalna liczba baz danych została przekroczona.';
|
| | | $wb["database_name_change_txt"] = 'Nie można zmienić nazwy bazy danych';
|
| | | $wb["database_charset_change_txt"] = 'Nie można zmienić kodowania bazy danych';
|
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['database_name_txt'] = 'Nazwa bazy danych'; |
| | | $wb['database_user_txt'] = 'Użytkownik bazy danych'; |
| | | $wb['database_password_txt'] = 'Hasło bazy danych'; |
| | | $wb['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['database_charset_txt'] = 'Kodowanie bazy danych'; |
| | | $wb['remote_access_txt'] = 'Dostęp zewnętrzny'; |
| | | $wb['remote_ips_txt'] = 'Zewnętrzny dostęp z adresów IP (adresy zrodziel , i zostaw póste pola dla <i>każdego</i>)'; |
| | | $wb['database_remote_error_ips'] = 'Jeden z podanych adresów IP ma niepoprawny format.'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['database_name_error_empty'] = 'Nazwa bazy danych jest pusta.'; |
| | | $wb['database_name_error_unique'] = 'Istnieje już baza danych o takiej nazwie na serwerze. Aby mieć unikatową nazwę, np.: nazwij bazę danych tak samo jak domenę.'; |
| | | $wb['database_name_error_regex'] = 'Nieprawidłowa nazwa bazy danych. Nazwa bazy danych może zawierać znaki takie jak: a-z, A-Z, 0-9 oraz podkreślenie. Długość: 2 - 64 znaków.'; |
| | | $wb['database_user_error_empty'] = 'Nazwa użytkownika bazy danych jest pusta.'; |
| | | $wb['database_user_error_unique'] = 'Jest już użytkownik bazy danych o takiej nazwie. Aby mieć unikatową nazwę, np.: nazwij użytkownika tak samo jak domenę.'; |
| | | $wb['database_user_error_regex'] = 'Nieprawidłowa nazwa użytkownika bazy danych. Nazwa użytkownika bazy danych może zawierać znaki takie jak: a-z, A-Z, 0-9 oraz podkreślenie. Długość: 2 - 64 znaków.'; |
| | | $wb['limit_database_txt'] = 'Maksymalna liczba baz danych została przekroczona.'; |
| | | $wb['database_name_change_txt'] = 'Nie można zmienić nazwy bazy danych'; |
| | | $wb['database_charset_change_txt'] = 'Nie można zmienić kodowania bazy danych'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Baza danych';
|
| | | $wb["active_txt"] = 'Aktywna';
|
| | | $wb["remote_access_txt"] = 'Zewnętrzny dostęp';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["database_name_txt"] = 'Nazwa bazy danych';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nową bazę danych';
|
| | | $wb['list_head_txt'] = 'Baza danych'; |
| | | $wb['active_txt'] = 'Aktywna'; |
| | | $wb['remote_access_txt'] = 'Zewnętrzny dostęp'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['database_name_txt'] = 'Nazwa bazy danych'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową bazę danych'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["uid_txt"] = 'UID';
|
| | | $wb["gid_txt"] = 'GID';
|
| | | $wb["dir_txt"] = 'Katalog';
|
| | | $wb["quota_files_txt"] = 'Limit plików';
|
| | | $wb["quota_files_unity_txt"] = 'Pliki';
|
| | | $wb["ul_ratio_txt"] = 'Ilość upload-u';
|
| | | $wb["dl_ratio_txt"] = 'Ilość download-u';
|
| | | $wb["ul_bandwidth_txt"] = 'Szybkość wysyłania';
|
| | | $wb["dl_bandwidth_txt"] = 'Szybkość ściągania';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["parent_domain_id_txt"] = 'Strona www';
|
| | | $wb["username_txt"] = 'Nazwa użytkownika';
|
| | | $wb["password_txt"] = 'Hasło';
|
| | | $wb["password_strength_txt"] = 'Siła hasła';
|
| | | $wb["quota_size_txt"] = 'Limit na twardym dysku';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["limit_ftp_user_txt"] = 'Maksymalna ilość użytkowników FTP dla Twojego konta została przekroczona.';
|
| | | $wb["username_error_empty"] = 'Nazwa użytkiownika jest pusta.';
|
| | | $wb["username_error_unique"] = 'Nazwa użytkownika musi być uniatowa.';
|
| | | $wb["username_error_regex"] = 'Nazwa użytkownika zawiera niedozwolone znaki.';
|
| | | $wb["quota_size_error_empty"] = 'Limit jest pusty.';
|
| | | $wb["uid_error_empty"] = 'UID jest puste';
|
| | | $wb["uid_error_empty"] = 'GID jest puste.';
|
| | | $wb["directory_error_empty"] = 'Element docelowy jest pusty.';
|
| | | $wb['uid_txt'] = 'UID'; |
| | | $wb['gid_txt'] = 'GID'; |
| | | $wb['dir_txt'] = 'Katalog'; |
| | | $wb['quota_files_txt'] = 'Limit plików'; |
| | | $wb['quota_files_unity_txt'] = 'Pliki'; |
| | | $wb['ul_ratio_txt'] = 'Ilość upload-u'; |
| | | $wb['dl_ratio_txt'] = 'Ilość download-u'; |
| | | $wb['ul_bandwidth_txt'] = 'Szybkość wysyłania'; |
| | | $wb['dl_bandwidth_txt'] = 'Szybkość ściągania'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['parent_domain_id_txt'] = 'Strona www'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['password_txt'] = 'Hasło'; |
| | | $wb['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['quota_size_txt'] = 'Limit na twardym dysku'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['limit_ftp_user_txt'] = 'Maksymalna ilość użytkowników FTP dla Twojego konta została przekroczona.'; |
| | | $wb['username_error_empty'] = 'Nazwa użytkiownika jest pusta.'; |
| | | $wb['username_error_unique'] = 'Nazwa użytkownika musi być uniatowa.'; |
| | | $wb['username_error_regex'] = 'Nazwa użytkownika zawiera niedozwolone znaki.'; |
| | | $wb['quota_size_error_empty'] = 'Limit jest pusty.'; |
| | | $wb['uid_error_empty'] = 'GID jest puste.'; |
| | | $wb['directory_error_empty'] = 'Element docelowy jest pusty.'; |
| | | $wb['directory_error_notinweb'] = 'Directory not inside of web root directory.';
|
| | | $wb["parent_domain_id_error_empty"] = 'Nie wybrano żadnej strony www.';
|
| | | $wb['parent_domain_id_error_empty'] = 'Nie wybrano żadnej strony www.'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Użytkownik FTP';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["parent_domain_id_txt"] = 'Strona www';
|
| | | $wb["username_txt"] = 'Nazwa użytkownika';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowego użytkownika FTP';
|
| | | $wb['list_head_txt'] = 'Użytkownik FTP'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['parent_domain_id_txt'] = 'Strona www'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego użytkownika FTP'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["uid_txt"] = 'Sieciowa nazwa użytkownika';
|
| | | $wb["gid_txt"] = 'Grupa';
|
| | | $wb["shell_txt"] = 'Shell';
|
| | | $wb["dir_txt"] = 'Ścieżka';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["parent_domain_id_txt"] = 'Strona';
|
| | | $wb["username_txt"] = 'Nazwa użytkownika';
|
| | | $wb["password_txt"] = 'Hasło';
|
| | | $wb["password_strength_txt"] = 'Siła hasła';
|
| | | $wb["chroot_txt"] = 'Admin Shell';
|
| | | $wb["quota_size_txt"] = 'Limit';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["username_error_empty"] = 'Nazwa użytkownika jest pusta.';
|
| | | $wb["username_error_unique"] = 'Nazwa użytkownika musi być unikatowa.';
|
| | | $wb["username_error_regex"] = 'Nazwa użytkownika.';
|
| | | $wb["quota_size_error_empty"] = 'Limit jest pusty.';
|
| | | $wb["uid_error_empty"] = 'UID jest pusty.';
|
| | | $wb["uid_error_empty"] = 'GID jest pusty.';
|
| | | $wb["directory_error_empty"] = 'Element docelowy jest pusty.';
|
| | | $wb["limit_shell_user_txt"] = 'Maksymalna liczba użytkowników shell została przekroczona.';
|
| | | $wb["parent_domain_id_error_empty"] = 'Nie wybrano żadnej strony www.';
|
| | | $wb['uid_txt'] = 'Sieciowa nazwa użytkownika'; |
| | | $wb['gid_txt'] = 'Grupa'; |
| | | $wb['shell_txt'] = 'Shell'; |
| | | $wb['dir_txt'] = 'Ścieżka'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['parent_domain_id_txt'] = 'Strona'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['password_txt'] = 'Hasło'; |
| | | $wb['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['chroot_txt'] = 'Admin Shell'; |
| | | $wb['quota_size_txt'] = 'Limit'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['username_error_empty'] = 'Nazwa użytkownika jest pusta.'; |
| | | $wb['username_error_unique'] = 'Nazwa użytkownika musi być unikatowa.'; |
| | | $wb['username_error_regex'] = 'Nazwa użytkownika.'; |
| | | $wb['quota_size_error_empty'] = 'Limit jest pusty.'; |
| | | $wb['uid_error_empty'] = 'GID jest pusty.'; |
| | | $wb['directory_error_empty'] = 'Element docelowy jest pusty.'; |
| | | $wb['limit_shell_user_txt'] = 'Maksymalna liczba użytkowników shell została przekroczona.'; |
| | | $wb['parent_domain_id_error_empty'] = 'Nie wybrano żadnej strony www.'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Użytkownik Shell';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["parent_domain_id_txt"] = 'Strona';
|
| | | $wb["username_txt"] = 'Nazwa użytkownika';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowego uzytkownika Shell';
|
| | | $wb['list_head_txt'] = 'Użytkownik Shell'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['parent_domain_id_txt'] = 'Strona'; |
| | | $wb['username_txt'] = 'Nazwa użytkownika'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowego uzytkownika Shell'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Alias domeny';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["parent_domain_id_txt"] = 'Strona www';
|
| | | $wb["domain_txt"] = 'Alias domeny';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nowy alias domeny';
|
| | | $wb["domain_error_empty"] = 'Domena jest pusta.';
|
| | | $wb["domain_error_unique"] = 'Domena musi być unikatowa.';
|
| | | $wb["domain_error_regex"] = 'Nazwa domeny ma niepoprawny format.';
|
| | | $wb['list_head_txt'] = 'Alias domeny'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['parent_domain_id_txt'] = 'Strona www'; |
| | | $wb['domain_txt'] = 'Alias domeny'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nowy alias domeny'; |
| | | $wb['domain_error_empty'] = 'Domena jest pusta.'; |
| | | $wb['domain_error_unique'] = 'Domena musi być unikatowa.'; |
| | | $wb['domain_error_regex'] = 'Nazwa domeny ma niepoprawny format.'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["ssl_state_txt"] = 'Stan';
|
| | | $wb["ssl_locality_txt"] = 'Lokalność';
|
| | | $wb["ssl_organisation_txt"] = 'Organizacja';
|
| | | $wb["ssl_organisation_unit_txt"] = 'Jednosta organizacji';
|
| | | $wb["ssl_country_txt"] = 'Państwo';
|
| | | $wb["ssl_request_txt"] = 'Żądanie SSL';
|
| | | $wb["ssl_cert_txt"] = 'Certyfikat SSL';
|
| | | $wb["ssl_bundle_txt"] = 'Paczka SSL';
|
| | | $wb["ssl_action_txt"] = 'Akcja SSL';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["domain_txt"] = 'Domena';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["parent_domain_id_txt"] = 'Aktualna strona www';
|
| | | $wb["redirect_type_txt"] = 'Typ przekierowania';
|
| | | $wb["redirect_path_txt"] = 'Ścieżka przekierowania';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["document_root_txt"] = 'Głowny katalog';
|
| | | $wb["system_user_txt"] = 'Użytkownik Linuksa';
|
| | | $wb["system_group_txt"] = 'Grupa Linuks';
|
| | | $wb["ip_address_txt"] = 'Adres IP';
|
| | | $wb["vhost_type_txt"] = 'Typ wirtualnego serwera';
|
| | | $wb["hd_quota_txt"] = 'Limit dysku twardego';
|
| | | $wb["traffic_quota_txt"] = 'Limit ruchu na serwerze';
|
| | | $wb["cgi_txt"] = 'CGI';
|
| | | $wb["ssi_txt"] = 'SSI';
|
| | | $wb["errordocs_txt"] = 'Własne strony błędów';
|
| | | $wb["subdomain_txt"] = 'Automatyczna subdomena';
|
| | | $wb["ssl_txt"] = 'SSL';
|
| | | $wb["suexec_txt"] = 'SuEXEC';
|
| | | $wb["php_txt"] = 'PHP';
|
| | | $wb["client_txt"] = 'Klient';
|
| | | $wb["limit_web_domain_txt"] = 'Maksymalna ilość domen dla Twojego konta została przekroczona.';
|
| | | $wb["limit_web_aliasdomain_txt"] = 'Maksymalna ilość aliasów domen dla Twojego konta została przekroczona.';
|
| | | $wb["limit_web_subdomain_txt"] = 'Maksymalna ilość subdomen dla Twojego konta została przekroczona.';
|
| | | $wb["apache_directives_txt"] = 'Dyrektywy Apache';
|
| | | $wb["domain_error_empty"] = 'Domena jest pusta.';
|
| | | $wb["domain_error_unique"] = 'Istnieje już strona www, alias lub subdomena dla tej domeny.';
|
| | | $wb["domain_error_regex"] = 'Nazwa domeny jest niepoprawna.';
|
| | | $wb["hd_quota_error_empty"] = 'Limit twardego dysku jest pusty.';
|
| | | $wb["traffic_quota_error_empty"] = 'Limit ruchu na serwerze jest pusty.';
|
| | | $wb['ssl_state_txt'] = 'Stan'; |
| | | $wb['ssl_locality_txt'] = 'Lokalność'; |
| | | $wb['ssl_organisation_txt'] = 'Organizacja'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Jednosta organizacji'; |
| | | $wb['ssl_country_txt'] = 'Państwo'; |
| | | $wb['ssl_request_txt'] = 'Żądanie SSL'; |
| | | $wb['ssl_cert_txt'] = 'Certyfikat SSL'; |
| | | $wb['ssl_bundle_txt'] = 'Paczka SSL'; |
| | | $wb['ssl_action_txt'] = 'Akcja SSL'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['parent_domain_id_txt'] = 'Aktualna strona www'; |
| | | $wb['redirect_type_txt'] = 'Typ przekierowania'; |
| | | $wb['redirect_path_txt'] = 'Ścieżka przekierowania'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['document_root_txt'] = 'Głowny katalog'; |
| | | $wb['system_user_txt'] = 'Użytkownik Linuksa'; |
| | | $wb['system_group_txt'] = 'Grupa Linuks'; |
| | | $wb['ip_address_txt'] = 'Adres IP'; |
| | | $wb['vhost_type_txt'] = 'Typ wirtualnego serwera'; |
| | | $wb['hd_quota_txt'] = 'Limit dysku twardego'; |
| | | $wb['traffic_quota_txt'] = 'Limit ruchu na serwerze'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['errordocs_txt'] = 'Własne strony błędów'; |
| | | $wb['subdomain_txt'] = 'Automatyczna subdomena'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['limit_web_domain_txt'] = 'Maksymalna ilość domen dla Twojego konta została przekroczona.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Maksymalna ilość aliasów domen dla Twojego konta została przekroczona.'; |
| | | $wb['limit_web_subdomain_txt'] = 'Maksymalna ilość subdomen dla Twojego konta została przekroczona.'; |
| | | $wb['apache_directives_txt'] = 'Dyrektywy Apache'; |
| | | $wb['domain_error_empty'] = 'Domena jest pusta.'; |
| | | $wb['domain_error_unique'] = 'Istnieje już strona www, alias lub subdomena dla tej domeny.'; |
| | | $wb['domain_error_regex'] = 'Nazwa domeny jest niepoprawna.'; |
| | | $wb['hd_quota_error_empty'] = 'Limit twardego dysku jest pusty.'; |
| | | $wb['traffic_quota_error_empty'] = 'Limit ruchu na serwerze jest pusty.'; |
| | | $wb['error_ssl_state_empty'] = 'Stan SSL jest pusty.';
|
| | | $wb['error_ssl_locality_empty'] = 'Lokalność SSL jest pusta.';
|
| | | $wb['error_ssl_organisation_empty'] = 'Organizacja SSL jest pusta.';
|
| | | $wb['error_ssl_organisation_unit_empty'] = 'Jednosta ogranizacji SSL jest pusta.';
|
| | | $wb['error_ssl_country_empty'] = 'Państwo SSL jest puste.';
|
| | | $wb["client_group_id_txt"] = 'Klient';
|
| | | $wb["stats_password_txt"] = 'Hasło statystyk strony www';
|
| | | $wb['client_group_id_txt'] = 'Klient'; |
| | | $wb['stats_password_txt'] = 'Hasło statystyk strony www'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Strony www';
|
| | | $wb["domain_id_txt"] = 'ID';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["domain_txt"] = 'Domena';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nową stronę';
|
| | | $wb['list_head_txt'] = 'Strony www'; |
| | | $wb['domain_id_txt'] = 'ID'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową stronę'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Ruch na stronie www';
|
| | | $wb["domain_txt"] = 'Domena';
|
| | | $wb["this_month_txt"] = 'Ten miesiąc';
|
| | | $wb["last_month_txt"] = 'Ostatni miesiąc';
|
| | | $wb["this_year_txt"] = 'Ten rok';
|
| | | $wb["last_year_txt"] = 'Ostatni rok';
|
| | | $wb['list_head_txt'] = 'Ruch na stronie www'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['this_month_txt'] = 'Ten miesiąc'; |
| | | $wb['last_month_txt'] = 'Ostatni miesiąc'; |
| | | $wb['this_year_txt'] = 'Ten rok'; |
| | | $wb['last_year_txt'] = 'Ostatni rok'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["ssl_state_txt"] = 'Stan';
|
| | | $wb["ssl_locality_txt"] = 'Lokalność';
|
| | | $wb["ssl_organisation_txt"] = 'Organizacja';
|
| | | $wb["ssl_organisation_unit_txt"] = 'Jednostka organizacji';
|
| | | $wb["ssl_country_txt"] = 'Państwo';
|
| | | $wb["ssl_request_txt"] = 'Żądanie SSL';
|
| | | $wb["ssl_cert_txt"] = 'Certyfikat SSL';
|
| | | $wb["ssl_bundle_txt"] = 'Paczka SSL';
|
| | | $wb["ssl_action_txt"] = 'Akcja SSL';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["domain_txt"] = 'Domena';
|
| | | $wb["type_txt"] = 'Typ';
|
| | | $wb["parent_domain_id_txt"] = 'Macieżysta strona www';
|
| | | $wb["redirect_type_txt"] = 'Typ przekierowania';
|
| | | $wb["redirect_path_txt"] = 'Ścieżka przekierowania';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["document_root_txt"] = 'Główny katalog';
|
| | | $wb["system_user_txt"] = 'Użytkownik Linuksa';
|
| | | $wb["system_group_txt"] = 'Grupa Linuks';
|
| | | $wb["ip_address_txt"] = 'Adres IP';
|
| | | $wb["vhost_type_txt"] = 'Typ wirtualnego hosta';
|
| | | $wb["hd_quota_txt"] = 'Limit twardego dysku';
|
| | | $wb["traffic_quota_txt"] = 'Limit ruchu na serwerze';
|
| | | $wb["cgi_txt"] = 'CGI';
|
| | | $wb["ssi_txt"] = 'SSI';
|
| | | $wb["ssl_txt"] = 'SSL';
|
| | | $wb["suexec_txt"] = 'SuEXEC';
|
| | | $wb["php_txt"] = 'PHP';
|
| | | $wb["client_txt"] = 'Klient';
|
| | | $wb["limit_web_domain_txt"] = 'Maksymalna ilość domen dla Twojego konta została przekroczona.';
|
| | | $wb["limit_web_aliasdomain_txt"] = 'Maksymalna ilość aliasów dla Twojego konta została przekroczona.';
|
| | | $wb["limit_web_subdomain_txt"] = 'Maksymalna ilość subdomen dla Twojego konta została przekroczona.';
|
| | | $wb["apache_directives_txt"] = 'Dyrektywy Apache';
|
| | | $wb["domain_error_empty"] = 'Domena jest pusta.';
|
| | | $wb["domain_error_unique"] = 'Istnieje już domena, alias lub subdomena o podanej nazwie.';
|
| | | $wb["domain_error_regex"] = 'Nazwa domeny jest nieprawidłowa.';
|
| | | $wb["host_txt"] = 'Serwer';
|
| | | $wb['ssl_state_txt'] = 'Stan'; |
| | | $wb['ssl_locality_txt'] = 'Lokalność'; |
| | | $wb['ssl_organisation_txt'] = 'Organizacja'; |
| | | $wb['ssl_organisation_unit_txt'] = 'Jednostka organizacji'; |
| | | $wb['ssl_country_txt'] = 'Państwo'; |
| | | $wb['ssl_request_txt'] = 'Żądanie SSL'; |
| | | $wb['ssl_cert_txt'] = 'Certyfikat SSL'; |
| | | $wb['ssl_bundle_txt'] = 'Paczka SSL'; |
| | | $wb['ssl_action_txt'] = 'Akcja SSL'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['domain_txt'] = 'Domena'; |
| | | $wb['type_txt'] = 'Typ'; |
| | | $wb['parent_domain_id_txt'] = 'Macieżysta strona www'; |
| | | $wb['redirect_type_txt'] = 'Typ przekierowania'; |
| | | $wb['redirect_path_txt'] = 'Ścieżka przekierowania'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['document_root_txt'] = 'Główny katalog'; |
| | | $wb['system_user_txt'] = 'Użytkownik Linuksa'; |
| | | $wb['system_group_txt'] = 'Grupa Linuks'; |
| | | $wb['ip_address_txt'] = 'Adres IP'; |
| | | $wb['vhost_type_txt'] = 'Typ wirtualnego hosta'; |
| | | $wb['hd_quota_txt'] = 'Limit twardego dysku'; |
| | | $wb['traffic_quota_txt'] = 'Limit ruchu na serwerze'; |
| | | $wb['cgi_txt'] = 'CGI'; |
| | | $wb['ssi_txt'] = 'SSI'; |
| | | $wb['ssl_txt'] = 'SSL'; |
| | | $wb['suexec_txt'] = 'SuEXEC'; |
| | | $wb['php_txt'] = 'PHP'; |
| | | $wb['client_txt'] = 'Klient'; |
| | | $wb['limit_web_domain_txt'] = 'Maksymalna ilość domen dla Twojego konta została przekroczona.'; |
| | | $wb['limit_web_aliasdomain_txt'] = 'Maksymalna ilość aliasów dla Twojego konta została przekroczona.'; |
| | | $wb['limit_web_subdomain_txt'] = 'Maksymalna ilość subdomen dla Twojego konta została przekroczona.'; |
| | | $wb['apache_directives_txt'] = 'Dyrektywy Apache'; |
| | | $wb['domain_error_empty'] = 'Domena jest pusta.'; |
| | | $wb['domain_error_unique'] = 'Istnieje już domena, alias lub subdomena o podanej nazwie.'; |
| | | $wb['domain_error_regex'] = 'Nazwa domeny jest nieprawidłowa.'; |
| | | $wb['host_txt'] = 'Serwer'; |
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["list_head_txt"] = 'Subdomeny';
|
| | | $wb["active_txt"] = 'Aktywny';
|
| | | $wb["server_id_txt"] = 'Serwer';
|
| | | $wb["parent_domain_id_txt"] = 'Strona www';
|
| | | $wb["domain_txt"] = 'Subdomena';
|
| | | $wb["add_new_record_txt"] = 'Dodaj nową subdomene';
|
| | | $wb['list_head_txt'] = 'Subdomeny'; |
| | | $wb['active_txt'] = 'Aktywny'; |
| | | $wb['server_id_txt'] = 'Serwer'; |
| | | $wb['parent_domain_id_txt'] = 'Strona www'; |
| | | $wb['domain_txt'] = 'Subdomena'; |
| | | $wb['add_new_record_txt'] = 'Dodaj nową subdomene'; |
| | | ?>
|
| | | |
| | |
| | | $wb['password_strength_txt'] = 'Password strength'; |
| | | $wb['remote_ips_txt'] = 'Remote Access IPs (separate by , and leave blank for <i>any</i>)'; |
| | | $wb['database_remote_error_ips'] = 'At least one of the entered ip addresses is invalid.'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | |
| | | $wb['database_charset_change_txt'] = 'The database charset can not be changed'; |
| | | $wb['remote_ips_txt'] = 'Remote Access IPs (separate by , and leave blank for <i>any</i>)'; |
| | | $wb['database_remote_error_ips'] = 'At least one of the entered ip addresses is invalid.'; |
| | | $wb['database_name_error_len'] = 'Database name - {db} - too long. The max. database name length incl. prefix is 64 chars.'; |
| | | $wb['database_user_error_len'] = 'Database username - {user}- too long. The max. database username length incl. prefix is 16 chars.'; |
| | | ?> |
| | |
| | | */ |
| | | |
| | | function replacePrefix($name, $dataRecord){ |
| | | // No input -> no possible output -> go out! |
| | | if ($name=="") return ""; |
| | | |
| | | // Array containing keys to search |
| | | $keywordlist=array('CLIENTNAME','CLIENTID'); |
| | | |
| | | if ($name != '') { |
| | | // Try to match the key within the string |
| | | foreach ($keywordlist as $keyword) { |
| | | if (substr_count($name, '['.$keyword.']') > 0) { |
| | | switch ($keyword) { |
| | | case 'CLIENTNAME': |
| | | $res=str_replace('['.$keyword.']', getClientName($dataRecord), $name); |
| | | $name=str_replace('['.$keyword.']', getClientName($dataRecord),$name); |
| | | break; |
| | | case 'CLIENTID': |
| | | $res=str_replace('['.$keyword.']', getClientID($dataRecord), $name); |
| | | $name=str_replace('['.$keyword.']', getClientID($dataRecord),$name); |
| | | break; |
| | | } |
| | | } |
| | | } |
| | | } else { |
| | | $res=''; |
| | | } |
| | | |
| | | return $res; |
| | | return $name; |
| | | } |
| | | |
| | | function getClientName($dataRecord) { |
| | |
| | | $wb['password_strength_4_txt'] = 'Forte'; |
| | | $wb['password_strength_5_txt'] = 'Muito Forte'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_strength_4_txt'] = 'Erős'; |
| | | $wb['password_strength_5_txt'] = 'Nagyon erős'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_strength_4_txt'] = 'Sterk'; |
| | | $wb['password_strength_5_txt'] = 'Zeer sterk'; |
| | | ?> |
| | | |
| | |
| | | $wb['password_strength_4_txt'] = 'Silne';
|
| | | $wb['password_strength_5_txt'] = 'Bardzo mocne';
|
| | | ?>
|
| | |
|
| | | |
| | |
| | |
|
| | | /* (en) Layout: width, background, borders */
|
| | | /* (de) Layout: Breite, Hintergrund, Rahmen */
|
| | | #page_margins { min-width: 800px; max-width: 80%; background: #fff; }
|
| | | #page_margins { min-width: 980px; max-width: 80%; background: #fff; display: table;} |
| | | #page{ padding: 10px; }
|
| | |
|
| | | /* (en) Designing main layout elements */
|
| | |
| | | $wb['ISPConfig Tools'] = 'Ferramentas'; |
| | | $wb['Password and Language'] = 'Senha e Idioma'; |
| | | ?> |
| | | |
| | |
| | | $wb['Form to edit the user password and language.'] = 'Formulário para alterar idioma e senha'; |
| | | $wb['Settings'] = 'Configurações'; |
| | | ?> |
| | | |
| | |
| | | $wb['ISPConfig Tools'] = 'ISPConfig eszközök'; |
| | | $wb['Password and Language'] = 'Jelszó és nyelv'; |
| | | ?> |
| | | |
| | |
| | | $wb['Settings'] = 'Beállítások'; |
| | | $wb['password_strength_txt'] = 'Jelszó erősség'; |
| | | ?> |
| | | |
| | |
| | | $wb['ISPConfig Tools'] = 'ISPConfig Tools'; |
| | | $wb['Password and Language'] = 'Wachtwoord en taal'; |
| | | ?> |
| | | |
| | |
| | | $wb['Form to edit the user password and language.'] = 'Wijzig in het onderstaande formulier het wachtwoord en/of taal.'; |
| | | $wb['Settings'] = 'Instellingen'; |
| | | ?> |
| | | |
| | |
| | | <?php
|
| | | $wb['User Settings'] = 'Ustawienia użytkownika';
|
| | | $wb['Settings'] = 'Ustawienia';
|
| | | $wb['ISPConfig Tools'] = 'ISPConfig Tools';
|
| | | $wb['ISPConfig Tools'] = 'Narzedzia'; |
| | | $wb['Password and Language'] = 'Hasło i język';
|
| | | ?>
|
| | | |
| | |
| | | <?php
|
| | | $wb["passwort_txt"] = 'Hasło';
|
| | | $wb["password_strength_txt"] = 'Siła hasła';
|
| | | $wb["language_txt"] = 'Język';
|
| | | $wb["password_mismatch"] = 'Hasła nie pasują do siebie.';
|
| | | $wb["Form to edit the user password and language."] = 'Formularz do edycji języka i hasła użytkownika.';
|
| | | $wb["Settings"] = 'Ustawienia';
|
| | | $wb['passwort_txt'] = 'Hasło'; |
| | | $wb['password_strength_txt'] = 'Siła hasła'; |
| | | $wb['language_txt'] = 'Język'; |
| | | $wb['password_mismatch'] = 'Hasła nie pasują do siebie.'; |
| | | $wb['Form to edit the user password and language.'] = 'Formularz do edycji języka i hasła użytkownika.'; |
| | | $wb['Settings'] = 'Ustawienia'; |
| | | ?>
|
| | |
|
| | | |
| | |
| | | |
| | | <tmpl_if name='jailkit_chroot'> |
| | | ## Hack for Jailkit User to change back to the logged in user ## |
| | | if [ -n "$LOGNAME" ]; then |
| | | if [ "$LOGNAME" != $USER ]; then |
| | | export HOME=<tmpl_var name='home_dir'>$LOGNAME |
| | | export USER=$LOGNAME |
| | | export USERNAME=$LOGNAME |
| | | cd $HOME |
| | | fi |
| | | fi |
| | | |
| | | ## Change machine hostname to site domain ## |
| | | export HOSTNAME=<tmpl_var name='domain'> |
| | |
| | | // Create webalizer statistics |
| | | ####################################################################################################### |
| | | |
| | | function setConfigVar( $filename, $varName, $varValue ) { |
| | | if($lines = @file($filename)) { |
| | | $out = ''; |
| | | $found = 0; |
| | | foreach($lines as $line) { |
| | | list($key, $value) = split("[\t= ]+", $line, 2); |
| | | if($key == $varName) { |
| | | $out .= $varName." ".$varValue."\n"; |
| | | $found = 1; |
| | | } else { |
| | | $out .= $line; |
| | | } |
| | | } |
| | | if($found == 0) { |
| | | //* add \n if the last line does not end with \n or \r |
| | | if(substr($out,-1) != "\n" && substr($out,-1) != "\r") $out .= "\n"; |
| | | //* add the new line at the end of the file |
| | | if($append == 1) $out .= $varName." ".$varValue."\n"; |
| | | } |
| | | |
| | | file_put_contents($filename,$out); |
| | | } |
| | | } |
| | | |
| | | |
| | | $sql = "SELECT domain_id, domain, document_root FROM web_domain WHERE server_id = ".$conf["server_id"]; |
| | | $records = $app->db->queryAllRecords($sql); |
| | | |
| | | foreach($records as $rec) { |
| | | $yesterday = date("Ymd",time() - 86400); |
| | | $logfile = escapeshellcmd($rec["document_root"].'/log/'.$yesterday.'-access.log'); |
| | |
| | | continue; |
| | | } |
| | | } |
| | | |
| | | $domain = escapeshellcmd($rec["domain"]); |
| | | $statsdir = escapeshellcmd($rec["document_root"].'/web/stats'); |
| | | $webalizer = '/usr/bin/webalizer'; |
| | | $webalizer_conf = '/etc/webalizer/webalizer.conf'; |
| | | $webalizer_conf_main = '/etc/webalizer/webalizer.conf'; |
| | | $webalizer_conf = escapeshellcmd($rec["document_root"].'/log/webalizer.conf'); |
| | | |
| | | if(!@is_file($webalizer_conf)) { |
| | | exec("cp $webalizer_conf_main $webalizer_conf"); |
| | | |
| | | setConfigVar($webalizer_conf, 'Incremental', 'yes'); |
| | | setConfigVar($webalizer_conf, 'IncrementalName', $logdir.'/webalizer.current'); |
| | | setConfigVar($webalizer_conf, 'HistoryName', $logdir.'/webalizer.hist'); |
| | | } |
| | | |
| | | if(!@is_dir($statsdir)) mkdir($statsdir); |
| | | exec("$webalizer -c $webalizer_conf -n $domain -s $domain -r $domain -q -T -p -o $statsdir $logfile"); |
| | | } |
| | |
| | | $tmp_sql2 = ''; |
| | | foreach($data['new'] as $fieldname => $val) { |
| | | $tmp_sql1 .= "`$fieldname`,"; |
| | | $tmp_sql2 .= "'$val',"; |
| | | $tmp_sql2 .= "'".$app->db->quote($val)."',"; |
| | | } |
| | | $tmp_sql1 = substr($tmp_sql1,0,-1); |
| | | $tmp_sql2 = substr($tmp_sql2,0,-1); |
| | |
| | | $this->_exec("chmod 777 ".escapeshellcmd($data["new"]["document_root"]."/tmp")); |
| | | } |
| | | |
| | | // Change the owner of the error log to the owner of the website |
| | | if(!@is_file($data["new"]["document_root"]."/log/error.log")) exec('touch '.escapeshellcmd($data["new"]["document_root"])."/log/error.log"); |
| | | $this->_exec("chown $username:$groupname ".escapeshellcmd($data["new"]["document_root"])."/log/error.log"); |
| | | |
| | | |
| | | // Create the vhost config file |
| | | $app->load('tpl'); |
| | |
| | | } |
| | | |
| | | $command .= "\t"; |
| | | if(substr($job['command'], 0, 1) != "/") $command .= $this->parent_domain['document_root']; |
| | | if(substr($job['command'], 0, 1) != "/") $command .= $this->parent_domain['document_root'].'/'; |
| | | $command .= $job['command']; |
| | | } |
| | | |
| | |
| | | |
| | | // check if entry is valid ip address |
| | | $valid = true; |
| | | if(preg_match("/^[0-9]{1,3}(\.)[0-9]{1,3}(\.)[0-9]{1,3}(\.)[0-9]{1,3}$/", $db_host)) { |
| | | if($db_host == "%") { |
| | | $valid = true; |
| | | } elseif(preg_match("/^[0-9]{1,3}(\.)[0-9]{1,3}(\.)[0-9]{1,3}(\.)[0-9]{1,3}$/", $db_host)) { |
| | | $groups = explode(".", $db_host); |
| | | foreach($groups as $group){ |
| | | if($group<0 OR $group>255) |
| | |
| | | exec("postconf -e 'relayhost ='"); |
| | | } |
| | | |
| | | exec("postconf -e 'mailbox_size_limit = ".intval($mail_config["mailbox_size_limit"])."'"); |
| | | exec("postconf -e 'message_size_limit = ".intval($mail_config["message_size_limit"])."'"); |
| | | exec("postconf -e 'mailbox_size_limit = ".intval($mail_config["mailbox_size_limit"]*1024*1024)."'"); |
| | | exec("postconf -e 'message_size_limit = ".intval($mail_config["message_size_limit"]*1024*1024)."'"); |
| | | |
| | | } |
| | | |
| | |
| | | |
| | | //* Disable shell user temporarily if we use jailkit |
| | | if($data['new']['chroot'] == 'jailkit') { |
| | | $command = 'usermod -L '.escapeshellcmd($data['new']['username']); |
| | | $command = 'usermod -s /bin/false -L '.escapeshellcmd($data['new']['username']); |
| | | exec($command); |
| | | $app->log("Disabling shelluser temporarily: ".$command,LOGLEVEL_DEBUG); |
| | | } |