release 1.1.1
This commit is contained in:
@@ -1 +1 @@
|
||||
.required-field-block{position:relative}.required-field-block .required-icon{display:inline-block;vertical-align:middle;margin:-0.25em .25em 0;background-color:#ccc;border-color:#ccc;padding:0;color:rgba(0,0,0,0.65);text-transform:uppercase;font-weight:normal;border-radius:.325em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background .1s linear;-moz-transition:background .1s linear;transition:background .1s linear;font-size:75%}.required-field-block .required-icon{background-color:transparent;position:absolute;top:0;right:0;z-index:10;margin:0;width:20px;height:20px;padding:0;text-align:center;-webkit-transition:color .2s ease;-moz-transition:color .2s ease;transition:color .2s ease}.required-field-block .required-icon:after{position:absolute;content:"";right:16px;top:1px;z-index:-1;width:0;height:0;border-top:0 solid transparent;border-right:20px solid transparent;border-bottom:20px solid transparent;border-left:0 solid transparent;border-right-color:inherit;-webkit-transition:border-color .2s ease;-moz-transition:border-color .2s ease;transition:border-color .2s ease}.required-field-block .required-icon .text{color:#FFF;font-size:25px;margin:-5px 0 0 -22px}.required-field-block{position:relative}.required-field-block-spin .required-icon{display:inline-block;vertical-align:middle;margin:0 21px 0 0;background-color:#ccc;border-color:#ccc;padding:0;color:rgba(0,0,0,0.65);text-transform:uppercase;font-weight:normal;border-radius:.325em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background .1s linear;-moz-transition:background .1s linear;transition:background .1s linear;font-size:75%}.required-field-block-spin .required-icon{background-color:transparent;position:absolute;top:0;right:0;z-index:10;margin:0 21px 0 0;width:20px;height:20px;padding:0;text-align:center;-webkit-transition:color .2s ease;-moz-transition:color .2s ease;transition:color .2s ease}.required-field-block-spin .required-icon:after{position:absolute;content:"";right:16px;top:1px;z-index:-1;width:0;height:0;border-top:0 solid transparent;border-right:20px solid transparent;border-bottom:20px solid transparent;border-left:0 solid transparent;border-right-color:inherit;-webkit-transition:border-color .2s ease;-moz-transition:border-color .2s ease;transition:border-color .2s ease}.required-field-block-spin .required-icon .text{color:#FFF;font-size:25px;margin:-5px 0 0 -22px}.divider{height:1px;width:100%;display:block;margin:5px 0;overflow:hidden;background-color:#111111}
|
||||
.required-field-block{position:relative}.required-field-block .required-icon{display:inline-block;vertical-align:middle;margin:-0.25em .25em 0;background-color:#ccc;border-color:#ccc;padding:0;color:rgba(0,0,0,0.65);text-transform:uppercase;font-weight:normal;border-radius:.325em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background .1s linear;-moz-transition:background .1s linear;transition:background .1s linear;font-size:75%}.required-field-block .required-icon{background-color:transparent;position:absolute;top:0;right:0;z-index:10;margin:0;width:20px;height:20px;padding:0;text-align:center;-webkit-transition:color .2s ease;-moz-transition:color .2s ease;transition:color .2s ease}.required-field-block .required-icon:after{position:absolute;content:"";right:16px;top:1px;z-index:-1;width:0;height:0;border-top:0 solid transparent;border-right:20px solid transparent;border-bottom:20px solid transparent;border-left:0 solid transparent;border-right-color:inherit;-webkit-transition:border-color .2s ease;-moz-transition:border-color .2s ease;transition:border-color .2s ease}.required-field-block .required-icon .text{color:#FFF;font-size:25px;margin:-5px 0 0 -22px}.required-field-block{position:relative}.required-field-block-spin .required-icon{display:inline-block;vertical-align:middle;margin:0 21px 0 0;background-color:#ccc;border-color:#ccc;padding:0;color:rgba(0,0,0,0.65);text-transform:uppercase;font-weight:normal;border-radius:.325em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background .1s linear;-moz-transition:background .1s linear;transition:background .1s linear;font-size:75%}.required-field-block-spin .required-icon{background-color:transparent;position:absolute;top:0;right:0;z-index:10;margin:0 21px 0 0;width:20px;height:20px;padding:0;text-align:center;-webkit-transition:color .2s ease;-moz-transition:color .2s ease;transition:color .2s ease}.required-field-block-spin .required-icon:after{position:absolute;content:"";right:16px;top:1px;z-index:-1;width:0;height:0;border-top:0 solid transparent;border-right:20px solid transparent;border-bottom:20px solid transparent;border-left:0 solid transparent;border-right-color:inherit;-webkit-transition:border-color .2s ease;-moz-transition:border-color .2s ease;transition:border-color .2s ease}.required-field-block-spin .required-icon .text{color:#FFF;font-size:25px;margin:-5px 0 0 -22px}.divider{height:1px;width:100%;display:block;margin:5px 0;overflow:hidden;background-color:#111111}.help-hover{display:none}.form-group:hover .help-hover{display:block;cursor:pointer;margin: -19px -17px 5px 0}
|
||||
8
index.php
Normal file
8
index.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?PHP
|
||||
$target = $_SERVER['HTTP_HOST'].rtrim(dirname($_SERVER['PHP_SELF']), '/\\').'/stats/';
|
||||
if(isset($_SERVER['HTTPS'])) {
|
||||
header('Location: https://'.$target);
|
||||
} else {
|
||||
header('Location: http://'.$target);
|
||||
}
|
||||
?>
|
||||
693
install.php
693
install.php
@@ -102,28 +102,113 @@ require_once('other/config.php');
|
||||
</nav>
|
||||
<?PHP
|
||||
|
||||
function install($type, $host, $user, $pass, $dbname, $lang, $mysqlcon, &$err_msg, &$err_lvl, &$install_webuser) {
|
||||
$newconfig='<?php
|
||||
$db[\'type\']="'.$type.'";
|
||||
$db[\'host\']="'.$host.'";
|
||||
$db[\'user\']="'.$user.'";
|
||||
$db[\'pass\']="'.$pass.'";
|
||||
$db[\'dbname\']="'.$dbname.'";
|
||||
?>';
|
||||
|
||||
$handle=fopen('./other/dbconfig.php','w');
|
||||
if(!fwrite($handle,$newconfig)) {
|
||||
$err_msg = $lang['isntwicfg'];
|
||||
$err_lvl = 2;
|
||||
} else {
|
||||
$count = 1;
|
||||
if(($mysqlcon->exec("DROP DATABASE $dbname")) === false) { }
|
||||
|
||||
if($mysqlcon->exec("CREATE DATABASE $dbname") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.user (uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY,cldbid bigint(10) NOT NULL default '0',count bigint(11) NOT NULL default '0',ip VARBINARY(16) DEFAULT NULL,name text CHARACTER SET utf8 COLLATE utf8_unicode_ci,lastseen bigint(11) NOT NULL default '0',grpid bigint(10) NOT NULL default '0',nextup bigint(11) NOT NULL default '0',idle bigint(11) NOT NULL default '0',cldgroup text CHARACTER SET utf8 COLLATE utf8_unicode_ci,online int(1) NOT NULL default '0',boosttime bigint(11) NOT NULL default '0', rank bigint(11) NOT NULL default '0', platform text default NULL, nation text default NULL, version text default NULL, firstcon bigint(11) NOT NULL default '0', except int(1) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.groups (sgid bigint(10) PRIMARY KEY,sgidname text CHARACTER SET utf8 COLLATE utf8_unicode_ci,iconid bigint(10) NOT NULL default '0',icondate bigint(11) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.config (webuser text CHARACTER SET utf8 COLLATE utf8_unicode_ci,webpass text CHARACTER SET utf8 COLLATE utf8_unicode_ci,tshost text CHARACTER SET utf8 COLLATE utf8_unicode_ci,tsquery int(5) NOT NULL default '0',tsvoice int(5) NOT NULL default '0',tsuser text CHARACTER SET utf8 COLLATE utf8_unicode_ci,tspass text CHARACTER SET utf8 COLLATE utf8_unicode_ci,language text CHARACTER SET utf8 COLLATE utf8_unicode_ci,queryname text CHARACTER SET utf8 COLLATE utf8_unicode_ci,queryname2 text CHARACTER SET utf8 COLLATE utf8_unicode_ci,grouptime text CHARACTER SET utf8 COLLATE utf8_unicode_ci,resetbydbchange int(1) NOT NULL default '0',msgtouser int(1) NOT NULL default '0',upcheck int(1) NOT NULL default '0',uniqueid text CHARACTER SET utf8 COLLATE utf8_unicode_ci,updateinfotime int(8) NOT NULL default '0',currvers text CHARACTER SET utf8 COLLATE utf8_unicode_ci,substridle int(1) NOT NULL default '0',exceptuuid text CHARACTER SET utf8 COLLATE utf8_unicode_ci,exceptgroup text CHARACTER SET utf8 COLLATE utf8_unicode_ci,dateformat text CHARACTER SET utf8 COLLATE utf8_unicode_ci,showexcld int(1) NOT NULL default '0',showcolcld int(1) NOT NULL default '0',showcoluuid int(1) NOT NULL default '0',showcoldbid int(1) NOT NULL default '0',showcolot int(1) NOT NULL default '0',showcolit int(1) NOT NULL default '0',showcolat int(1) NOT NULL default '0',showcolnx int(1) NOT NULL default '0',showcolsg int(1) NOT NULL default '0',showcolrg int(1) NOT NULL default '0',showcolls int(1) NOT NULL default '0',slowmode bigint(11) NOT NULL default '0',cleanclients int(1) NOT NULL default '0',cleanperiod bigint(11) NOT NULL default '0',showhighest int(1) NOT NULL default '0',boost text default NULL,showcolas int(1) NOT NULL default '0',defchid bigint(11) NOT NULL default '0',timezone varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci,logpath varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci, advancemode int(1) NOT NULL default '0', count_access int(2) NOT NULL default '0', last_access bigint(11) NOT NULL default '0', ignoreidle bigint(11) NOT NULL default '0', exceptcid text CHARACTER SET utf8 COLLATE utf8_unicode_ci, rankupmsg text CHARACTER SET utf8 COLLATE utf8_unicode_ci, boost_mode int(1) NOT NULL default '0', newversion varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci, servernews text CHARACTER SET utf8 COLLATE utf8_unicode_ci)") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.server_usage (timestamp bigint(11) NOT NULL default '0', clients bigint(11) NOT NULL default '0', channel bigint(11) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
if($mysqlcon->exec("CREATE INDEX serverusage_timestamp ON $dbname.server_usage (timestamp)") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.user_snapshot (timestamp bigint(11) NOT NULL default '0', uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci, count bigint(11) NOT NULL default '0', idle bigint(11) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
if($mysqlcon->exec("CREATE INDEX snapshot_timestamp ON $dbname.user_snapshot (timestamp)") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.stats_server (total_user bigint(11) NOT NULL default '0', total_online_time bigint(13) NOT NULL default '0', total_online_month bigint(11) NOT NULL default '0', total_online_week bigint(11) NOT NULL default '0', total_active_time bigint(11) NOT NULL default '0', total_inactive_time bigint(11) NOT NULL default '0', country_nation_name_1 varchar(3) NOT NULL default '0', country_nation_name_2 varchar(3) NOT NULL default '0', country_nation_name_3 varchar(3) NOT NULL default '0', country_nation_name_4 varchar(3) NOT NULL default '0', country_nation_name_5 varchar(3) NOT NULL default '0', country_nation_1 bigint(11) NOT NULL default '0', country_nation_2 bigint(11) NOT NULL default '0', country_nation_3 bigint(11) NOT NULL default '0', country_nation_4 bigint(11) NOT NULL default '0', country_nation_5 bigint(11) NOT NULL default '0', country_nation_other bigint(11) NOT NULL default '0', platform_1 bigint(11) NOT NULL default '0', platform_2 bigint(11) NOT NULL default '0', platform_3 bigint(11) NOT NULL default '0', platform_4 bigint(11) NOT NULL default '0', platform_5 bigint(11) NOT NULL default '0', platform_other bigint(11) NOT NULL default '0', version_name_1 varchar(35) NOT NULL default '0', version_name_2 varchar(35) NOT NULL default '0', version_name_3 varchar(35) NOT NULL default '0', version_name_4 varchar(35) NOT NULL default '0', version_name_5 varchar(35) NOT NULL default '0', version_1 bigint(11) NOT NULL default '0', version_2 bigint(11) NOT NULL default '0', version_3 bigint(11) NOT NULL default '0', version_4 bigint(11) NOT NULL default '0', version_5 bigint(11) NOT NULL default '0', version_other bigint(11) NOT NULL default '0', server_status int(1) NOT NULL default '0', server_free_slots bigint(11) NOT NULL default '0', server_used_slots bigint(11) NOT NULL default '0', server_channel_amount bigint(11) NOT NULL default '0', server_ping bigint(11) NOT NULL default '0', server_packet_loss float (4,4), server_bytes_down bigint(11) NOT NULL default '0', server_bytes_up bigint(11) NOT NULL default '0', server_uptime bigint(11) NOT NULL default '0', server_id bigint(11) NOT NULL default '0', server_name text CHARACTER SET utf8 COLLATE utf8_unicode_ci, server_pass int(1) NOT NULL default '0', server_creation_date bigint(11) NOT NULL default '0', server_platform text CHARACTER SET utf8 COLLATE utf8_unicode_ci, server_weblist text CHARACTER SET utf8 COLLATE utf8_unicode_ci, server_version text CHARACTER SET utf8 COLLATE utf8_unicode_ci)") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.stats_user (uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY, removed int(1) NOT NULL default '0', rank bigint(11) NOT NULL default '0', total_connections bigint(11) NOT NULL default '0', count_week bigint(11) NOT NULL default '0', count_month bigint(11) NOT NULL default '0', idle_week bigint(11) NOT NULL default '0', idle_month bigint(11) NOT NULL default '0', achiev_count bigint(11) NOT NULL default '0', achiev_time bigint(11) NOT NULL default '0', achiev_connects bigint(11) NOT NULL default '0', achiev_battles bigint(11) NOT NULL default '0', achiev_time_perc int(3) NOT NULL default '0', achiev_connects_perc int(3) NOT NULL default '0', achiev_battles_perc int(3) NOT NULL default '0', battles_total bigint(11) NOT NULL default '0', battles_won bigint(11) NOT NULL default '0', battles_lost bigint(11) NOT NULL default '0', client_description text CHARACTER SET utf8 COLLATE utf8_unicode_ci, base64hash varchar(58) CHARACTER SET utf8 COLLATE utf8_unicode_ci, client_total_up bigint(15) NOT NULL default '0', client_total_down bigint(15) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.stats_server SET total_user='9999'") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.job_check (job_name varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY, timestamp bigint(11) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.job_check (job_name) VALUES ('calc_user_limit'),('calc_user_lastscan'),('check_update'),('check_clean'),('get_version')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($count == 1) {
|
||||
$err_msg = sprintf($lang['instdbsuc'], $dbname); $err_lvl = NULL;
|
||||
$install_webuser = 1;
|
||||
|
||||
}
|
||||
}
|
||||
fclose($handle);
|
||||
}
|
||||
|
||||
if (isset($_POST['install'])) {
|
||||
unset($err_msg);
|
||||
$type=$_POST['dbtype'];
|
||||
$host=$_POST['dbhost'];
|
||||
$user=$_POST['dbuser'];
|
||||
$pass=$_POST['dbpass'];
|
||||
$dbname=$_POST['dbname'];
|
||||
if ($type == 'mysql') {
|
||||
if ($_POST['dbtype'] == 'mysql') {
|
||||
$dboptions = array(
|
||||
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
|
||||
PDO::ATTR_PERSISTENT => true
|
||||
);
|
||||
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'
|
||||
);
|
||||
} else {
|
||||
$dboptions = array();
|
||||
}
|
||||
$dbserver = $type.':host='.$host.'; dbname='.$dbname;
|
||||
$dbserver2 = $type.':host='.$host;
|
||||
$dbserver = $_POST['dbtype'].':host='.$_POST['dbhost'].'; dbname='.$_POST['dbname'];
|
||||
$dbserver2 = $_POST['dbtype'].':host='.$_POST['dbhost'];
|
||||
$dbexists = 0;
|
||||
try {
|
||||
$mysqlcon = new PDO($dbserver, $user, $pass, $dboptions);
|
||||
$mysqlcon = new PDO($dbserver, $_POST['dbuser'], $_POST['dbpass'], $dboptions);
|
||||
$dbexists = 1;
|
||||
} catch (PDOException $e) {
|
||||
try {
|
||||
$mysqlcon = new PDO($dbserver2, $user, $pass, $dboptions);
|
||||
$mysqlcon = new PDO($dbserver2, $_POST['dbuser'], $_POST['dbpass'], $dboptions);
|
||||
} catch (PDOException $e) {
|
||||
$err_msg = $lang['dbconerr'].$e->getMessage(); $err_lvl = 1;
|
||||
}
|
||||
@@ -134,96 +219,16 @@ if (isset($_POST['install'])) {
|
||||
$err_lvl = 2;
|
||||
}
|
||||
|
||||
if($err_msg == NULL) {
|
||||
$newconfig='<?php
|
||||
$db[\'type\']="'.$type.'";
|
||||
$db[\'host\']="'.$host.'";
|
||||
$db[\'user\']="'.$user.'";
|
||||
$db[\'pass\']="'.$pass.'";
|
||||
$db[\'dbname\']="'.$dbname.'";
|
||||
?>';
|
||||
$handle=fopen('./other/dbconfig.php','w');
|
||||
if(!fwrite($handle,$newconfig)) {
|
||||
$err_msg = $lang['isntwicfg'];
|
||||
if(!isset($err_msg)) {
|
||||
if(isset($_POST['installchecked'])) {
|
||||
install($_POST['dbtype'], $_POST['dbhost'], $_POST['dbuser'], $_POST['dbpass'], $_POST['dbname'], $lang, $mysqlcon, $err_msg, $err_lvl, $install_webuser);
|
||||
} elseif($dbexists == 1) {
|
||||
$err_msg = sprintf($lang['insterr1'],$_POST['dbname']);
|
||||
$err_lvl = 2;
|
||||
$show_warning = 1;
|
||||
} else {
|
||||
$count = 1;
|
||||
if(($mysqlcon->exec("DROP DATABASE $dbname")) === false) { }
|
||||
|
||||
if($mysqlcon->exec("CREATE DATABASE $dbname") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.user (uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY,cldbid bigint(10) NOT NULL default '0',count bigint(11) NOT NULL default '0',ip bigint(10) NOT NULL default '0',name text CHARACTER SET utf8 COLLATE utf8_unicode_ci,lastseen bigint(11) NOT NULL default '0',grpid bigint(10) NOT NULL default '0',nextup bigint(11) NOT NULL default '0',idle bigint(11) NOT NULL default '0',cldgroup text CHARACTER SET utf8 COLLATE utf8_unicode_ci,online int(1) NOT NULL default '0',boosttime bigint(11) NOT NULL default '0', rank bigint(11) NOT NULL default '0', platform text default NULL, nation text default NULL, version text default NULL, firstcon bigint(11) NOT NULL default '0', except int(1) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.groups (sgid bigint(10) PRIMARY KEY,sgidname text CHARACTER SET utf8 COLLATE utf8_unicode_ci,iconid bigint(10) NOT NULL default '0',icondate bigint(11) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.config (webuser text CHARACTER SET utf8 COLLATE utf8_unicode_ci,webpass text CHARACTER SET utf8 COLLATE utf8_unicode_ci,tshost text CHARACTER SET utf8 COLLATE utf8_unicode_ci,tsquery int(5) NOT NULL default '0',tsvoice int(5) NOT NULL default '0',tsuser text CHARACTER SET utf8 COLLATE utf8_unicode_ci,tspass text CHARACTER SET utf8 COLLATE utf8_unicode_ci,language text CHARACTER SET utf8 COLLATE utf8_unicode_ci,queryname text CHARACTER SET utf8 COLLATE utf8_unicode_ci,queryname2 text CHARACTER SET utf8 COLLATE utf8_unicode_ci,grouptime text CHARACTER SET utf8 COLLATE utf8_unicode_ci,resetbydbchange int(1) NOT NULL default '0',msgtouser int(1) NOT NULL default '0',upcheck int(1) NOT NULL default '0',uniqueid text CHARACTER SET utf8 COLLATE utf8_unicode_ci,updateinfotime int(8) NOT NULL default '0',currvers text CHARACTER SET utf8 COLLATE utf8_unicode_ci,substridle int(1) NOT NULL default '0',exceptuuid text CHARACTER SET utf8 COLLATE utf8_unicode_ci,exceptgroup text CHARACTER SET utf8 COLLATE utf8_unicode_ci,dateformat text CHARACTER SET utf8 COLLATE utf8_unicode_ci,showexcld int(1) NOT NULL default '0',showcolcld int(1) NOT NULL default '0',showcoluuid int(1) NOT NULL default '0',showcoldbid int(1) NOT NULL default '0',showcolot int(1) NOT NULL default '0',showcolit int(1) NOT NULL default '0',showcolat int(1) NOT NULL default '0',showcolnx int(1) NOT NULL default '0',showcolsg int(1) NOT NULL default '0',showcolrg int(1) NOT NULL default '0',showcolls int(1) NOT NULL default '0',slowmode bigint(11) NOT NULL default '0',cleanclients int(1) NOT NULL default '0',cleanperiod bigint(11) NOT NULL default '0',showhighest int(1) NOT NULL default '0',boost text default NULL,showcolas int(1) NOT NULL default '0',defchid bigint(11) NOT NULL default '0',timezone varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci,logpath varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci, advancemode int(1) NOT NULL default '0', count_access int(2) NOT NULL default '0', last_access bigint(11) NOT NULL default '0', ignoreidle bigint(11) NOT NULL default '0', exceptcid text CHARACTER SET utf8 COLLATE utf8_unicode_ci, rankupmsg text CHARACTER SET utf8 COLLATE utf8_unicode_ci, boost_mode int(1) NOT NULL default '0', newversion varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci)") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.server_usage (timestamp bigint(11) NOT NULL default '0', clients bigint(11) NOT NULL default '0', channel bigint(11) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
if($mysqlcon->exec("CREATE INDEX serverusage_timestamp ON $dbname.server_usage (timestamp)") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.user_snapshot (timestamp bigint(11) NOT NULL default '0', uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci, count bigint(11) NOT NULL default '0', idle bigint(11) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
if($mysqlcon->exec("CREATE INDEX snapshot_timestamp ON $dbname.user_snapshot (timestamp)") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.stats_server (total_user bigint(11) NOT NULL default '0', total_online_time bigint(13) NOT NULL default '0', total_online_month bigint(11) NOT NULL default '0', total_online_week bigint(11) NOT NULL default '0', total_active_time bigint(11) NOT NULL default '0', total_inactive_time bigint(11) NOT NULL default '0', country_nation_name_1 varchar(3) NOT NULL default '0', country_nation_name_2 varchar(3) NOT NULL default '0', country_nation_name_3 varchar(3) NOT NULL default '0', country_nation_name_4 varchar(3) NOT NULL default '0', country_nation_name_5 varchar(3) NOT NULL default '0', country_nation_1 bigint(11) NOT NULL default '0', country_nation_2 bigint(11) NOT NULL default '0', country_nation_3 bigint(11) NOT NULL default '0', country_nation_4 bigint(11) NOT NULL default '0', country_nation_5 bigint(11) NOT NULL default '0', country_nation_other bigint(11) NOT NULL default '0', platform_1 bigint(11) NOT NULL default '0', platform_2 bigint(11) NOT NULL default '0', platform_3 bigint(11) NOT NULL default '0', platform_4 bigint(11) NOT NULL default '0', platform_5 bigint(11) NOT NULL default '0', platform_other bigint(11) NOT NULL default '0', version_name_1 varchar(35) NOT NULL default '0', version_name_2 varchar(35) NOT NULL default '0', version_name_3 varchar(35) NOT NULL default '0', version_name_4 varchar(35) NOT NULL default '0', version_name_5 varchar(35) NOT NULL default '0', version_1 bigint(11) NOT NULL default '0', version_2 bigint(11) NOT NULL default '0', version_3 bigint(11) NOT NULL default '0', version_4 bigint(11) NOT NULL default '0', version_5 bigint(11) NOT NULL default '0', version_other bigint(11) NOT NULL default '0', server_status int(1) NOT NULL default '0', server_free_slots bigint(11) NOT NULL default '0', server_used_slots bigint(11) NOT NULL default '0', server_channel_amount bigint(11) NOT NULL default '0', server_ping bigint(11) NOT NULL default '0', server_packet_loss float (4,4), server_bytes_down bigint(11) NOT NULL default '0', server_bytes_up bigint(11) NOT NULL default '0', server_uptime bigint(11) NOT NULL default '0', server_id bigint(11) NOT NULL default '0', server_name text CHARACTER SET utf8 COLLATE utf8_unicode_ci, server_pass int(1) NOT NULL default '0', server_creation_date bigint(11) NOT NULL default '0', server_platform text CHARACTER SET utf8 COLLATE utf8_unicode_ci, server_weblist text CHARACTER SET utf8 COLLATE utf8_unicode_ci, server_version text CHARACTER SET utf8 COLLATE utf8_unicode_ci)") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.stats_user (uuid varchar(29) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY, removed int(1) NOT NULL default '0', rank bigint(11) NOT NULL default '0', total_connections bigint(11) NOT NULL default '0', count_week bigint(11) NOT NULL default '0', count_month bigint(11) NOT NULL default '0', idle_week bigint(11) NOT NULL default '0', idle_month bigint(11) NOT NULL default '0', achiev_count bigint(11) NOT NULL default '0', achiev_time bigint(11) NOT NULL default '0', achiev_connects bigint(11) NOT NULL default '0', achiev_battles bigint(11) NOT NULL default '0', achiev_time_perc int(3) NOT NULL default '0', achiev_connects_perc int(3) NOT NULL default '0', achiev_battles_perc int(3) NOT NULL default '0', battles_total bigint(11) NOT NULL default '0', battles_won bigint(11) NOT NULL default '0', battles_lost bigint(11) NOT NULL default '0', client_description text CHARACTER SET utf8 COLLATE utf8_unicode_ci, base64hash varchar(58) CHARACTER SET utf8 COLLATE utf8_unicode_ci, client_total_up bigint(15) NOT NULL default '0', client_total_down bigint(15) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.stats_server SET total_user='9999'") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.job_check (job_name varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci PRIMARY KEY, timestamp bigint(11) NOT NULL default '0')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.job_check (job_name) VALUES ('calc_user_limit'),('calc_user_lastscan'),('check_update'),('check_clean'),('get_version')") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($mysqlcon->exec("CREATE TABLE $dbname.job_log (id bigint(11) AUTO_INCREMENT PRIMARY KEY, timestamp bigint(11) NOT NULL default '0', job_name varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci, status int(1) NOT NULL default '0', err_msg text CHARACTER SET utf8 COLLATE utf8_unicode_ci, runtime float (4,4))") === false) {
|
||||
$err_msg .= $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true).'<br>'; $err_lvl = 2;
|
||||
$count++;
|
||||
}
|
||||
|
||||
if($count == 1) {
|
||||
$err_msg = sprintf($lang['instdbsuc'], $dbname); $err_lvl = NULL;
|
||||
$install_webuser = 1;
|
||||
}
|
||||
install($_POST['dbtype'], $_POST['dbhost'], $_POST['dbuser'], $_POST['dbpass'], $_POST['dbname'], $lang, $mysqlcon, $err_msg, $err_lvl, $install_webuser);
|
||||
}
|
||||
fclose($handle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -244,14 +249,14 @@ if(isset($_POST['confweb'])) {
|
||||
}
|
||||
}
|
||||
if($err_lvl != 1) {
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.config (webuser,webpass,tshost,tsquery,tsvoice,tsuser,language,queryname,queryname2,grouptime,resetbydbchange,msgtouser,upcheck,uniqueid,updateinfotime,currvers,exceptuuid,exceptgroup,dateformat,showexcld,showcolcld,showcoluuid,showcoldbid,showcolot,showcolit,showcolat,showcolnx,showcolsg,showcolrg,showcolls,slowmode,cleanclients,cleanperiod,showhighest,showcolas,defchid,timezone,logpath,ignoreidle,rankupmsg,newversion) VALUES ('$user','$pass','localhost','10011','9987','serveradmin','en','Ranksystem','RankSystem','31536000=>47,31536060=>50','1','1','1','xrTKhT/HDl4ea0WoFDQH2zOpmKg=,9odBYAU7z2E2feUz965sL0/Myom=','7200','1.1.0','xrTKhT/HDl4ea0WoFDQH2zOpmKg=','2,6','%a days, %h hours, %i mins, %s secs','1','1','1','1','1','1','1','1','1','1','1','0','1','86400','1','1','0','Europe/Berlin','$logpath','600','\\nHey, you got a rank up, cause you reached an activity of %s days, %s hours, %s minutes and %s seconds.','1.1.0')") === false) {
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.config (webuser,webpass,tshost,tsquery,tsvoice,tsuser,language,queryname,queryname2,grouptime,resetbydbchange,msgtouser,upcheck,uniqueid,updateinfotime,currvers,exceptuuid,exceptgroup,dateformat,showexcld,showcolcld,showcoluuid,showcoldbid,showcolot,showcolit,showcolat,showcolnx,showcolsg,showcolrg,showcolls,slowmode,cleanclients,cleanperiod,showhighest,showcolas,defchid,timezone,logpath,ignoreidle,rankupmsg,newversion,servernews) VALUES ('$user','$pass','localhost','10011','9987','serveradmin','en','Ranksystem','RankSystem','31536000=>47,31536060=>50','1','1','1','xrTKhT/HDl4ea0WoFDQH2zOpmKg=,9odBYAU7z2E2feUz965sL0/Myom=','7200','1.1.1','xrTKhT/HDl4ea0WoFDQH2zOpmKg=','2,6','%a days, %h hours, %i mins, %s secs','1','1','1','1','1','1','1','1','1','1','1','0','1','86400','1','1','0','Europe/Berlin','$logpath','600','\\nHey, you got a rank up, cause you reached an activity of %s days, %s hours, %s minutes and %s seconds.','1.1.1','<strong>Message</strong><br>This is an example Message.<br>Change this Message inside the webinterface.')") === false) {
|
||||
$err_msg = $lang['isntwidbmsg'].$mysqlcon->errorCode()." ".print_r($mysqlcon->errorInfo(), true); $err_lvl = 2;
|
||||
} else {
|
||||
$err_msg .= $lang['isntwiusr'].'<br><br>';
|
||||
if(!unlink('./install.php')) {
|
||||
$err_msg .= sprintf($lang['isntwidel'],"<a href=\"webinterface\\\">/webinterface/</a>");
|
||||
}
|
||||
$install_finished = 1;
|
||||
$install_finished = 1; $err_lvl = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -259,9 +264,34 @@ if(isset($_POST['confweb'])) {
|
||||
if (!isset($_POST['install']) && !isset($_POST['confweb'])) {
|
||||
unset($err_msg);
|
||||
unset($err_lvl);
|
||||
$err_msg = '';
|
||||
if(!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != "on") {
|
||||
$host = "<a href=\"https://".$_SERVER['HTTP_HOST'].rtrim(dirname($_SERVER['PHP_SELF']), '/\\')."\">";
|
||||
$err_msg = sprintf($lang['winav10'], $host,'</a>!<br>', '<br>'); $err_lvl = 2;
|
||||
}
|
||||
if(!is_writeable('./other/dbconfig.php')) {
|
||||
$err_msg = $lang['isntwicfg'];
|
||||
$err_lvl = 2;
|
||||
$err_msg .= "<br>".$lang['isntwicfg']; $err_lvl = 3;
|
||||
}
|
||||
if (substr(sprintf('%o', fileperms('./avatars/')), -4)!='0777') {
|
||||
$err_msg .= "<br>".sprintf($lang['isntwichm'],"avatars"); $err_lvl = 3;
|
||||
}
|
||||
if (substr(sprintf('%o', fileperms('./icons/')), -4)!='0777') {
|
||||
$err_msg .= "<br>".sprintf($lang['isntwichm'],"icons"); $err_lvl = 3;
|
||||
}
|
||||
if (substr(sprintf('%o', fileperms('./logs/')), -4)!='0777') {
|
||||
$err_msg .= "<br>".sprintf($lang['isntwichm'],"logs"); $err_lvl = 3;
|
||||
}
|
||||
if (!class_exists('PDO')) {
|
||||
$err_msg .= "<br>".$lang['insterr2']; $err_lvl = 3;
|
||||
}
|
||||
if (!function_exists('exec')) {
|
||||
$err_msg .= "<br>".$lang['insterr3']; $err_lvl = 3;
|
||||
}
|
||||
if(version_compare(phpversion(), '5.5.0', '<')) {
|
||||
$err_msg .= "<br>".sprintf($lang['insterr4'],phpversion()); $err_lvl = 3;
|
||||
}
|
||||
if(!isset($err_lvl)) {
|
||||
unset($err_msg);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -272,251 +302,268 @@ function error_handling($msg,$type = NULL) {
|
||||
case 2: echo '<div class="alert alert-warning alert-dismissible">'; break;
|
||||
case 3: echo '<div class="alert alert-danger alert-dismissible">'; break;
|
||||
}
|
||||
echo '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>',$msg,'</div>';
|
||||
echo '<button type="button" class="close" data-dismiss="alert" aria-label="',$lang['stnv0002'],'"><span aria-hidden="true">×</span></button>',$msg,'</div>';
|
||||
}
|
||||
|
||||
if ((!isset($_POST['install']) && !isset($_POST['confweb'])) || $err_lvl == 1 || $err_lvl == 2) {
|
||||
?>
|
||||
<div id="page-wrapper">
|
||||
<?PHP if(isset($err_msg)) error_handling($err_msg, $err_lvl); ?>
|
||||
<div class="container-fluid">
|
||||
if(isset($show_warning)) {
|
||||
$dbhost = $_POST['dbhost'];
|
||||
$dbname = $_POST['dbname'];
|
||||
$dbuser = $_POST['dbuser'];
|
||||
$dbpass = $_POST['dbpass'];
|
||||
} else {
|
||||
$dbhost = "localhost";
|
||||
$dbname = "ts3_ranksystem";
|
||||
$dbuser = "";
|
||||
$dbpass = "";
|
||||
}
|
||||
?>
|
||||
<div id="page-wrapper">
|
||||
<?PHP if(isset($err_msg)) error_handling($err_msg, $err_lvl); ?>
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h1 class="page-header">
|
||||
<?php echo $lang['wihldb']; ?>
|
||||
</h1>
|
||||
</div>
|
||||
</div>
|
||||
<form class="form-horizontal" name="install" method="POST">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h1 class="page-header">
|
||||
<?php echo $lang['wihldb']; ?>
|
||||
</h1>
|
||||
<div class="col-md-3">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbtypedesc"><?php echo $lang['isntwidbtype']; ?></label>
|
||||
<div class="col-sm-8">
|
||||
<select class="selectpicker show-tick form-control" id="basic" name="dbtype" required>
|
||||
<option disabled value=""> -- select database -- </option>
|
||||
<option data-subtext="Cubrid" value="cubrid">cubrid</option>
|
||||
<option data-subtext="FreeTDS / Microsoft SQL Server / Sybase" value="dblib">dblib</option>
|
||||
<option data-subtext="Firebird/Interbase 6" value="firebird">firebird</option>
|
||||
<option data-subtext="IBM DB2" value="ibm">ibm</option>
|
||||
<option data-subtext="IBM Informix Dynamic Server" value="informix">informix</option>
|
||||
<option data-subtext="MySQL 3.x/4.x/5.x [recommend]" value="mysql" selected>mysql (and mariadb)</option>
|
||||
<option data-subtext="Oracle Call Interface" value="oci">oci</option>
|
||||
<option data-subtext="ODBC v3 (IBM DB2, unixODBC und win32 ODBC)" value="odbc">odbc</option>
|
||||
<option data-subtext="PostgreSQL" value="pgsql">pgsql</option>
|
||||
<option data-subtext="SQLite 3 und SQLite 2" value="sqlite">sqlite</option>
|
||||
<option data-subtext="Microsoft SQL Server / SQL Azure" value="sqlsrv">sqlsrv</option>
|
||||
<option data-subtext="4D" value="4d">4d</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbhostdesc"><?php echo $lang['isntwidbhost']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="dbhost" value="<?php echo $dbhost; ?>" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbnamedesc"><?php echo $lang['isntwidbname']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="dbname" value="<?php echo $dbname; ?>" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbusrdesc"><?php echo $lang['isntwidbusr']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="dbuser" value="<?php echo $dbuser; ?>" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbpassdesc"><?php echo $lang['isntwidbpass']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="password" class="form-control" name="dbpass" value="<?php echo $dbpass; ?>" data-toggle="password" data-placement="before" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<form class="form-horizontal" name="install" method="POST">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbtypedesc"><?php echo $lang['isntwidbtype']; ?></label>
|
||||
<div class="col-sm-8">
|
||||
<select class="selectpicker show-tick form-control" id="basic" name="dbtype" required>
|
||||
<option disabled value=""> -- select database -- </option>
|
||||
<option data-subtext="Cubrid" value="cubrid">cubrid</option>
|
||||
<option data-subtext="FreeTDS / Microsoft SQL Server / Sybase" value="dblib">dblib</option>
|
||||
<option data-subtext="Firebird/Interbase 6" value="firebird">firebird</option>
|
||||
<option data-subtext="IBM DB2" value="ibm">ibm</option>
|
||||
<option data-subtext="IBM Informix Dynamic Server" value="informix">informix</option>
|
||||
<option data-subtext="MySQL 3.x/4.x/5.x [recommend]" value="mysql" selected>mysql</option>
|
||||
<option data-subtext="Oracle Call Interface" value="oci">oci</option>
|
||||
<option data-subtext="ODBC v3 (IBM DB2, unixODBC und win32 ODBC)" value="odbc">odbc</option>
|
||||
<option data-subtext="PostgreSQL" value="pgsql">pgsql</option>
|
||||
<option data-subtext="SQLite 3 und SQLite 2" value="sqlite">sqlite</option>
|
||||
<option data-subtext="Microsoft SQL Server / SQL Azure" value="sqlsrv">sqlsrv</option>
|
||||
<option data-subtext="4D" value="4d">4d</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbhostdesc"><?php echo $lang['isntwidbhost']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="dbhost" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbnamedesc"><?php echo $lang['isntwidbname']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="dbname" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbusrdesc"><?php echo $lang['isntwidbusr']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="dbuser" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbpassdesc"><?php echo $lang['isntwidbpass']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="password" class="form-control" name="dbpass" data-toggle="password" data-placement="before" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="row">
|
||||
<div class="text-center">
|
||||
<?PHP
|
||||
if(isset($err_lvl) && $err_lvl == 3) {
|
||||
echo "<button type=\"submit\" class=\"btn btn-primary\" name=\"install\" disabled>",$lang['instdb'],"</button>";
|
||||
} else {
|
||||
echo "<button type=\"submit\" class=\"btn btn-primary\" name=\"install\">",$lang['instdb'],"</button>";
|
||||
}
|
||||
if(isset($show_warning)) {
|
||||
echo '<input type="hidden" name="installchecked" value="">';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="row">
|
||||
<div class="text-center">
|
||||
<button type="submit" class="btn btn-primary" name="install"><?php echo $lang['instdb']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="isntwidbtypedesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbtype']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbtypedesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwidbhostdesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbhost']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbhostdesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwidbusrdesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbusr']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbusrdesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwidbpassdesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbpass']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbpassdesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwidbnamedesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbname']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbnamedesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwiusrdesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwiusrcr']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwiusrdesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwidbtypedesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbtype']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbtypedesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwidbhostdesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbhost']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbhostdesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwidbusrdesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbusr']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbusrdesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwidbpassdesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbpass']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbpassdesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwidbnamedesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwidbname']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwidbnamedesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="isntwiusrdesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['isntwiusrcr']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['isntwiusrdesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?PHP
|
||||
} elseif(isset($install_webuser)) {
|
||||
?>
|
||||
<div id="page-wrapper">
|
||||
<?PHP if(isset($err_msg)) error_handling($err_msg, $err_lvl); ?>
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h1 class="page-header">
|
||||
<?php echo $lang['isntwiusrh']; ?>
|
||||
</h1>
|
||||
</div>
|
||||
<div id="page-wrapper">
|
||||
<?PHP if(isset($err_msg)) error_handling($err_msg, $err_lvl); ?>
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h1 class="page-header">
|
||||
<?php echo $lang['isntwiusrh']; ?>
|
||||
</h1>
|
||||
</div>
|
||||
<form class="form-horizontal" name="confweb" method="POST">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwiusrdesc"><?php echo $lang['user']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="user" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<form class="form-horizontal" name="confweb" method="POST">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwiusrdesc"><?php echo $lang['user']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="user" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwiusrdesc"><?php echo $lang['pass']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="password" class="form-control" name="pass" data-toggle="password" data-placement="before" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwiusrdesc"><?php echo $lang['pass']; ?></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="password" class="form-control" name="pass" data-toggle="password" data-placement="before" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="row">
|
||||
<div class="text-center">
|
||||
<button type="submit" class="btn btn-primary" name="confweb"><?php echo $lang['isntwiusrcr']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="row">
|
||||
<div class="text-center">
|
||||
<button type="submit" class="btn btn-primary" name="confweb"><?php echo $lang['isntwiusrcr']; ?></button>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<?PHP
|
||||
} elseif(isset($install_finished)) {
|
||||
?>
|
||||
<div id="page-wrapper">
|
||||
<?PHP if(isset($err_msg)) error_handling($err_msg, $err_lvl); ?>
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
</div>
|
||||
<div id="page-wrapper">
|
||||
<?PHP if(isset($err_msg)) error_handling($err_msg, $err_lvl); ?>
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
42
jobs/bot.php
42
jobs/bot.php
@@ -1,5 +1,7 @@
|
||||
#!/usr/bin/php
|
||||
<?PHP
|
||||
if(isset($_SERVER['HTTP_HOST'])) exit;
|
||||
if(isset($_SERVER['REMOTE_ADDR'])) exit;
|
||||
set_time_limit(0);
|
||||
ini_set('default_charset', 'UTF-8');
|
||||
setlocale(LC_ALL, 'UTF-8');
|
||||
@@ -22,6 +24,7 @@ function enter_logfile($logpath,$timezone,$loglevel,$logtext) {
|
||||
$input = DateTime::createFromFormat('U.u', number_format(microtime(true), 6, '.', ''))->setTimeZone(new DateTimeZone($timezone))->format("Y-m-d H:i:s.u ").$loglevel.$logtext."\n";
|
||||
$loghandle = fopen($file, 'a');
|
||||
fwrite($loghandle, $input);
|
||||
fclose($loghandle);
|
||||
if (filesize($file) > 5242880) {
|
||||
fwrite($loghandle, DateTime::createFromFormat('U.u', number_format(microtime(true), 6, '.', ''))->setTimeZone(new DateTimeZone($timezone))->format("Y-m-d H:i:s.u ")." NOTICE Logfile filesie of 5 MiB reached.. Rotate logfile.\n");
|
||||
fwrite($loghandle, DateTime::createFromFormat('U.u', number_format(microtime(true), 6, '.', ''))->setTimeZone(new DateTimeZone($timezone))->format("Y-m-d H:i:s.u ")." NOTICE Restart Bot to continue with new log file...\n");
|
||||
@@ -59,15 +62,6 @@ require_once(substr(__DIR__,0,-4).'jobs/calc_userstats.php');
|
||||
require_once(substr(__DIR__,0,-4).'jobs/clean.php');
|
||||
require_once(substr(__DIR__,0,-4).'jobs/check_db.php');
|
||||
|
||||
function log_mysql($jobname,$mysqlcon,$timezone,$dbname) {
|
||||
$timestamp = time();
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.job_log (timestamp,job_name,status) VALUES ('$timestamp','$jobname','9')") === false) {
|
||||
enter_logfile($logpath,$timezone,2,print_r($mysqlcon->errorInfo()));
|
||||
} else {
|
||||
return $jobid = $mysqlcon->lastInsertId();
|
||||
}
|
||||
}
|
||||
|
||||
function check_shutdown($timezone,$logpath) {
|
||||
if(!is_file(substr(__DIR__,0,-4).'logs/pid')) {
|
||||
enter_logfile($logpath,$timezone,5,"Received signal to stop. Shutting down!\n\n");
|
||||
@@ -81,7 +75,7 @@ enter_logfile($logpath,$timezone,5," Ranksystem Version: ".$currvers);
|
||||
enter_logfile($logpath,$timezone,5,"Connect to TS3 Server (Address: \"".$ts['host']."\" Voice-Port: \"".$ts['voice']."\" Query-Port: \"".$ts['query']."\").");
|
||||
try {
|
||||
$ts3 = TeamSpeak3::factory("serverquery://" . $ts['user'] . ":" . $ts['pass'] . "@" . $ts['host'] . ":" . $ts['query'] . "/?server_port=" . $ts['voice'] . "&blocking=0");
|
||||
enter_logfile($logpath,$timezone,5," Conenction to TS3 Server established.");
|
||||
enter_logfile($logpath,$timezone,5," Connection to TS3 Server established.");
|
||||
|
||||
try {
|
||||
usleep($slowmode);
|
||||
@@ -112,14 +106,16 @@ try {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
enter_logfile($logpath,$timezone,4," No channel defined where the Ranksystem should be entered.");
|
||||
enter_logfile($logpath,$timezone,4," No channel defined where the Ranksystem Bot should be entered.");
|
||||
}
|
||||
|
||||
enter_logfile($logpath,$timezone,5,"Bot starts now his work!");
|
||||
$looptime = 1;
|
||||
usleep(5000000);
|
||||
while(1) {
|
||||
if($looptime<1) {
|
||||
$loopsleep = 1 - $looptime;
|
||||
$loopsleep = (1 - $looptime) * 1000000;
|
||||
//enter_logfile($logpath,$timezone,6," Sleep for ".(1 - $looptime)." seconds till next loop starts.");
|
||||
check_shutdown($timezone,$logpath); usleep($loopsleep);
|
||||
}
|
||||
$starttime = microtime(true);
|
||||
@@ -132,23 +128,17 @@ try {
|
||||
if($defchid != 0) {
|
||||
try { usleep($slowmode); $ts3->clientMove($whoami['client_id'],$defchid); } catch (Exception $e) {}
|
||||
}
|
||||
$jobid = log_mysql('calc_user',$mysqlcon,$timezone,$dbname);
|
||||
calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$update,$grouptime,$boostarr,$resetbydbchange,$msgtouser,$uniqueid,$updateinfotime,$currvers,$substridle,$exceptuuid,$exceptgroup,$allclients,$logpath,$rankupmsg,$ignoreidle,$exceptcid);
|
||||
calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$update,$grouptime,$boostarr,$resetbydbchange,$msgtouser,$uniqueid,$updateinfotime,$currvers,$substridle,$exceptuuid,$exceptgroup,$allclients,$logpath,$rankupmsg,$ignoreidle,$exceptcid);
|
||||
check_shutdown($timezone,$logpath); usleep($slowmode);
|
||||
$jobid = log_mysql('get_avatars',$mysqlcon,$timezone,$dbname);
|
||||
get_avatars($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$logpath);
|
||||
get_avatars($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$logpath);
|
||||
check_shutdown($timezone,$logpath); usleep($slowmode);
|
||||
$jobid = log_mysql('update_groups',$mysqlcon,$timezone,$dbname);
|
||||
update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$serverinfo,$logpath);
|
||||
update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serverinfo,$logpath);
|
||||
check_shutdown($timezone,$logpath); usleep($slowmode);
|
||||
$jobid = log_mysql('calc_serverstats',$mysqlcon,$timezone,$dbname);
|
||||
calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$serverinfo,$substridle,$grouptime,$logpath);
|
||||
calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serverinfo,$substridle,$grouptime,$logpath);
|
||||
check_shutdown($timezone,$logpath); usleep($slowmode);
|
||||
$jobid = log_mysql('calc_userstats',$mysqlcon,$timezone,$dbname);
|
||||
calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$logpath);
|
||||
calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$logpath);
|
||||
check_shutdown($timezone,$logpath); usleep($slowmode);
|
||||
$jobid = log_mysql('clean',$mysqlcon,$timezone,$dbname);
|
||||
clean($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$cleanclients,$cleanperiod,$logpath);
|
||||
clean($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$cleanclients,$cleanperiod,$logpath);
|
||||
$looptime = microtime(true) - $starttime;
|
||||
}
|
||||
}
|
||||
@@ -158,11 +148,7 @@ catch (Exception $e) {
|
||||
if(in_array($e->getCode(), $offline_status)) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.stats_server SET server_status='0'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,$lang['error'].print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
$sqlmsg .= $e->getCode() . ': ' . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
?>
|
||||
@@ -1,9 +1,6 @@
|
||||
<?PHP
|
||||
function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$serverinfo,$substridle,$grouptime,$logpath) {
|
||||
$starttime = microtime(true);
|
||||
function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serverinfo,$substridle,$grouptime,$logpath) {
|
||||
$nowtime = time();
|
||||
$sqlmsg = '';
|
||||
$sqlerr = 0;
|
||||
|
||||
$total_user = 0;
|
||||
$total_online_time = 0;
|
||||
@@ -15,8 +12,6 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
$server_channel_amount = 0;
|
||||
if(($uuids = $mysqlcon->query("SELECT uuid,count,idle,platform,nation FROM $dbname.user")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 1:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$uuids = $uuids->fetchAll();
|
||||
foreach($uuids as $uuid) {
|
||||
@@ -39,8 +34,6 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
// Duplicate users Table in snapshot Table
|
||||
if(($max_entry_usersnap = $mysqlcon->query("SELECT MAX(DISTINCT(timestamp)) AS timestamp FROM $dbname.user_snapshot")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 2:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$max_entry_usersnap = $max_entry_usersnap->fetch(PDO::FETCH_ASSOC);
|
||||
$diff_max_usersnap = $nowtime - $max_entry_usersnap['timestamp'];
|
||||
@@ -54,8 +47,6 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
if ($allinsertsnap != '') {
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.user_snapshot (timestamp, uuid, count, idle) VALUES $allinsertsnap") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 3:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -63,8 +54,6 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
$deletiontime = $nowtime - 2678400;
|
||||
if($mysqlcon->exec("DELETE FROM $dbname.user_snapshot WHERE timestamp=$deletiontime") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 4:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -81,16 +70,12 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
// Calc Values for server stats
|
||||
if(($entry_snapshot_count = $mysqlcon->query("SELECT count(DISTINCT(timestamp)) AS timestamp FROM $dbname.user_snapshot")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 5:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$entry_snapshot_count = $entry_snapshot_count->fetch(PDO::FETCH_ASSOC);
|
||||
if ($entry_snapshot_count['timestamp'] > 27) {
|
||||
// Calc total_online_week
|
||||
if(($snapshot_count_week = $mysqlcon->query("SELECT (SELECT SUM(count) FROM $dbname.user_snapshot WHERE timestamp=(SELECT MAX(s2.timestamp) AS value1 FROM (SELECT DISTINCT(timestamp) FROM $dbname.user_snapshot ORDER BY timestamp DESC LIMIT 28) AS s2, $dbname.user_snapshot AS s1 WHERE s1.timestamp=s2.timestamp)) - (SELECT SUM(count) FROM $dbname.user_snapshot WHERE timestamp=(SELECT MIN(s2.timestamp) AS value2 FROM (SELECT DISTINCT(timestamp) FROM $dbname.user_snapshot ORDER BY timestamp DESC LIMIT 28) AS s2, $dbname.user_snapshot AS s1 WHERE s1.timestamp=s2.timestamp) AND uuid IN (SELECT uuid FROM $dbname.user)) AS count")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 6:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$snapshot_count_week = $snapshot_count_week->fetch(PDO::FETCH_ASSOC);
|
||||
$total_online_week = $snapshot_count_week['count'];
|
||||
@@ -101,8 +86,6 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
// Calc total_online_month
|
||||
if(($snapshot_count_month = $mysqlcon->query("SELECT (SELECT SUM(count) FROM $dbname.user_snapshot WHERE timestamp=(SELECT MAX(s2.timestamp) AS value1 FROM (SELECT DISTINCT(timestamp) FROM $dbname.user_snapshot ORDER BY timestamp DESC LIMIT 120) AS s2, $dbname.user_snapshot AS s1 WHERE s1.timestamp=s2.timestamp)) - (SELECT SUM(count) FROM $dbname.user_snapshot WHERE timestamp=(SELECT MIN(s2.timestamp) AS value2 FROM (SELECT DISTINCT(timestamp) FROM $dbname.user_snapshot ORDER BY timestamp DESC LIMIT 120) AS s2, $dbname.user_snapshot AS s1 WHERE s1.timestamp=s2.timestamp) AND uuid IN (SELECT uuid FROM $dbname.user)) AS count")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 7:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$snapshot_count_month = $snapshot_count_month->fetch(PDO::FETCH_ASSOC);
|
||||
$total_online_month = $snapshot_count_month['count'];
|
||||
@@ -221,8 +204,6 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
|
||||
if($mysqlcon->exec("UPDATE $dbname.stats_server SET total_user='$total_user', total_online_time='$total_online_time', total_online_month='$total_online_month', total_online_week='$total_online_week', total_active_time='$total_active_time', total_inactive_time='$total_inactive_time', country_nation_name_1='$country_nation_name_1', country_nation_name_2='$country_nation_name_2', country_nation_name_3='$country_nation_name_3', country_nation_name_4='$country_nation_name_4', country_nation_name_5='$country_nation_name_5', country_nation_1='$country_nation_1', country_nation_2='$country_nation_2', country_nation_3='$country_nation_3', country_nation_4='$country_nation_4', country_nation_5='$country_nation_5', country_nation_other='$country_nation_other', platform_1='$platform_1', platform_2='$platform_2', platform_3='$platform_3', platform_4='$platform_4', platform_5='$platform_5', platform_other='$platform_other', version_name_1='$version_name_1', version_name_2='$version_name_2', version_name_3='$version_name_3', version_name_4='$version_name_4', version_name_5='$version_name_5', version_1='$version_1', version_2='$version_2', version_3='$version_3', version_4='$version_4', version_5='$version_5', version_other='$version_other', version_name_1='$version_name_1', server_status='$server_status', server_free_slots='$server_free_slots', server_used_slots='$server_used_slots', server_channel_amount='$server_channel_amount', server_ping='$server_ping', server_packet_loss='$server_packet_loss', server_bytes_down='$server_bytes_down', server_bytes_up='$server_bytes_up', server_uptime='$server_uptime', server_id='$server_id', server_name=$server_name, server_pass='$server_pass', server_creation_date='$server_creation_date', server_platform='$server_platform', server_weblist='$server_weblist', server_version='$server_version'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 8:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
|
||||
// Stats for Server Usage
|
||||
@@ -235,8 +216,6 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
if ($max_entry_serverusage['timestamp'] == 0 || $diff_max_serverusage > 898) { // every 15 mins
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.server_usage (timestamp, clients, channel) VALUES ($nowtime,$server_used_slots,$server_channel_amount)") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 10:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -244,8 +223,6 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
$upnextuptime = $nowtime - 86400;
|
||||
if(($uuidsoff = $mysqlcon->query("SELECT uuid,idle,count FROM $dbname.user WHERE online<>1 AND lastseen>$upnextuptime")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 11:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
if ($uuidsoff->rowCount() != 0) {
|
||||
$uuidsoff = $uuidsoff->fetchAll(PDO::FETCH_ASSOC);
|
||||
@@ -285,41 +262,20 @@ function calc_serverstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezon
|
||||
$allupdateuuid = substr($allupdateuuid, 0, -1);
|
||||
if ($mysqlcon->exec("UPDATE $dbname.user set nextup = CASE uuid $allupdatenextup END WHERE uuid IN ($allupdateuuid)") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 12:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
|
||||
//Calc Rank
|
||||
if($mysqlcon->exec("SET @a:=0") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 13:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
if ($substridle == 1) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.user u INNER JOIN (SELECT @a:=@a+1 nr,uuid FROM $dbname.user WHERE except!=1 ORDER BY (count - idle) DESC) s USING (uuid) SET u.rank=s.nr") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 14:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
} else {
|
||||
if($mysqlcon->exec("UPDATE $dbname.user u INNER JOIN (SELECT @a:=@a+1 nr,uuid FROM $dbname.user WHERE except!=1 ORDER BY count DESC) s USING (uuid) SET u.rank=s.nr") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 14:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
|
||||
$buildtime = microtime(true) - $starttime;
|
||||
if ($buildtime < 0) { $buildtime = 0; }
|
||||
|
||||
if ($sqlerr == 0) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='0', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 15:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
} else {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='1', err_msg='$sqlmsg', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_serverstats 16:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,15 +1,9 @@
|
||||
<?PHP
|
||||
function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$update,$grouptime,$boostarr,$resetbydbchange,$msgtouser,$uniqueid,$updateinfotime,$currvers,$substridle,$exceptuuid,$exceptgroup,$allclients,$logpath,$rankupmsg,$ignoreidle,$exceptcid) {
|
||||
$starttime = microtime(true);
|
||||
function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$update,$grouptime,$boostarr,$resetbydbchange,$msgtouser,$uniqueid,$updateinfotime,$currvers,$substridle,$exceptuuid,$exceptgroup,$allclients,$logpath,$rankupmsg,$ignoreidle,$exceptcid) {
|
||||
$nowtime = time();
|
||||
$sqlmsg = '';
|
||||
$sqlerr = 0;
|
||||
|
||||
|
||||
if(($getversion = $mysqlcon->query("SELECT * FROM $dbname.job_check WHERE job_name='get_version'")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user -3:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
} else {
|
||||
$getversion = $getversion->fetchAll();
|
||||
$updatetime = $nowtime - 43200;
|
||||
@@ -19,13 +13,9 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
restore_error_handler();
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_check SET timestamp='$nowtime' WHERE job_name='get_version'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user -2:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
if($mysqlcon->exec("UPDATE $dbname.config SET newversion='$newversion'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user -1:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -34,18 +24,14 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
$updatetime = $nowtime - $updateinfotime;
|
||||
if(($lastupdate = $mysqlcon->query("SELECT * FROM $dbname.job_check WHERE job_name='check_update'")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 0:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$lastupdate = $lastupdate->fetchAll();
|
||||
if ($lastupdate[0]['timestamp'] < $updatetime) {
|
||||
if(($getversion = $mysqlcon->query("SELECT newversion FROM $dbname.config")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 1:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$getversion = $getversion->fetchAll();
|
||||
$newversion = $getversion[0];
|
||||
$getversion = $getversion->fetch(PDO::FETCH_ASSOC);
|
||||
$newversion = $getversion['newversion'];
|
||||
if(version_compare(substr($newversion, 0, 5), substr($currvers, 0, 5), '>') && $newversion != '') {
|
||||
enter_logfile($logpath,$timezone,4,$lang['upinf']);
|
||||
foreach ($uniqueid as $clientid) {
|
||||
@@ -56,15 +42,11 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
}
|
||||
catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,4," ".sprintf($lang['upusrerr'], $clientid));
|
||||
$sqlmsg .= $e->getCode() . ': ' . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_check SET timestamp=$nowtime WHERE job_name='check_update'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 3:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -85,15 +67,11 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
if ($dbdata->rowCount() != 0) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_check SET timestamp='$nowtime' WHERE job_name='calc_user_lastscan'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 5:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
if(($dbuserdata = $mysqlcon->query("SELECT uuid,cldbid,count,grpid,nextup,idle,boosttime FROM $dbname.user")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 6:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$uuids = $dbuserdata->fetchAll();
|
||||
$uuids = $dbuserdata->fetchAll(PDO::FETCH_ASSOC);
|
||||
foreach($uuids as $uuid) {
|
||||
$sqlhis[$uuid['uuid']] = array(
|
||||
"uuid" => $uuid['uuid'],
|
||||
@@ -122,18 +100,22 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
|
||||
foreach ($allclients as $client) {
|
||||
$sumentries++;
|
||||
$cldbid = $client['client_database_id'];
|
||||
$ip = ip2long($client['connection_client_ip']);
|
||||
$name = str_replace('\\', '\\\\', htmlspecialchars($client['client_nickname'], ENT_QUOTES));
|
||||
$uid = htmlspecialchars($client['client_unique_identifier'], ENT_QUOTES);
|
||||
$cldbid = $client['client_database_id'];
|
||||
$name = $mysqlcon->quote($client['client_nickname'], ENT_QUOTES);
|
||||
$uid = htmlspecialchars($client['client_unique_identifier'], ENT_QUOTES);
|
||||
$cldgroup = $client['client_servergroups'];
|
||||
$sgroups = explode(",", $cldgroup);
|
||||
$platform=$client['client_platform'];
|
||||
$nation=$client['client_country'];
|
||||
$version=$client['client_version'];
|
||||
$firstconnect=$client['client_created'];
|
||||
$channel=$client['cid'];
|
||||
$sgroups = explode(",", $cldgroup);
|
||||
$platform = $client['client_platform'];
|
||||
$nation = $client['client_country'];
|
||||
$version = $client['client_version'];
|
||||
$firstconnect = $client['client_created'];
|
||||
$channel = $client['cid'];
|
||||
if (!in_array($uid, $yetonline) && $client['client_version'] != "ServerQuery") {
|
||||
if(strstr($client['connection_client_ip'], '[')) {
|
||||
$ip = $mysqlcon->quote(inet_pton(str_replace(array('[',']'),'',$client['connection_client_ip'])), ENT_QUOTES);
|
||||
} else {
|
||||
$ip = $mysqlcon->quote(inet_pton($client['connection_client_ip']), ENT_QUOTES);
|
||||
}
|
||||
$clientidle = floor($client['client_idle_time'] / 1000);
|
||||
if(isset($ignoreidle) && $clientidle < $ignoreidle) {
|
||||
$clientidle = 0;
|
||||
@@ -171,8 +153,6 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
}
|
||||
catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 8:".sprintf($lang['sgrprerr'], $name, $uid, $cldbid));
|
||||
$sqlmsg .= $e->getCode() . ': ' . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -220,8 +200,6 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
}
|
||||
catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 9:".sprintf($lang['sgrprerr'], $name, $uid, $cldbid));
|
||||
$sqlmsg .= $e->getCode() . ': ' . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
if (!in_array($groupid, $sgroups)) {
|
||||
@@ -232,8 +210,6 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
}
|
||||
catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 10:".sprintf($lang['sgrprerr'], $name, $uid, $cldbid));
|
||||
$sqlmsg .= $e->getCode() . ': ' . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
$grpid = $groupid;
|
||||
@@ -247,8 +223,6 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
$ts3->clientGetByUid($uid)->message(sprintf($rankupmsg, $days, $hours, $mins, $secs));
|
||||
} catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 12:".sprintf($lang['sgrprerr'], $name, $uid, $cldbid));
|
||||
$sqlmsg .= $e->getCode() . ': ' . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -261,7 +235,7 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
}
|
||||
}
|
||||
$updatedata[] = array(
|
||||
"uuid" => $uid,
|
||||
"uuid" => $mysqlcon->quote($client['client_unique_identifier'], ENT_QUOTES),
|
||||
"cldbid" => $cldbid,
|
||||
"count" => $count,
|
||||
"ip" => $ip,
|
||||
@@ -286,7 +260,7 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
}
|
||||
}
|
||||
$insertdata[] = array(
|
||||
"uuid" => $uid,
|
||||
"uuid" => $mysqlcon->quote($client['client_unique_identifier'], ENT_QUOTES),
|
||||
"cldbid" => $cldbid,
|
||||
"ip" => $ip,
|
||||
"name" => $name,
|
||||
@@ -308,21 +282,17 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
|
||||
if($mysqlcon->exec("UPDATE $dbname.user SET online='0'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 13:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
|
||||
if ($insertdata != '') {
|
||||
$allinsertdata = '';
|
||||
foreach ($insertdata as $insertarr) {
|
||||
$allinsertdata = $allinsertdata . "('" . $insertarr['uuid'] . "', '" . $insertarr['cldbid'] . "', '1', '" . $insertarr['ip'] . "', '" . $insertarr['name'] . "', '" . $insertarr['lastseen'] . "', '" . $insertarr['grpid'] . "', '" . $insertarr['nextup'] . "', '" . $insertarr['cldgroup'] . "', '" . $insertarr['platform'] . "', '" . $insertarr['nation'] . "', '" . $insertarr['version'] . "', '" . $insertarr['firstcon'] . "', '" . $insertarr['except'] . "','1'),";
|
||||
$allinsertdata = $allinsertdata . "(" . $insertarr['uuid'] . ", '" . $insertarr['cldbid'] . "', '1', " . $insertarr['ip'] . ", " . $insertarr['name'] . ", '" . $insertarr['lastseen'] . "', '" . $insertarr['grpid'] . "', '" . $insertarr['nextup'] . "', '" . $insertarr['cldgroup'] . "', '" . $insertarr['platform'] . "', '" . $insertarr['nation'] . "', '" . $insertarr['version'] . "', '" . $insertarr['firstcon'] . "', '" . $insertarr['except'] . "','1'),";
|
||||
}
|
||||
$allinsertdata = substr($allinsertdata, 0, -1);
|
||||
if ($allinsertdata != '') {
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.user (uuid, cldbid, count, ip, name, lastseen, grpid, nextup, cldgroup, platform, nation, version, firstcon, except, online) VALUES $allinsertdata") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 14:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -346,40 +316,25 @@ function calc_user($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$upda
|
||||
$allupdateversion = '';
|
||||
$allupdateexcept = '';
|
||||
foreach ($updatedata as $updatearr) {
|
||||
$allupdateuuid = $allupdateuuid . "'" . $updatearr['uuid'] . "',";
|
||||
$allupdatecldbid = $allupdatecldbid . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['cldbid'] . "' ";
|
||||
$allupdatecount = $allupdatecount . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['count'] . "' ";
|
||||
$allupdateip = $allupdateip . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['ip'] . "' ";
|
||||
$allupdatename = $allupdatename . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['name'] . "' ";
|
||||
$allupdatelastseen = $allupdatelastseen . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['lastseen'] . "' ";
|
||||
$allupdategrpid = $allupdategrpid . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['grpid'] . "' ";
|
||||
$allupdatenextup = $allupdatenextup . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['nextup'] . "' ";
|
||||
$allupdateidle = $allupdateidle . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['idle'] . "' ";
|
||||
$allupdatecldgroup = $allupdatecldgroup . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['cldgroup'] . "' ";
|
||||
$allupdateboosttime = $allupdateboosttime . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['boosttime'] . "' ";
|
||||
$allupdateplatform = $allupdateplatform . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['platform'] . "' ";
|
||||
$allupdatenation = $allupdatenation . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['nation'] . "' ";
|
||||
$allupdateversion = $allupdateversion . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['version'] . "' ";
|
||||
$allupdateexcept = $allupdateexcept . "WHEN '" . $updatearr['uuid'] . "' THEN '" . $updatearr['except'] . "' ";
|
||||
$allupdateuuid = $allupdateuuid . $updatearr['uuid'] . ",";
|
||||
$allupdatecldbid = $allupdatecldbid . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['cldbid'] . "' ";
|
||||
$allupdatecount = $allupdatecount . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['count'] . "' ";
|
||||
$allupdateip = $allupdateip . "WHEN " . $updatearr['uuid'] . " THEN " . $updatearr['ip'] . " ";
|
||||
$allupdatename = $allupdatename . "WHEN " . $updatearr['uuid'] . " THEN " . $updatearr['name'] . " ";
|
||||
$allupdatelastseen = $allupdatelastseen . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['lastseen'] . "' ";
|
||||
$allupdategrpid = $allupdategrpid . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['grpid'] . "' ";
|
||||
$allupdatenextup = $allupdatenextup . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['nextup'] . "' ";
|
||||
$allupdateidle = $allupdateidle . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['idle'] . "' ";
|
||||
$allupdatecldgroup = $allupdatecldgroup . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['cldgroup'] . "' ";
|
||||
$allupdateboosttime = $allupdateboosttime . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['boosttime'] . "' ";
|
||||
$allupdateplatform = $allupdateplatform . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['platform'] . "' ";
|
||||
$allupdatenation = $allupdatenation . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['nation'] . "' ";
|
||||
$allupdateversion = $allupdateversion . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['version'] . "' ";
|
||||
$allupdateexcept = $allupdateexcept . "WHEN " . $updatearr['uuid'] . " THEN '" . $updatearr['except'] . "' ";
|
||||
}
|
||||
$allupdateuuid = substr($allupdateuuid, 0, -1);
|
||||
if($mysqlcon->exec("UPDATE $dbname.user set cldbid = CASE uuid $allupdatecldbid END, count = CASE uuid $allupdatecount END, ip = CASE uuid $allupdateip END, name = CASE uuid $allupdatename END, lastseen = CASE uuid $allupdatelastseen END, grpid = CASE uuid $allupdategrpid END, nextup = CASE uuid $allupdatenextup END, idle = CASE uuid $allupdateidle END, cldgroup = CASE uuid $allupdatecldgroup END, boosttime = CASE uuid $allupdateboosttime END, platform = CASE uuid $allupdateplatform END, nation = CASE uuid $allupdatenation END, version = CASE uuid $allupdateversion END, except = CASE uuid $allupdateexcept END, online = 1 WHERE uuid IN ($allupdateuuid)") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 15:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
|
||||
$buildtime = microtime(true) - $starttime;
|
||||
if ($buildtime < 0) { $buildtime = 0; }
|
||||
|
||||
if ($sqlerr == 0) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='0', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 16:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
} else {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='1', err_msg='$sqlmsg', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_user 17:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,21 +1,14 @@
|
||||
<?PHP
|
||||
function calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$logpath) {
|
||||
$starttime = microtime(true);
|
||||
$sqlmsg = '';
|
||||
$sqlerr = 0;
|
||||
function calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$logpath) {
|
||||
|
||||
if(($count_user = $mysqlcon->query("SELECT count(*) as count FROM ((SELECT u.uuid FROM $dbname.user AS u INNER JOIN $dbname.stats_user As s On u.uuid=s.uuid) UNION (SELECT u.uuid FROM $dbname.user AS u LEFT JOIN $dbname.stats_user As s On u.uuid=s.uuid WHERE s.uuid IS NULL)) x")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 1:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$count_user = $count_user->fetchAll(PDO::FETCH_ASSOC);
|
||||
$total_user = $count_user[0]['count'];
|
||||
|
||||
if(($job_begin = $mysqlcon->query("SELECT timestamp FROM $dbname.job_check WHERE job_name='calc_user_limit'")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 2:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$job_begin = $job_begin->fetchAll();
|
||||
$job_begin = $job_begin[0]['timestamp'];
|
||||
@@ -29,8 +22,6 @@ function calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,
|
||||
|
||||
if(($uuids = $mysqlcon->query("(SELECT u.uuid,u.rank,u.cldbid FROM $dbname.user AS u INNER JOIN $dbname.stats_user As s On u.uuid=s.uuid) UNION (SELECT u.uuid,u.rank,u.cldbid FROM $dbname.user AS u LEFT JOIN $dbname.stats_user As s On u.uuid=s.uuid WHERE s.uuid IS NULL) ORDER BY cldbid ASC LIMIT $job_begin, 10")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 3:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$uuids = $uuids->fetchAll();
|
||||
foreach($uuids as $uuid) {
|
||||
@@ -44,14 +35,10 @@ function calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,
|
||||
// Calc Client Stats
|
||||
if ($mysqlcon->exec("UPDATE $dbname.stats_user AS t LEFT JOIN $dbname.user AS u ON t.uuid=u.uuid SET t.removed='1' WHERE u.uuid IS NULL") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 4:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
|
||||
if(($statsuserhis = $mysqlcon->query("SELECT uuid, removed FROM $dbname.stats_user")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 5:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$statsuserhis = $statsuserhis->fetchAll();
|
||||
foreach($statsuserhis as $userhis) {
|
||||
@@ -60,29 +47,21 @@ function calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,
|
||||
unset($statsuserhis);
|
||||
|
||||
if(isset($sqlhis)) {
|
||||
//enter_logfile($logpath,$timezone,2,"Update User Stats between ".$job_begin." and ".$job_end.":");
|
||||
//enter_logfile($logpath,$timezone,6,"Update User Stats between ".$job_begin." and ".$job_end.":");
|
||||
if(($userdataweekbegin = $mysqlcon->query("SELECT uuid,count,idle FROM $dbname.user_snapshot WHERE timestamp=(SELECT MIN(s2.timestamp) AS value2 FROM (SELECT DISTINCT(timestamp) FROM $dbname.user_snapshot ORDER BY timestamp DESC LIMIT 28) AS s2, $dbname.user_snapshot AS s1 WHERE s1.timestamp=s2.timestamp)")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 6:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$userdataweekbegin = $userdataweekbegin->fetchAll(PDO::FETCH_GROUP|PDO::FETCH_ASSOC);
|
||||
if(($userdataweekend = $mysqlcon->query("SELECT uuid,count,idle FROM $dbname.user_snapshot WHERE timestamp=(SELECT MAX(s2.timestamp) AS value1 FROM (SELECT DISTINCT(timestamp) FROM $dbname.user_snapshot ORDER BY timestamp DESC LIMIT 28) AS s2, $dbname.user_snapshot AS s1 WHERE s1.timestamp=s2.timestamp)")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 7:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$userdataweekend = $userdataweekend->fetchAll(PDO::FETCH_GROUP|PDO::FETCH_ASSOC);
|
||||
if(($userdatamonthbegin = $mysqlcon->query("SELECT uuid,count,idle FROM $dbname.user_snapshot WHERE timestamp=(SELECT MIN(s2.timestamp) AS value2 FROM (SELECT DISTINCT(timestamp) FROM $dbname.user_snapshot ORDER BY timestamp DESC LIMIT 120) AS s2, $dbname.user_snapshot AS s1 WHERE s1.timestamp=s2.timestamp)")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 8:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$userdatamonthbegin = $userdatamonthbegin->fetchAll(PDO::FETCH_GROUP|PDO::FETCH_ASSOC);
|
||||
if(($userdatamonthend = $mysqlcon->query("SELECT uuid,count,idle FROM $dbname.user_snapshot WHERE timestamp=(SELECT MAX(s2.timestamp) AS value1 FROM (SELECT DISTINCT(timestamp) FROM $dbname.user_snapshot ORDER BY timestamp DESC LIMIT 120) AS s2, $dbname.user_snapshot AS s1 WHERE s1.timestamp=s2.timestamp)")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 9:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$userdatamonthend = $userdatamonthend->fetchAll(PDO::FETCH_GROUP|PDO::FETCH_ASSOC);
|
||||
|
||||
@@ -100,6 +79,7 @@ function calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,
|
||||
$allinsertuserstats = '';
|
||||
|
||||
foreach ($sqlhis as $userstats) {
|
||||
check_shutdown($timezone,$logpath); usleep($slowmode);
|
||||
try {
|
||||
$clientinfo = $ts3->clientInfoDb($userstats['cldbid']);
|
||||
|
||||
@@ -134,22 +114,18 @@ function calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,
|
||||
$allinsertuserstats = $allinsertuserstats . "('" . $userstats['uuid'] . "', '" .$userstats['rank'] . "', '" . $count_week . "', '" . $count_month . "', '" . $idle_week . "', '" . $idle_month . "', '" . $clientinfo['client_totalconnections'] . "', '" . $clientinfo['client_base64HashClientUID'] . "', '" . $clientinfo['client_total_bytes_uploaded'] . "', '" . $clientinfo['client_total_bytes_downloaded'] . "', " . $clientdesc . "),";
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
//error would be, when client is missing in ts db
|
||||
//enter_logfile($logpath,$timezone,6,$e->getCode() . ': ' . $e->getMessage()."; Client (uuid: ".$userstats['cldbid']." cldbid: ".$userstats['cldbid'].") was missing in TS database, perhaps its already deleted".);
|
||||
}
|
||||
}
|
||||
|
||||
if ($mysqlcon->exec("UPDATE $dbname.job_check SET timestamp=$job_end WHERE job_name='calc_user_limit'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 11:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
|
||||
if ($allupdateuuid != '') {
|
||||
$allupdateuuid = substr($allupdateuuid, 0, -1);
|
||||
if ($mysqlcon->exec("UPDATE $dbname.stats_user set rank = CASE uuid $allupdaterank END, count_week = CASE uuid $allupdatecountw END, count_month = CASE uuid $allupdatecountm END, idle_week = CASE uuid $allupdateidlew END, idle_month = CASE uuid $allupdateidlem END, total_connections = CASE uuid $allupdatetotac END, base64hash = CASE uuid $allupdatebase64 END, client_total_up = CASE uuid $allupdatecldtup END, client_total_down = CASE uuid $allupdatecldtdo END, client_description = CASE uuid $allupdateclddes END WHERE uuid IN ($allupdateuuid)") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 12:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -157,23 +133,8 @@ function calc_userstats($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,
|
||||
$allinsertuserstats = substr($allinsertuserstats, 0, -1);
|
||||
if ($mysqlcon->exec("INSERT INTO $dbname.stats_user (uuid,rank,count_week,count_month,idle_week,idle_month,total_connections,base64hash,client_total_up,client_total_down,client_description) VALUES $allinsertuserstats") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 13:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$buildtime = microtime(true) - $starttime;
|
||||
if ($buildtime < 0) { $buildtime = 0; }
|
||||
|
||||
if ($sqlerr == 0) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='0', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 14:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
} else {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='1', err_msg='$sqlmsg', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"calc_userstats 15:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -1,6 +1,6 @@
|
||||
<?PHP
|
||||
function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
|
||||
$newversion = '1.1.0';
|
||||
$newversion = '1.1.1';
|
||||
enter_logfile($logpath,$timezone,5,"Check Ranksystem database for updates.");
|
||||
|
||||
function set_new_version($mysqlcon,$dbname,$timezone,$newversion,$logpath) {
|
||||
@@ -27,7 +27,7 @@ function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
|
||||
}
|
||||
}
|
||||
|
||||
function old_files($timezone) {
|
||||
function old_files($timezone,$logpath) {
|
||||
if(is_file(substr(__DIR__,0,-4).'install.php')) {
|
||||
if(!unlink('install.php')) {
|
||||
enter_logfile($logpath,$timezone,4,"Unnecessary file, please delete it from your webserver: install.php");
|
||||
@@ -113,11 +113,16 @@ function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
|
||||
enter_logfile($logpath,$timezone,4,"Unnecessary file, please delete it from your webserver: bootstrap/js/_bootstrap.js");
|
||||
}
|
||||
}
|
||||
if(is_file(substr(__DIR__,0,-4).'server-news')) {
|
||||
if(!unlink(substr(__DIR__,0,-4).'server-news')) {
|
||||
enter_logfile($logpath,$timezone,4,"Unnecessary file, please delete it from your webserver: server-news");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($currvers==$newversion) {
|
||||
enter_logfile($logpath,$timezone,5," No newer version detected; Database check finished.");
|
||||
old_files($timezone);
|
||||
old_files($timezone,$logpath);
|
||||
check_chmod($timezone);
|
||||
} elseif($currvers=="0.13-beta") {
|
||||
enter_logfile($logpath,$timezone,4," Update the Ranksystem Database to version 1.0.1");
|
||||
@@ -246,7 +251,7 @@ function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
|
||||
|
||||
if ($errcount == 1) {
|
||||
$currvers = set_new_version($mysqlcon,$dbname,$timezone,$newversion,$logpath);
|
||||
old_files($timezone);
|
||||
old_files($timezone,$logpath);
|
||||
check_chmod($timezone);
|
||||
} else {
|
||||
enter_logfile($logpath,$timezone,1,"An error happens due updating the Ranksystem Database!");
|
||||
@@ -254,29 +259,66 @@ function check_db($mysqlcon,$lang,$dbname,$timezone,$currvers,$logpath) {
|
||||
exit;
|
||||
}
|
||||
} else {
|
||||
enter_logfile($logpath,$timezone,4," Update the Ranksystem Database to new version...");
|
||||
if($mysqlcon->exec("CREATE INDEX serverusage_timestamp ON $dbname.server_usage (timestamp)") === false) { }
|
||||
if($mysqlcon->exec("ALTER TABLE $dbname.config ADD (advancemode int(1) NOT NULL default '0', count_access int(2) NOT NULL default '0', last_access bigint(11) NOT NULL default '0', ignoreidle bigint(11) NOT NULL default '0', exceptcid text CHARACTER SET utf8 COLLATE utf8_unicode_ci, rankupmsg text CHARACTER SET utf8 COLLATE utf8_unicode_ci, boost_mode int(1) NOT NULL default '0', newversion varchar(25) CHARACTER SET utf8 COLLATE utf8_unicode_ci)") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," Adjusted table config successfully.");
|
||||
enter_logfile($logpath,$timezone,4," [1.1.0] Adjusted table config successfully.");
|
||||
}
|
||||
if($mysqlcon->exec("UPDATE $dbname.config set ignoreidle='600', rankupmsg='\\nHey, you got a rank up, cause you reached an activity of %s days, %s hours, %s minutes and %s seconds.', newversion='1.1.0'") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," Set default values to new fields in table config.");
|
||||
if(version_compare($currvers, '1.1.0', '<')) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.config set ignoreidle='600', rankupmsg='\\nHey, you got a rank up, cause you reached an activity of %s days, %s hours, %s minutes and %s seconds.', newversion='1.1.0'") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," [1.1.0] Set default values to new fields in table config.");
|
||||
}
|
||||
}
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.job_check (job_name) VALUES ('get_version')") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," Set new values to table job_check.");
|
||||
enter_logfile($logpath,$timezone,4," [1.1.0] Set new values to table job_check.");
|
||||
}
|
||||
if(($password = $mysqlcon->query("SELECT webpass FROM $dbname.config")) === false) { }
|
||||
$password = $password->fetchAll();
|
||||
if(strlen($password[0]['webpass']) != 60) {
|
||||
$newwebpass = password_hash($password[0]['webpass'], PASSWORD_DEFAULT);
|
||||
if($mysqlcon->exec("UPDATE $dbname.config set webpass='$newwebpass'") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," Encrypted password for the webinterface and wrote hash to database.");
|
||||
enter_logfile($logpath,$timezone,4," [1.1.0] Encrypted password for the webinterface and wrote hash to database.");
|
||||
}
|
||||
}
|
||||
if($mysqlcon->exec("ALTER TABLE $dbname.config DROP COLUMN showexgrp, DROP COLUMN showgen, DROP COLUMN bgcolor, DROP COLUMN hdcolor, DROP COLUMN txcolor, DROP COLUMN hvcolor, DROP COLUMN ifcolor, DROP COLUMN wncolor, DROP COLUMN sccolor") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," Delete old configs, which are no more needed.");
|
||||
enter_logfile($logpath,$timezone,4," [1.1.0] Delete old configs, which are no more needed.");
|
||||
}
|
||||
if(version_compare($currvers, '1.1.0', '<=')) {
|
||||
if($mysqlcon->exec("ALTER TABLE $dbname.user CHANGE ip clientip bigint(11) NOT NULL default '0'") === false) { }
|
||||
if($mysqlcon->exec("ALTER TABLE $dbname.user ADD ip VARBINARY(16) DEFAULT NULL") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," [1.1.1] Adjusted table user successfully.");
|
||||
}
|
||||
if(($dbuserdata = $mysqlcon->query("SELECT uuid,clientip FROM $dbname.user")) === false) { }
|
||||
$uuids = $dbuserdata->fetchAll();
|
||||
foreach($uuids as $uuid) {
|
||||
$sqlhis[$uuid['uuid']] = array(
|
||||
"uuid" => $uuid['uuid'],
|
||||
"ip" => $mysqlcon->quote(inet_pton(long2ip($uuid['clientip'])), ENT_QUOTES)
|
||||
);
|
||||
}
|
||||
foreach ($sqlhis as $updatearr) {
|
||||
$allupdateuuid = $allupdateuuid . "'" . $updatearr['uuid'] . "',";
|
||||
$allupdateip = $allupdateip . "WHEN '" . $updatearr['uuid'] . "' THEN " . $updatearr['ip'] . " ";
|
||||
}
|
||||
$allupdateuuid = substr($allupdateuuid, 0, -1);
|
||||
if($mysqlcon->exec("UPDATE $dbname.user set ip = CASE uuid $allupdateip END WHERE uuid IN ($allupdateuuid)") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," [1.1.1] Converted client IP successfully for IPv6 support.");
|
||||
}
|
||||
if($mysqlcon->exec("ALTER TABLE $dbname.user DROP COLUMN clientip") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," [1.1.1] Delete unconverted IP(v4), which are no more needed.");
|
||||
}
|
||||
if($mysqlcon->exec("ALTER TABLE $dbname.config ADD (servernews text CHARACTER SET utf8 COLLATE utf8_unicode_ci)") === false) { } else {
|
||||
$servernews = $mysqlcon->quote(file_get_contents('../server-news'));
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.config (servernews) VALUES ($servernews)") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," [1.1.1] Adjusted table config successfully.");
|
||||
}
|
||||
}
|
||||
if($mysqlcon->exec("DROP TABLE $dbname.job_log") === false) { } else {
|
||||
enter_logfile($logpath,$timezone,4," [1.1.1] Drop table job_log, which is no more needed.");
|
||||
}
|
||||
}
|
||||
$currvers = set_new_version($mysqlcon,$dbname,$timezone,$newversion,$logpath);
|
||||
old_files($timezone);
|
||||
old_files($timezone,$logpath);
|
||||
check_chmod($timezone);
|
||||
}
|
||||
return $currvers;
|
||||
|
||||
@@ -1,23 +1,16 @@
|
||||
<?PHP
|
||||
function clean($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$cleanclients,$cleanperiod,$logpath) {
|
||||
$starttime = microtime(true);
|
||||
$sqlmsg = '';
|
||||
$sqlerr = 0;
|
||||
function clean($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$cleanclients,$cleanperiod,$logpath) {
|
||||
$count_tsuser['count'] = 0;
|
||||
$nowtime = time();
|
||||
|
||||
// clean old logs
|
||||
if($mysqlcon->query("DELETE a FROM $dbname.job_log AS a CROSS JOIN(SELECT id FROM $dbname.job_log ORDER BY id DESC LIMIT 1 OFFSET 1000) AS b WHERE b.id>a.id") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 1:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
|
||||
// clean usersnaps older then 1 month
|
||||
if($mysqlcon->query("DELETE a FROM $dbname.user_snapshot AS a CROSS JOIN(SELECT DISTINCT(timestamp) FROM $dbname.user_snapshot ORDER BY timestamp DESC LIMIT 1000 OFFSET 121) AS b WHERE a.timestamp=b.timestamp") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 2:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
enter_logfile($logpath,$timezone,2,"clean 2.1:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
|
||||
// clean old server usage - older then a year
|
||||
if($mysqlcon->query("DELETE FROM $dbname.server_usage WHERE timestamp < (UNIX_TIMESTAMP() - 31536000)") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 2.2:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
|
||||
// clean old clients out of the database
|
||||
@@ -25,18 +18,14 @@ function clean($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$cleancli
|
||||
$cleantime = $nowtime - $cleanperiod;
|
||||
if(($lastclean = $mysqlcon->query("SELECT * FROM $dbname.job_check WHERE job_name='check_clean'")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 3:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$lastclean = $lastclean->fetchAll();
|
||||
if(($dbuserdata = $mysqlcon->query("SELECT uuid FROM $dbname.user")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 4:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
$countrs = $dbuserdata->rowCount();
|
||||
$uuids = $dbuserdata->fetchAll();
|
||||
if ($lastclean[0]['timestamp'] < $cleantime) {
|
||||
if(($dbuserdata = $mysqlcon->query("SELECT uuid FROM $dbname.user")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 4:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
$countrs = $dbuserdata->rowCount();
|
||||
$uuids = $dbuserdata->fetchAll();
|
||||
enter_logfile($logpath,$timezone,4,$lang['clean']);
|
||||
$start=0;
|
||||
$break=200;
|
||||
@@ -81,14 +70,10 @@ function clean($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$cleancli
|
||||
if ($alldeldata != '') {
|
||||
if($mysqlcon->exec("DELETE FROM $dbname.user WHERE uuid IN $alldeldata") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 5:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
} else {
|
||||
enter_logfile($logpath,$timezone,4," ".sprintf($lang['cleandel'], $countdel));
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_check SET timestamp='$nowtime' WHERE job_name='check_clean'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 6:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -96,24 +81,9 @@ function clean($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$cleancli
|
||||
enter_logfile($logpath,$timezone,4," ".$lang['cleanno']);
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_check SET timestamp='$nowtime' WHERE job_name='check_clean'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 7:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$buildtime = microtime(true) - $starttime;
|
||||
if ($buildtime < 0) { $buildtime = 0; }
|
||||
|
||||
if ($sqlerr == 0) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='0', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 8:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
} else {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='1', err_msg='$sqlmsg', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"clean 9:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -1,8 +1,5 @@
|
||||
<?PHP
|
||||
function get_avatars($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$logpath) {
|
||||
$starttime = microtime(true);
|
||||
$sqlmsg = '';
|
||||
$sqlerr = 0;
|
||||
function get_avatars($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$logpath) {
|
||||
$count = 0;
|
||||
|
||||
try {
|
||||
@@ -11,8 +8,6 @@ function get_avatars($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$lo
|
||||
} catch (Exception $e) {
|
||||
if ($e->getCode() != 1281) {
|
||||
enter_logfile($logpath,$timezone,2,"get_avatars 1:".$e->getCode().': '."Error while getting avatarlist: ".$e->getMessage());
|
||||
$sqlmsg .= $e->getCode() . ': ' . "Error while getting avatarlist: " . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
$fsfilelist = opendir(substr(__DIR__,0,-4).'avatars/');
|
||||
@@ -42,25 +37,10 @@ function get_avatars($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$lo
|
||||
}
|
||||
catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,2,"get_avatars 2:".$e->getCode().': '."Error while downloading avatar: ".$e->getMessage());
|
||||
$sqlmsg .= $e->getCode() . ': ' . "Error while downloading avatar: " . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$buildtime = microtime(true) - $starttime;
|
||||
if ($buildtime < 0) { $buildtime = 0; }
|
||||
|
||||
if ($sqlerr == 0) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='0', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"get_avatars 3:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
} else {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='1', err_msg='$sqlmsg', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"get_avatars 4:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -1,8 +1,5 @@
|
||||
<?PHP
|
||||
function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$serverinfo,$logpath) {
|
||||
$starttime = microtime(true);
|
||||
$sqlmsg = '';
|
||||
$sqlerr = 0;
|
||||
function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$timezone,$serverinfo,$logpath) {
|
||||
|
||||
try {
|
||||
check_shutdown($timezone,$logpath); usleep($slowmode);
|
||||
@@ -10,8 +7,6 @@ function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$
|
||||
} catch (Exception $e) {
|
||||
if ($e->getCode() != 1281) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 1:".$e->getCode().': '."Error while getting servergrouplist: ".$e->getMessage());
|
||||
$sqlmsg .= $e->getCode() . ': ' . "Error by getting servergrouplist: " . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,14 +21,10 @@ function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$
|
||||
$ts3groups = $ts3->serverGroupList();
|
||||
} catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 2:".$e->getCode().': '."Error while getting servergrouplist: ".$e->getMessage());
|
||||
$sqlmsg .= $e->getCode() . ': ' . "Error by getting servergrouplist: " . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
|
||||
if(($dbgroups = $mysqlcon->query("SELECT * FROM $dbname.groups")) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 3:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
if ($dbgroups->rowCount() == 0) {
|
||||
$sqlhisgroup = "empty";
|
||||
@@ -64,8 +55,6 @@ function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 4:".$e->getCode().': '."Error while downloading servericon: ".$e->getMessage());
|
||||
$sqlmsg .= $e->getCode() . ': ' . "Error while downloading servericon: " . $e->getMessage();
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
if (!isset($sqlhisgroup['0'])) {
|
||||
@@ -99,18 +88,24 @@ function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$
|
||||
if($iconid > 600) {
|
||||
if (!isset($sqlhisgroup[$sgid]) || $sqlhisgroup[$sgid]['iconid'] != $iconid || $iconarr["i".$iconid] > $sqlhisgroup[$sgid]['icondate']) {
|
||||
try {
|
||||
check_shutdown($timezone,$logpath); usleep($slowmode);
|
||||
enter_logfile($logpath,$timezone,5,"Download new ServerGroupIcon for group ".$sgname." with ID: ".$sgid);
|
||||
$iconfile = $servergroup->iconDownload();
|
||||
try {
|
||||
$iconfile = $servergroup->iconDownload();
|
||||
} catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 5:".$e->getCode().': '."Error while downloading servericon: ".$e->getMessage());
|
||||
}
|
||||
if(file_put_contents(substr(dirname(__FILE__),0,-4) . "icons/" . $sgid . ".png", $iconfile) === false) {
|
||||
enter_logfile($logpath,$timezone,2,"Error while writing out the servergroup icon. Please check the permission for the folder 'icons'");
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 5:".$e->getCode().': '."Error while downloading servergroup icon: ".$e->getMessage());
|
||||
$sqlmsg .= $e->getCode() . ': ' . "Error while downloading servergroup icon: " . $e->getMessage();
|
||||
$sqlerr++;
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 6:".$e->getCode().': '."Error while downloading servergroup icon: ".$e->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
if(!isset($iconarr["i".$iconid])) {
|
||||
$iconarr["i".$iconid] = 0;
|
||||
}
|
||||
if ($sqlhisgroup != "empty") {
|
||||
foreach ($sqlhisgroup as $groups) {
|
||||
if ($groups['sgid'] == $sgid) {
|
||||
@@ -120,7 +115,7 @@ function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$
|
||||
"sgidname" => $sgname,
|
||||
"iconid" => $iconid,
|
||||
"icon" => $iconfile,
|
||||
"icondate" => $iconarr["i".$iconid]
|
||||
"icondate" => $groups['icondate']
|
||||
);
|
||||
break;
|
||||
}
|
||||
@@ -148,7 +143,7 @@ function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$
|
||||
if (isset($insertgroups)) {
|
||||
$allinsertdata = '';
|
||||
foreach ($insertgroups as $insertarr) {
|
||||
if( $insertarr['iconid'] == 0) {
|
||||
if( $insertarr['iconid'] == 0 || $insertarr['icondate'] == null || $insertarr['icondate'] == 0) {
|
||||
//enter_logfile($logpath,$timezone,6,"IconID is 0 for (servergroup) ".$insertarr['sgidname']." (".$insertarr['sgid'].")");
|
||||
continue;
|
||||
}
|
||||
@@ -157,9 +152,7 @@ function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$
|
||||
$allinsertdata = substr($allinsertdata, 0, -1);
|
||||
if ($allinsertdata != '') {
|
||||
if($mysqlcon->exec("INSERT INTO $dbname.groups (sgid, sgidname, iconid, icondate) VALUES $allinsertdata") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 6:".$allinsertdata.print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 7:".$allinsertdata.print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -177,9 +170,7 @@ function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$
|
||||
}
|
||||
$allsgids = substr($allsgids, 0, -1);
|
||||
if($mysqlcon->exec("UPDATE $dbname.groups set sgidname = CASE sgid $allupdatesgid END, iconid = CASE sgid $allupdateiconid END, icondate = CASE sgid $allupdatedate END WHERE sgid IN ($allsgids)") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 7:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 8:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -193,24 +184,9 @@ function update_groups($ts3,$mysqlcon,$lang,$dbname,$slowmode,$jobid,$timezone,$
|
||||
|
||||
if(isset($delsgroupids)) {
|
||||
$delsgroupids = substr($delsgroupids, 0, -1);
|
||||
if($mysqlcon->exec("DELETE FROM groups WHERE sgid IN ($delsgroupids)") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 8:".print_r($mysqlcon->errorInfo()));
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$sqlerr++;
|
||||
}
|
||||
}
|
||||
|
||||
$buildtime = microtime(true) - $starttime;
|
||||
if ($buildtime < 0) { $buildtime = 0; }
|
||||
|
||||
if ($sqlerr == 0) {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='0', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
if($mysqlcon->exec("DELETE FROM $dbname.groups WHERE sgid IN ($delsgroupids)") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 9:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
} else {
|
||||
if($mysqlcon->exec("UPDATE $dbname.job_log SET status='1', err_msg='$sqlmsg', runtime='$buildtime' WHERE id='$jobid'") === false) {
|
||||
enter_logfile($logpath,$timezone,2,"update_groups 10:".print_r($mysqlcon->errorInfo()));
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
@@ -1,245 +1,248 @@
|
||||
<?PHP
|
||||
$lang = array();
|
||||
$lang['adduser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is unknown -> added to the Ranksystem now.";
|
||||
$lang['changedbid'] = "User %s (unique Client-ID: %s) got a new TeamSpeak Client-database-ID (%s). Update the old Client-database-ID (%s) and reset collected times!";
|
||||
$lang['crawl'] = "البحث عن المستخدمين المتواجدين وحساب التفاعل";
|
||||
$lang['clean'] = "البحث عن المستخدمين الذين من المفروض حذفهم";
|
||||
$lang['cleanc'] = "تصفية المستخدمين";
|
||||
$lang['cleancdesc'] = "With this function the old clients in the Ranksystem get deleted.<br><br>To this end, the Ranksystem sychronized with the TeamSpeak database. Clients, which do not exist in TeamSpeak, will be deleted from the Ranksystem.<br><br>This function is only enabled when the 'Slowmode' is deactivated!<br><br><br>For automatic adjustment of the TeamSpeak database the ClientCleaner can be used:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "There were %s clients deleted out of the Ranksystem database, cause they were no longer existing in the TeamSpeak database.";
|
||||
$lang['cleanno'] = "ليس هناك شيء ليتم مسحه ";
|
||||
$lang['cleanp'] = "مدى التصفية";
|
||||
$lang['cleanpdesc'] = "Set a time that has to elapse before the 'clean clients' runs next.<br><br>Set a time in seconds.<br><br>Recommended is once a day, cause the client cleaning needs much time for bigger databases.";
|
||||
$lang['cleanrs'] = "المستخدمون في قاعدة باينات نظام الرتب: %s";
|
||||
$lang['cleants'] = "المستخدمين الذين تم العثور عليهم في قاعدة بايانات التيم سبيك: %s (of %s)";
|
||||
$lang['days'] = "<small>المئوية</small> %d";
|
||||
$lang['dbconerr'] = "فشل الدخول الى قاعدة بيانات قاعدة بيانات: ";
|
||||
$lang['delcldgrpif'] = "خلل عند حذف المعلومات من مجموعات السيرفر: %s";
|
||||
$lang['delcldgrpsc'] = "Knowledge about servergroups for %s User successfully removed.";
|
||||
$lang['delclientsif'] = "%s Clients deleted out of the Ranksystem database!";
|
||||
$lang['delclientssc'] = "%s Clients successfully deleted out of the Ranksystem database!";
|
||||
$lang['errlogin'] = "اسم المستخدم او كلمة المرور خاطئة! حاول مجددا...";
|
||||
<?PHP
|
||||
$lang= array();
|
||||
$lang['adduser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is unknown -> added to the Ranksystem now.";
|
||||
$lang['changedbid'] = "User %s (unique Client-ID: %s) got a new TeamSpeak Client-database-ID (%s). Update the old Client-database-ID (%s) and reset collected times!";
|
||||
$lang['crawl'] = "البحث عن المستخدمين المتواجدين وحساب التفاعل";
|
||||
$lang['clean'] = "البحث عن المستخدمين الذين من المفروض حذفهم";
|
||||
$lang['cleanc'] = "تصفية المستخدمين";
|
||||
$lang['cleancdesc'] = "With this function the old clients in the Ranksystem get deleted.<br><br>To this end, the Ranksystem sychronized with the TeamSpeak database. Clients, which do not exist in TeamSpeak, will be deleted from the Ranksystem.<br><br>This function is only enabled when the 'Slowmode' is deactivated!<br><br><br>For automatic adjustment of the TeamSpeak database the ClientCleaner can be used:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "There were %s clients deleted out of the Ranksystem database, cause they were no longer existing in the TeamSpeak database.";
|
||||
$lang['cleanno'] = "ليس هناك شيء ليتم مسحه ";
|
||||
$lang['cleanp'] = "مدى التصفية";
|
||||
$lang['cleanpdesc'] = "Set a time that has to elapse before the 'clean clients' runs next.<br><br>Set a time in seconds.<br><br>Recommended is once a day, cause the client cleaning needs much time for bigger databases.";
|
||||
$lang['cleanrs'] = "المستخدمون في قاعدة باينات نظام الرتب: %s";
|
||||
$lang['cleants'] = "المستخدمين الذين تم العثور عليهم في قاعدة بايانات التيم سبيك: %s (of %s)";
|
||||
$lang['days'] = "<small>يوم</small> %d";
|
||||
$lang['dbconerr'] = "فشل الدخول الى قاعدة بيانات قاعدة بيانات: ";
|
||||
$lang['delcldgrpif'] = "خلل عند حذف المعلومات من مجموعات السيرفر: %s";
|
||||
$lang['delcldgrpsc'] = "Knowledge about servergroups for %s User successfully removed.";
|
||||
$lang['delclientsif'] = "%s Clients deleted out of the Ranksystem database!";
|
||||
$lang['delclientssc'] = "%s Clients successfully deleted out of the Ranksystem database!";
|
||||
$lang['errlogin'] = "اسم المستخدم او كلمة المرور خاطئة! حاول مجددا...";
|
||||
$lang['errlogin2'] = "Brute force protection: Try it again in %s seconds!";
|
||||
$lang['errlogin3'] = "Brute force protection: To much misstakes. Banned for 300 Seconds!";
|
||||
$lang['error'] = "خلل ";
|
||||
$lang['errremgrp'] = "Error while removing user with unique Client-ID %s out of the servergroup with servergroup-database-ID %s!";
|
||||
$lang['errremdb'] = "Error while removing user with unique Client-ID %s out of the Ranksystem database!";
|
||||
$lang['errsel'] = "Error while choosing the selections with<br>selected client: %s<br>option 'delete clients': %s<br>option 'sum. online time': %s";
|
||||
$lang['errukwn'] = "حدث خلل غير معروف!";
|
||||
$lang['errupcount'] = "Error while renewing the summary online time of %s by user with the unique Client-ID %s";
|
||||
$lang['highest'] = "تم الوصول الى اعلى رتبة";
|
||||
$lang['error'] = "خلل ";
|
||||
$lang['errremgrp'] = "Error while removing user with unique Client-ID %s out of the servergroup with servergroup-database-ID %s!";
|
||||
$lang['errremdb'] = "Error while removing user with unique Client-ID %s out of the Ranksystem database!";
|
||||
$lang['errsel'] = "Error while choosing the selections with<br>selected client: %s<br>option 'delete clients': %s<br>option 'sum. online time': %s";
|
||||
$lang['errukwn'] = "حدث خلل غير معروف!";
|
||||
$lang['errupcount'] = "Error while renewing the summary online time of %s by user with the unique Client-ID %s";
|
||||
$lang['highest'] = "تم الوصول الى اعلى رتبة";
|
||||
$lang['install'] = "Installation";
|
||||
$lang['instdb'] = "تنصيب قاعدة البيانات";
|
||||
$lang['instdbsuc'] = "قاعدة البيانات %s أنشات بنجاح.";
|
||||
$lang['isntwicfg'] = "Can't save the database configuration! Please edit the 'other/dbconfig.php' with a chmod 0777 and try again after.";
|
||||
$lang['instdb'] = "تنصيب قاعدة البيانات";
|
||||
$lang['instdbsuc'] = "قاعدة البيانات %s أنشات بنجاح.";
|
||||
$lang['insterr1'] = "ATTENTION: You are trying to install the Ranksystem, but there is already existing a database with the name \"%s\".<br>Due installation this database will be dropped!<br>Be sure you want this. If not, please choose an other database name.";
|
||||
$lang['insterr2'] = "PDO is needed but seems not installed. Install <a href=\"http://php.net/manual/de/pdo.installation.php\" target=\"_blank\">PDO</a> and try it again!";
|
||||
$lang['insterr3'] = "PHP exec function need to be enabled but seems to be disabled. Please enable the PHP <a href=\http://php.net/manual/de/function.exec.php\" target=\"_blank\">exec</a> function and try it again!";
|
||||
$lang['insterr4'] = "Your PHP version (%s) is below 5.5.0. Update your PHP and try it again!";
|
||||
$lang['isntwicfg'] = "Can't save the database configuration! Please edit the 'other/dbconfig.php' with a chmod 0777 (on windows 'full access') and try again after.";
|
||||
$lang['isntwicfg2'] = "Configurate Webinterface";
|
||||
$lang['isntwichm'] = "Write Permissions failed on folder \"%s\". Please give them a chmod 777 and try to start the Ranksystem again.";
|
||||
$lang['isntwidbhost'] = "DB Hostaddress:";
|
||||
$lang['isntwidbhostdesc'] = "عنوان خادم قاعدة البيانات<br>(IP or DNS)";
|
||||
$lang['isntwidbmsg'] = "خلل في قاعدة البيانات: ";
|
||||
$lang['isntwidbname'] = "DB Name:";
|
||||
$lang['isntwidbnamedesc'] = "اسم قاعدة البيانات";
|
||||
$lang['isntwidbpass'] = "DB Password:";
|
||||
$lang['isntwidbpassdesc'] = "كلمة مرور قاعدة البيانات";
|
||||
$lang['isntwidbtype'] = "DB Type:";
|
||||
$lang['isntwidbtypedesc'] = "Database type<br><br>You have to install the needed PDO Driver.<br>For more informations have look at the requirements on http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "DB User:";
|
||||
$lang['isntwidbusrdesc'] = "User to access the database";
|
||||
$lang['isntwidel'] = "Please delete the file 'install.php' from your webserver and open the %s to configure the Ranksystem!";
|
||||
$lang['isntwiusr'] = "المستخدم للوحة التحكم انشئ بنجاح";
|
||||
$lang['isntwiusrcr'] = "Create Webinterface-User";
|
||||
$lang['isntwiusrdesc'] = "ادخل الاسم وكلمة المرور للدخول الى لوحة التحكم . بإستخدام لوحة التحكم يمكنك التعديل على نظام الرتب";
|
||||
$lang['isntwiusrh'] = "Access - Webinterface";
|
||||
$lang['listacsg'] = "actual servergroup";
|
||||
$lang['listcldbid'] = "Client-database-ID";
|
||||
$lang['listexgrp'] = "Will not conside for the Ranksystem (servergroup exception).";
|
||||
$lang['listexuid'] = "Will not conside for the Ranksystem (client exception).";
|
||||
$lang['listip'] = "IP address";
|
||||
$lang['listnick'] = "اسم المستخدم";
|
||||
$lang['listnxsg'] = "الرتبة التالية";
|
||||
$lang['listnxup'] = "الترفيع التالي";
|
||||
$lang['listrank'] = "رتبة";
|
||||
$lang['listseen'] = "اخر ظهور";
|
||||
$lang['listsuma'] = "sum. وقت التفاعل";
|
||||
$lang['listsumi'] = "sum. وقت عدم التواجد";
|
||||
$lang['listsumo'] = "sum. وقت التواجد";
|
||||
$lang['listuid'] = "unique Client-ID";
|
||||
$lang['login'] = "Login";
|
||||
$lang['nocount'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is a query-user or is several times online (only first connection counts) -> this will not count!";
|
||||
$lang['noentry'] = "لم يتم العثور على اي مدخلات";
|
||||
$lang['pass'] = "كلمة المرور";
|
||||
$lang['queryname'] = "اسم البوت الاول قيد الاستخدام جاري المحاولة باسم البوت الثاني";
|
||||
$lang['sccrmcld'] = "User with unique Client-ID %s successfull removed from the Ranksystem database.";
|
||||
$lang['sccupcount'] = "User with the unique Client-ID %s successfull overwritten with a summary online time of %s.";
|
||||
$lang['setontime'] = "sum. online time";
|
||||
$lang['setontimedesc'] = "Enter a new summary online time, which should be set to the previous selected clients. With this the old summary online gets overwritten.<br><br>The entered summary online time will be considered for the rank up.";
|
||||
$lang['sgrpadd'] = "Grant servergroup %s to user %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['sgrprerr'] = "It happened a problem with the servergroup of the user %s (unique Client-ID: %s; Client-database-ID %s)!";
|
||||
$lang['sgrprm'] = "تم حذف مجموعة السيرفر %s من المستخدم %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['stix0001'] = "حالة السيرفر";
|
||||
$lang['stix0002'] = "مجموع المستخدمين";
|
||||
$lang['stix0003'] = "عرض التفاصيل";
|
||||
$lang['stix0004'] = "مجموع وقت التواجد لكل المستخدمين";
|
||||
$lang['stix0005'] = "اضهار الاول في كل الاوقات";
|
||||
$lang['stix0006'] = "اضهار الاول لهذا الشهر";
|
||||
$lang['stix0007'] = "اضهار الاول لهذا الاسبوع";
|
||||
$lang['stix0008'] = "مدة استعمال السيرفر";
|
||||
$lang['stix0009'] = "في اخر 7 ايام";
|
||||
$lang['stix0010'] = "في اخر 30 يوم";
|
||||
$lang['stix0011'] = "في اخر 24 ساعة";
|
||||
$lang['stix0012'] = "حدد المدة";
|
||||
$lang['stix0013'] = "قبل يوم";
|
||||
$lang['stix0014'] = "قبل اسبوع";
|
||||
$lang['stix0015'] = "قبل شهر";
|
||||
$lang['stix0016'] = "Active / inactive time (of all clients)";
|
||||
$lang['stix0017'] = "الاصدارات (كل المستخدمين)";
|
||||
$lang['stix0018'] = "القوميات (لكل المستخدمين)";
|
||||
$lang['stix0019'] = "Platforms (of all clients)";
|
||||
$lang['stix0020'] = "Current statistics";
|
||||
$lang['stix0023'] = "حالة السيرفر";
|
||||
$lang['stix0024'] = "متواجد";
|
||||
$lang['stix0025'] = "غير متواجد";
|
||||
$lang['stix0026'] = " (Online / Max)";
|
||||
$lang['stix0027'] = "عدد القنوات";
|
||||
$lang['stix0028'] = "Average server ping";
|
||||
$lang['stix0029'] = "Total bytes received";
|
||||
$lang['stix0030'] = "Total bytes sent";
|
||||
$lang['stix0031'] = "وقت عمل السيرفر";
|
||||
$lang['stix0032'] = "قبل ايقاف التشغيل:";
|
||||
$lang['stix0033'] = "Days <span id=\"days\">00</span>, Hours <span id=\"hours\">00</span>, Mins <span id=\"minutes\">00</span>, Secs <span id=\"seconds\">00</span>";
|
||||
$lang['stix0034'] = "Average packet loss";
|
||||
$lang['stix0035'] = "Overall statistics";
|
||||
$lang['stix0036'] = "اسم الخادم";
|
||||
$lang['stix0037'] = "عنوان الخادم (Host Address : Port)";
|
||||
$lang['stix0038'] = "كلمة مرور الخادم";
|
||||
$lang['stix0039'] = "لا (الخادم عام)";
|
||||
$lang['stix0040'] = "نعم (الخادم خاص)";
|
||||
$lang['stix0041'] = "Server ID";
|
||||
$lang['stix0042'] = "Server platform";
|
||||
$lang['stix0043'] = "اصدار السيرفر";
|
||||
$lang['stix0044'] = "تاريخ انشاء الخادم (يوم/شهر/سنة)";
|
||||
$lang['stix0045'] = "ابلاغ الى جدو السيرفر";
|
||||
$lang['stix0046'] = "مفعل";
|
||||
$lang['stix0047'] = "غير مفعل";
|
||||
$lang['stix0048'] = "عدد غير كافي من المعلومات حتى الان";
|
||||
$lang['stix0049'] = "وقت التواجد لكل المستخدمين / شهر";
|
||||
$lang['stix0050'] = "وقت التواجد لكل المستخدمين / اسبوع";
|
||||
$lang['stix0051'] = "لقد فشل التيم سبيك لذا لن يكون هناك عملية انشاء";
|
||||
$lang['stmy0001'] = "حالتي";
|
||||
$lang['stmy0002'] = "رتبة";
|
||||
$lang['stmy0003'] = "Database ID:";
|
||||
$lang['stmy0004'] = "Unique ID:";
|
||||
$lang['stmy0005'] = "عدد مرات الدخول الى السيرفر:";
|
||||
$lang['stmy0006'] = "تاريخ بدء الحالة:";
|
||||
$lang['stmy0007'] = "المجموع الكلي لوقت التواجد:";
|
||||
$lang['stmy0008'] = "وقت التواجد للايام الـ7 الاخيرة:";
|
||||
$lang['stmy0009'] = "وقت التواجد للايام الـ30 الاخيرة:";
|
||||
$lang['stmy0010'] = "اكملت الانجازات:";
|
||||
$lang['stmy0011'] = "Time achievement progress";
|
||||
$lang['stmy0012'] = "Time: Legendary";
|
||||
$lang['stmy0013'] = "ساعات %s لانه لديك وقت تواجد";
|
||||
$lang['stmy0014'] = "Progress completed";
|
||||
$lang['stmy0015'] = "Time: Gold";
|
||||
$lang['stmy0016'] = "Completed for Legendary %";
|
||||
$lang['stmy0017'] = "Time: Silver";
|
||||
$lang['stmy0018'] = "Completed for Gold %";
|
||||
$lang['stmy0019'] = "Time: Bronze";
|
||||
$lang['stmy0020'] = "Completed for Silver %";
|
||||
$lang['stmy0021'] = "Time: Unranked";
|
||||
$lang['stmy0022'] = "Completed for Bronze %";
|
||||
$lang['stmy0023'] = "Connection achievement progress";
|
||||
$lang['stmy0024'] = "Connects: اسطوري";
|
||||
$lang['stmy0025'] = "مرات الى سيرفر التيم سبيك %s لانك قمت بالدخول";
|
||||
$lang['stmy0026'] = "Connects: ذهبي";
|
||||
$lang['stmy0027'] = "Connects: فضي";
|
||||
$lang['stmy0028'] = "Connects: برونزي";
|
||||
$lang['stmy0029'] = "Connects: لايوجد رتبة";
|
||||
$lang['stmy0030'] = "Progress next servergroup";
|
||||
$lang['stnv0001'] = "اخبار الخادم";
|
||||
$lang['stnv0002'] = "اغلاق";
|
||||
$lang['stnv0003'] = "انعاش معلومات المستخدم";
|
||||
$lang['stnv0004'] = "Only use this refresh, when your TS3 information got changed, such as your TS3 username";
|
||||
$lang['stnv0005'] = "يعمل عندما تكون داخل سيرفر الـتيمسبيك في نفس الوقت";
|
||||
$lang['stnv0006'] = "إنعاش";
|
||||
$lang['stnv0007'] = "منطقة النزال - مضمون الصفحة";
|
||||
$lang['stnv0008'] = "يمكنك تحدي المستخدمين الاخرين في معركة بين اثنين او بين فريقين";
|
||||
$lang['stnv0009'] = "في خلال المعركة سيتم حساب وقت التواجد للاعبين او للفريقين";
|
||||
$lang['stnv0010'] = "عند انتهاء المعركة المستخدم او الفريق الذي لديه اعلى وقت تواحد سيعتبر الفائز";
|
||||
$lang['stnv0011'] = "(الوقت الاعتيادي للمعركة هو 48 ساعة)";
|
||||
$lang['stnv0012'] = "المستخدم او الفريق الفائز يحصل على مبلغ يمكنه استخدامه عندما يريد";
|
||||
$lang['stnv0013'] = "سيتم اضهاره على لوحة <a href=\"my_stats.php\">My statistics</a> ";
|
||||
$lang['stnv0014'] = "( يمكن ان يكون تسريع وقت تواجد لمدة 8 ساعات, زيادة وقت التواجد 4 ساعات اضافية , الخ ";
|
||||
$lang['stnv0015'] = "يمكن استخدام هذه التسريعات للصعود على سبيل المثال فوق افضل المستخدمين للاسبوع";
|
||||
$lang['stnv0016'] = "غير متوفر";
|
||||
$lang['stnv0017'] = "You are not connected to the TS3 Server, so it can't display any data for you.";
|
||||
$lang['stnv0018'] = "Please connect to the TS3 Server and then Refresh your Session by pressing the blue Refresh Button at the top-right corner.";
|
||||
$lang['stnv0019'] = "My statistics - Page content";
|
||||
$lang['stnv0020'] = "تحتوي هذا الصفحة على مختصر لحالتك الخاصة ومجموع وقت تواجدك على السيرفر";
|
||||
$lang['stnv0021'] = "The informations are collected since the beginning of the Ranksystem, they are not since the beginning of the TeamSpeak server.";
|
||||
$lang['stnv0022'] = "This page receives its values out of a database. So the values might be delayed a bit.";
|
||||
$lang['stnv0023'] = "The sum inside of the donut charts may differ to the amount of 'Total user'. The reason is that this data weren't collected with older versions of the Ranksystem.";
|
||||
$lang['stnv0024'] = "نظام الرتب - الحالة";
|
||||
$lang['stnv0025'] = "تحديد المدخلات";
|
||||
$lang['stnv0026'] = "الكل";
|
||||
$lang['stnv0027'] = "المعلومات على هذه الصفحة قد تكون منتهية الصلاحية! يبدو ان نظام الرتب لم يعد متصلا بسيرفر التيم سبيك";
|
||||
$lang['stnv0028'] = "(انت غير متصل بسيرفر التيم سبيك!)";
|
||||
$lang['stnv0029'] = "List Rankup";
|
||||
$lang['stnv0030'] = "لغات نظام الرتب";
|
||||
$lang['stnv0031'] = "About the search field you can search for pattern in clientname, unique Client-ID and Client-database-ID.";
|
||||
$lang['stnv0032'] = "You can also use a view filter options (see below). Enter the filter also inside the search field.";
|
||||
$lang['stnv0033'] = "Combination of filter and search pattern are possible. Enter first the filter(s) followed without any sign your search pattern.";
|
||||
$lang['stnv0034'] = "Also it is possible to combine multiple filters. Enter this consecutively inside the search field.";
|
||||
$lang['stnv0035'] = "<u>Example:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Show only clients, which are excepted (client, servergroup or channel exception).";
|
||||
$lang['stnv0037'] = "Show only clients, which are not excepted.";
|
||||
$lang['stnv0038'] = "Show only clients, which are online.";
|
||||
$lang['stnv0039'] = "Show only clients, which are not online.";
|
||||
$lang['stnv0040'] = "Show only clients, which are in defined group. Represent the actuel rank/level.<br>Replace <i>GROUPID</i> with the wished servergroup ID.";
|
||||
$lang['stnv0041'] = "Show only clients, which are selected by lastseen.<br>Replace <i>OPERATOR</i> with '<' or '>' or '=' or '!='.<br>And replace <i>TIME</i> with a timestamp or date with format 'Y-m-d H-i' (example: 2016-06-18 20-25).<br>Full example: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Show only clients, which are from defined country.<br>Replace <i>TS3-COUNTRY-CODE</i> with the wished country.<br>For list of codes google for ISO 3166-1 alpha-2";
|
||||
$lang['stri0001'] = "معلومات نظام الرتب";
|
||||
$lang['stri0002'] = "ماهو نظام الرتب؟";
|
||||
$lang['stri0003'] = "A TS3 Bot, which automatically grant ranks (servergroups) to user on a TeamSpeak 3 Server for online time or online activity. It also gathers informations and statistics about the user and displays the result on this site.";
|
||||
$lang['stri0004'] = "من الذي اخترع نظام الرتب؟";
|
||||
$lang['stri0005'] = "متى تم اطلاق نظام الرتب ؟";
|
||||
$lang['stri0006'] = "اول اصدار اولي: 05/10/2014.";
|
||||
$lang['stri0007'] = "اول اصدار تجريبي: 01/02/2015.";
|
||||
$lang['stri0008'] = "يمكنك رؤية اخر اصدار على <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "كيف تم انشاء نظام الرتب ؟";
|
||||
$lang['stri0010'] = "The Ranksystem is coded in";
|
||||
$lang['stri0011'] = "It uses also the following libraries:";
|
||||
$lang['stri0012'] = "شكر خاص الى:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - for russian translation";
|
||||
$lang['stri0014'] = "Bejamin Frost - for initialisation the bootstrap design";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - for italian translation";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - for initialisation arabic translation";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - for initialisation romanian translation";
|
||||
$lang['sttw0001'] = "افضل مستخدمين";
|
||||
$lang['sttw0002'] = "لهذا الاسبوع";
|
||||
$lang['sttw0003'] = "مع %s ساعات وقت تواجد";
|
||||
$lang['sttw0004'] = "Top 10 compared";
|
||||
$lang['sttw0005'] = "Hours (Defines 100 %)";
|
||||
$lang['sttw0006'] = "%s hours (%s%)";
|
||||
$lang['sttw0007'] = "Top 10 Statistics";
|
||||
$lang['sttw0008'] = "Top 10 vs others in online time";
|
||||
$lang['sttw0009'] = "Top 10 vs others in active time";
|
||||
$lang['sttw0010'] = "Top 10 vs others in inactive time";
|
||||
$lang['sttw0011'] = "Top 10 (in hours)";
|
||||
$lang['sttw0012'] = "(in hours) Other users %s";
|
||||
$lang['sttw0013'] = "With %s hours active time";
|
||||
$lang['sttm0001'] = "لهذا الشهر";
|
||||
$lang['stta0001'] = "لكل الوقت";
|
||||
$lang['upinf'] = "يتوفر اصدار جديد من نظام الرتب; ابلغ المستخدمين في السيرفر";
|
||||
$lang['upmsg'] = "\nHey, a new version of the [B]Ranksystem[/B] is available!\n\ncurrent version: %s\n[B]new version: %s[/B]\n\nPlease check out our site for more informations [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Database update successfully executed.";
|
||||
$lang['upuser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s).";
|
||||
$lang['upuserboost'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "The unique Client-ID %s couldn't reached on the TeamSpeak!";
|
||||
$lang['upusrinf'] = "المستخدم %s المستخدمح";
|
||||
$lang['user'] = "اسم المستخدم";
|
||||
$lang['wiaction'] = "action";
|
||||
$lang['wiboost'] = "boost";
|
||||
$lang['wiboostdesc'] = "Give an user on your TeamSpeak server a servergroup (have to be created manually), which you can declare here as boost group. Define also a factor which should be used (for example 2x) and a time, how long the boost should be rated.<br>The higher the factor, the faster an user reaches the next higher rank.<br>Is the time expired, the boost servergroup get automatically removed from the concerned user. The time starts running as soon as the user gets the servergroup.<br><br>servergroup ID => factor => time (in seconds)<br><br>Each entry have to separate from next with a comma.<br><br>Example:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>On this an user in servergroup 12 get the factor 2 for the next 6000 seconds, an user in servergroup 13 get the factor 3 for 2500 seconds, and so on...";
|
||||
$lang['isntwichm'] = "Write Permissions failed on folder \"%s\". Please give them a chmod 777 (on windows 'full access') and try to start the Ranksystem again.";
|
||||
$lang['isntwidbhost'] = "DB Hostaddress:";
|
||||
$lang['isntwidbhostdesc'] = "عنوان خادم قاعدة البيانات<br>(IP or DNS)";
|
||||
$lang['isntwidbmsg'] = "خلل في قاعدة البيانات: ";
|
||||
$lang['isntwidbname'] = "DB Name:";
|
||||
$lang['isntwidbnamedesc'] = "اسم قاعدة البيانات";
|
||||
$lang['isntwidbpass'] = "DB Password:";
|
||||
$lang['isntwidbpassdesc'] = "كلمة مرور قاعدة البيانات";
|
||||
$lang['isntwidbtype'] = "DB Type:";
|
||||
$lang['isntwidbtypedesc'] = "Database type<br><br>You have to install the needed PDO Driver.<br>For more informations have look at the requirements on http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "DB User:";
|
||||
$lang['isntwidbusrdesc'] = "User to access the database";
|
||||
$lang['isntwidel'] = "Please delete the file 'install.php' from your webserver and open the %s to configure the Ranksystem!";
|
||||
$lang['isntwiusr'] = "المستخدم للوحة التحكم انشئ بنجاح";
|
||||
$lang['isntwiusrcr'] = "Create Webinterface-User";
|
||||
$lang['isntwiusrdesc'] = "ادخل الاسم وكلمة المرور للدخول الى لوحة التحكم . بإستخدام لوحة التحكم يمكنك التعديل على نظام الرتب";
|
||||
$lang['isntwiusrh'] = "Access - Webinterface";
|
||||
$lang['listacsg'] = "الرتبة الحالية";
|
||||
$lang['listcldbid'] = "Client-database-ID";
|
||||
$lang['listexcept'] = "No, cause excepted";
|
||||
$lang['listip'] = "IP address";
|
||||
$lang['listnick'] = "اسم المستخدم";
|
||||
$lang['listnxsg'] = "الرتبة التالية";
|
||||
$lang['listnxup'] = "الرتبة القادمة بعد";
|
||||
$lang['listrank'] = "رتبة";
|
||||
$lang['listseen'] = "اخر ظهور";
|
||||
$lang['listsuma'] = "وقت النشاط الكلي";
|
||||
$lang['listsumi'] = "وقت عدم النشاط الكلي";
|
||||
$lang['listsumo'] = "وقت التواجد الكلي";
|
||||
$lang['listuid'] = "unique Client-ID";
|
||||
$lang['login'] = "Login";
|
||||
$lang['nocount'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is a query-user or is several times online (only first connection counts) -> this will not count!";
|
||||
$lang['noentry'] = "لم يتم العثور على اي مدخلات";
|
||||
$lang['pass'] = "كلمة المرور";
|
||||
$lang['queryname'] = "اسم البوت الاول قيد الاستخدام جاري المحاولة باسم البوت الثاني";
|
||||
$lang['sccrmcld'] = "User with unique Client-ID %s successfull removed from the Ranksystem database.";
|
||||
$lang['sccupcount'] = "User with the unique Client-ID %s successfull overwritten with a summary online time of %s.";
|
||||
$lang['setontime'] = "sum. online time";
|
||||
$lang['setontimedesc'] = "Enter a new summary online time, which should be set to the previous selected clients. With this the old summary online gets overwritten.<br><br>The entered summary online time will be considered for the rank up.";
|
||||
$lang['sgrpadd'] = "Grant servergroup %s to user %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['sgrprerr'] = "It happened a problem with the servergroup of the user %s (unique Client-ID: %s; Client-database-ID %s)!";
|
||||
$lang['sgrprm'] = "تم حذف مجموعة السيرفر %s من المستخدم %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['stix0001'] = "حالة الخادم";
|
||||
$lang['stix0002'] = "مجموع المستخدمين";
|
||||
$lang['stix0003'] = "عرض التفاصيل";
|
||||
$lang['stix0004'] = "مجموع وقت التواجد لكل المستخدمين";
|
||||
$lang['stix0005'] = "إظهار الاول في كل الاوقات";
|
||||
$lang['stix0006'] = "إظهار الاول لهذا الشهر";
|
||||
$lang['stix0007'] = "إظهار الاول لهذا الاسبوع";
|
||||
$lang['stix0008'] = "مدة إستعمال الخادم";
|
||||
$lang['stix0009'] = "في اخر 7 ايام";
|
||||
$lang['stix0010'] = "في اخر 30 يوم";
|
||||
$lang['stix0011'] = "في اخر 24 ساعة";
|
||||
$lang['stix0012'] = "حدد المدة";
|
||||
$lang['stix0013'] = "قبل يوم";
|
||||
$lang['stix0014'] = "قبل اسبوع";
|
||||
$lang['stix0015'] = "قبل شهر";
|
||||
$lang['stix0016'] = "(وقت النشاط/وقت الخمول (لكل المستخدمين";
|
||||
$lang['stix0017'] = "(الإصدارات (لكل المستخدمين";
|
||||
$lang['stix0018'] = "(الدول (لكل المستخدمين";
|
||||
$lang['stix0019'] = "(الأنظمة (لكل المستخدمين";
|
||||
$lang['stix0020'] = "الإحصاءات الحالية";
|
||||
$lang['stix0023'] = "حالة الخادم";
|
||||
$lang['stix0024'] = "متواجد";
|
||||
$lang['stix0025'] = "غير متواجد";
|
||||
$lang['stix0026'] = "(أقصى عدد للمتصلين / المتصلين)";
|
||||
$lang['stix0027'] = "عدد القنوات";
|
||||
$lang['stix0028'] = "متوسط زمن الوصول للسيرفر";
|
||||
$lang['stix0029'] = "مجموع البيانات المتلقيه";
|
||||
$lang['stix0030'] = "مجموع البيانات المرسلة";
|
||||
$lang['stix0031'] = "وقت عمل الخادم";
|
||||
$lang['stix0032'] = "قبل ايقاف التشغيل:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Days, <span id=\"hours\">00</span> Hours, <span id=\"minutes\">00</span> Mins, <span id=\"seconds\">00</span> Secs";
|
||||
$lang['stix0034'] = "متوسط فقد البيانات";
|
||||
$lang['stix0035'] = "الإحصاءات العامة";
|
||||
$lang['stix0036'] = "اسم الخادم";
|
||||
$lang['stix0037'] = "المنفذ:عنوان الخادم";
|
||||
$lang['stix0038'] = "كلمة مرور الخادم";
|
||||
$lang['stix0039'] = "(لايوجد (الخادم عام";
|
||||
$lang['stix0040'] = "نعم (الخادم خاص)";
|
||||
$lang['stix0041'] = "هوية الخادم";
|
||||
$lang['stix0042'] = "نظام الخادم";
|
||||
$lang['stix0043'] = "إصدار الخادم";
|
||||
$lang['stix0044'] = "(تاريخ إنشاء الخادم (يوم/شهر/سنة";
|
||||
$lang['stix0045'] = "إضافة الخادم إلى قائمة الخوادم";
|
||||
$lang['stix0046'] = "مفعل";
|
||||
$lang['stix0047'] = "غير مفعل";
|
||||
$lang['stix0048'] = "عدد غير كافي من المعلومات حتى الان";
|
||||
$lang['stix0049'] = "وقت التواجد لكل المستخدمين / شهر";
|
||||
$lang['stix0050'] = "وقت التواجد لكل المستخدمين / اسبوع";
|
||||
$lang['stix0051'] = "لقد فشل التيم سبيك لذا لن يكون هناك عملية انشاء";
|
||||
$lang['stmy0001'] = "العضوية";
|
||||
$lang['stmy0002'] = "رتبة";
|
||||
$lang['stmy0003'] = "Database ID:";
|
||||
$lang['stmy0004'] = "Unique ID:";
|
||||
$lang['stmy0005'] = "عدد مرات الدخول إلى الخادم:";
|
||||
$lang['stmy0006'] = "أول دخول للسيرفر:";
|
||||
$lang['stmy0007'] = "المجموع الكلي لوقت التواجد:";
|
||||
$lang['stmy0008'] = "وقت التواجد للايام الـ7 الاخيرة:";
|
||||
$lang['stmy0009'] = "وقت التواجد للايام الـ30 الاخيرة:";
|
||||
$lang['stmy0010'] = "أكتملت الإنجازات:";
|
||||
$lang['stmy0011'] = "التقدم بالإنجازات";
|
||||
$lang['stmy0012'] = "التواجد : أسطوري";
|
||||
$lang['stmy0013'] = "لأن وقت تواجدك بالسيرفر %s ساعات";
|
||||
$lang['stmy0014'] = "أكتمل التقدم";
|
||||
$lang['stmy0015'] = "التواجد : ذهبي";
|
||||
$lang['stmy0016'] = "% أكتمل أسطوري";
|
||||
$lang['stmy0017'] = "التواجد : فضي";
|
||||
$lang['stmy0018'] = "% أكتمل ذهبي";
|
||||
$lang['stmy0019'] = "التواجد : برونزي";
|
||||
$lang['stmy0020'] = "% أكتمل فضي";
|
||||
$lang['stmy0021'] = "التواجد : لايوجد رتبة";
|
||||
$lang['stmy0022'] = "% أكتمل برونزي";
|
||||
$lang['stmy0023'] = "تقدم عدد مرات الإتصال";
|
||||
$lang['stmy0024'] = "عدد مرات الإتصال : أسطوري";
|
||||
$lang['stmy0025'] = "عدد مرات الدخول إلى الخادم %s مرة";
|
||||
$lang['stmy0026'] = "عدد مرات الإتصال : ذهبي";
|
||||
$lang['stmy0027'] = "عدد مرات الإتصال : فضي";
|
||||
$lang['stmy0028'] = "عدد مرات الإتصال: برونزي";
|
||||
$lang['stmy0029'] = "عدد مرات الإتصال: لايوجد رتبة";
|
||||
$lang['stmy0030'] = "التقدم للمستوى القادم";
|
||||
$lang['stnv0001'] = "اخبار الخادم";
|
||||
$lang['stnv0002'] = "اغلاق";
|
||||
$lang['stnv0003'] = "تحديث معلومات المستخدم";
|
||||
$lang['stnv0004'] = "إستخدم التحديث فقط في حالة تغير معلوماتك في التيم سبيك مثل : اسمك";
|
||||
$lang['stnv0005'] = "يعمل فقط عند تواجدك بالتيم سبيك";
|
||||
$lang['stnv0006'] = "تحديث";
|
||||
$lang['stnv0007'] = "منطقة النزال - مضمون الصفحة";
|
||||
$lang['stnv0008'] = "يمكنك تحدي المستخدمين الاخرين في معركة بين اثنين او بين فريقين";
|
||||
$lang['stnv0009'] = "في خلال المعركة سيتم حساب وقت التواجد للاعبين او للفريقين";
|
||||
$lang['stnv0010'] = "عند انتهاء المعركة المستخدم او الفريق الذي لديه اعلى وقت تواحد سيعتبر الفائز";
|
||||
$lang['stnv0011'] = "(الوقت الاعتيادي للمعركة هو 48 ساعة)";
|
||||
$lang['stnv0012'] = "المستخدم او الفريق الفائز يحصل على مبلغ يمكنه استخدامه عندما يريد";
|
||||
$lang['stnv0013'] = "سيتم اضهاره على لوحة <a href=\"my_stats.php\">My statistics</a> ";
|
||||
$lang['stnv0014'] = "( يمكن ان يكون تسريع وقت تواجد لمدة 8 ساعات, زيادة وقت التواجد 4 ساعات اضافية , الخ ";
|
||||
$lang['stnv0015'] = "يمكن استخدام هذه التسريعات للصعود على سبيل المثال فوق افضل المستخدمين للاسبوع";
|
||||
$lang['stnv0016'] = "غير متوفر";
|
||||
$lang['stnv0017'] = "أنت غير متصل بالتيم سبيك";
|
||||
$lang['stnv0018'] = "الرجاء الإتصال بالتيم سبيك و الضغط على زر التحديث لعرض معلوماتك";
|
||||
$lang['stnv0019'] = "العضوية - شرح";
|
||||
$lang['stnv0020'] = "تحتوي هذا الصفحة على مختصر لحالتك الخاصة ومجموع وقت تواجدك على السيرفر";
|
||||
$lang['stnv0021'] = "The informations are collected since the beginning of the Ranksystem, they are not since the beginning of the TeamSpeak server.";
|
||||
$lang['stnv0022'] = "This page receives its values out of a database. So the values might be delayed a bit.";
|
||||
$lang['stnv0023'] = "The sum inside of the donut charts may differ to the amount of 'Total user'. The reason is that this data weren't collected with older versions of the Ranksystem.";
|
||||
$lang['stnv0024'] = "نظام الرتب";
|
||||
$lang['stnv0025'] = "تحديد المدخلات";
|
||||
$lang['stnv0026'] = "الكل";
|
||||
$lang['stnv0027'] = "المعلومات على هذه الصفحة قد تكون منتهية الصلاحية! يبدو ان نظام الرتب لم يعد متصلا بسيرفر التيم سبيك";
|
||||
$lang['stnv0028'] = "(انت غير متصل بسيرفر التيم سبيك!)";
|
||||
$lang['stnv0029'] = "قائمة الرتب";
|
||||
$lang['stnv0030'] = "معلومات عن نظام الرتب";
|
||||
$lang['stnv0031'] = "About the search field you can search for pattern in clientname, unique Client-ID and Client-database-ID.";
|
||||
$lang['stnv0032'] = "You can also use a view filter options (see below). Enter the filter also inside the search field.";
|
||||
$lang['stnv0033'] = "Combination of filter and search pattern are possible. Enter first the filter(s) followed without any sign your search pattern.";
|
||||
$lang['stnv0034'] = "Also it is possible to combine multiple filters. Enter this consecutively inside the search field.";
|
||||
$lang['stnv0035'] = "<u>Example:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Show only clients, which are excepted (client, servergroup or channel exception).";
|
||||
$lang['stnv0037'] = "Show only clients, which are not excepted.";
|
||||
$lang['stnv0038'] = "Show only clients, which are online.";
|
||||
$lang['stnv0039'] = "Show only clients, which are not online.";
|
||||
$lang['stnv0040'] = "Show only clients, which are in defined group. Represent the actuel rank/level.<br>Replace <i>GROUPID</i> with the wished servergroup ID.";
|
||||
$lang['stnv0041'] = "Show only clients, which are selected by lastseen.<br>Replace <i>OPERATOR</i> with '<' or '>' or '=' or '!='.<br>And replace <i>TIME</i> with a timestamp or date with format 'Y-m-d H-i' (example: 2016-06-18 20-25).<br>Full example: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Show only clients, which are from defined country.<br>Replace <i>TS3-COUNTRY-CODE</i> with the wished country.<br>For list of codes google for ISO 3166-1 alpha-2";
|
||||
$lang['stri0001'] = "معلومات عن نظام الرتب";
|
||||
$lang['stri0002'] = "ماهو نظام الرتب؟";
|
||||
$lang['stri0003'] = "A TS3 Bot, which automatically grant ranks (servergroups) to user on a TeamSpeak 3 Server for online time or online activity. It also gathers informations and statistics about the user and displays the result on this site.";
|
||||
$lang['stri0004'] = "من الذي اخترع نظام الرتب؟";
|
||||
$lang['stri0005'] = "متى تم اطلاق نظام الرتب ؟";
|
||||
$lang['stri0006'] = "اول اصدار اولي: 05/10/2014.";
|
||||
$lang['stri0007'] = "اول اصدار تجريبي: 01/02/2015.";
|
||||
$lang['stri0008'] = "يمكنك رؤية اخر اصدار على <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "كيف تم انشاء نظام الرتب ؟";
|
||||
$lang['stri0010'] = "The Ranksystem is coded in";
|
||||
$lang['stri0011'] = "It uses also the following libraries:";
|
||||
$lang['stri0012'] = ": شكر خاص إلى";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - for russian translation";
|
||||
$lang['stri0014'] = "Bejamin Frost - for initialisation the bootstrap design";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - for italian translation";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - for initialisation arabic translation";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - for initialisation romanian translation";
|
||||
$lang['sttw0001'] = "افضل مستخدمين";
|
||||
$lang['sttw0002'] = "لهذا الاسبوع";
|
||||
$lang['sttw0003'] = "وقت التواجد %s ساعات";
|
||||
$lang['sttw0004'] = "أفضل 10 بالسيرفر";
|
||||
$lang['sttw0005'] = "Hours (Defines 100 %)";
|
||||
$lang['sttw0006'] = "%s hours (%s%)";
|
||||
$lang['sttw0007'] = "أفضل 10 إحصائيات";
|
||||
$lang['sttw0008'] = "أفضل 10 ضد أخرون في زمن الإتصال";
|
||||
$lang['sttw0009'] = "أفصل 10 ضد أخرون في وقت النشاط";
|
||||
$lang['sttw0010'] = "أفضل 10 ضد أخرون في زمن الخمول";
|
||||
$lang['sttw0011'] = "Top 10 (in hours)";
|
||||
$lang['sttw0012'] = "Other %s users (in hours)";
|
||||
$lang['sttw0013'] = "With %s hours active time";
|
||||
$lang['sttm0001'] = "لهذا الشهر";
|
||||
$lang['stta0001'] = "لكل الوقت";
|
||||
$lang['upinf'] = "يتوفر اصدار جديد من نظام الرتب; ابلغ المستخدمين في السيرفر";
|
||||
$lang['upmsg'] = "\nHey, a new version of the [B]Ranksystem[/B] is available!\n\ncurrent version: %s\n[B]new version: %s[/B]\n\nPlease check out our site for more informations [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Database update successfully executed.";
|
||||
$lang['upuser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s).";
|
||||
$lang['upuserboost'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "The unique Client-ID %s couldn't reached on the TeamSpeak!";
|
||||
$lang['upusrinf'] = "المستخدم %s المستخدمح";
|
||||
$lang['user'] = "اسم المستخدم";
|
||||
$lang['wiaction'] = "action";
|
||||
$lang['wiboost'] = "boost";
|
||||
$lang['wiboostdesc'] = "Give an user on your TeamSpeak server a servergroup (have to be created manually), which you can declare here as boost group. Define also a factor which should be used (for example 2x) and a time, how long the boost should be rated.<br>The higher the factor, the faster an user reaches the next higher rank.<br>Is the time expired, the boost servergroup get automatically removed from the concerned user. The time starts running as soon as the user gets the servergroup.<br><br>servergroup ID=> factor=> time (in seconds)<br><br>Each entry have to separate from next with a comma.<br><br>Example:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>On this an user in servergroup 12 get the factor 2 for the next 6000 seconds, an user in servergroup 13 get the factor 3 for 2500 seconds, and so on...";
|
||||
$lang['wibot1'] = "Ranksystem Bot should be stopped. Check the log below for more information!";
|
||||
$lang['wibot2'] = "Ranksystem Bot should be started. Check the log below for more information!";
|
||||
$lang['wibot3'] = "Ranksystem Bot should be restarted. Check the log below for more information!";
|
||||
@@ -249,45 +252,47 @@ $lang['wibot6'] = "Stop Bot";
|
||||
$lang['wibot7'] = "Restart Bot";
|
||||
$lang['wibot8'] = "Ranksystem log (extract):";
|
||||
$lang['wibot9'] = "Fill out all mandatory fields before starting the Ranksystem Bot!";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Reset the online time of an user, if his TeamSpeak Client-database-ID changed.<br><br>Example:<br>If a clients gets removed from the TeamSpeak server, it gets a new Client-database-ID with the next connect to the server.";
|
||||
$lang['wiconferr'] = "There is an error in the configuration of the Ranksystem. Please go to the webinterface and correct the Core Settings. Especially check the config 'rank up'!";
|
||||
$lang['widaform'] = "نظام التاريخ";
|
||||
$lang['widaformdesc'] = "اختر كيفية ضهور التاريخ.<br><br>Example:<br>%a ايام, %h ساعات, %i دقائق, %s ثوان";
|
||||
$lang['widbcfgsuc'] = "تعديلات قاعدة البيانات حفظت بنجاح";
|
||||
$lang['widbcfgerr'] = "'other/dbconfig.php'خلل عند حفظ تعديلات قاعدة البيانات فشل الاتصال مع ";
|
||||
$lang['widelcld'] = "حذف المستخدمين";
|
||||
$lang['widelcldgrp'] = "اعادة انشاء المجاميع";
|
||||
$lang['widelcldgrpdesc'] = "The Ranksystem remember the given servergroups, so it don't need to give/check this with every run of the worker.php again.<br><br>With this function you can remove once time the knowledge of given servergroups. In effect the ranksystem try to give all clients (which are on the TS3 server online) the servergroup of the actual rank.<br>For each client, which gets the group or stay in group, the Ranksystem remember this like described at beginning.<br><br>This function can be helpful, when user are not in the servergroup, they should be for the defined online time.<br><br>Attention: Run this in a moment, where the next few minutes no rankups become due!!! The Ranksystem can't remove the old group, cause he can't remember ;-)";
|
||||
$lang['widelclddesc'] = "Delete the before selected clients out of the Ranksystem database.<br><br>With this deletion are the clients on the TeamSpeak Server untouched.";
|
||||
$lang['widelsg'] = "حذف من مجموعات السيرفر";
|
||||
$lang['widelsgdesc'] = "Choose if the clients should also be removed out of the last known servergroup, when you delete clients out of the Ranksystem database.<br><br>It will only considered servergroups, which concerned the Ranksystem";
|
||||
$lang['wideltime'] = "وقت الحذف";
|
||||
$lang['wideltimedesc'] = "Clean old clients out of the Ranksystem database.<br>Entry a time in seconds which a client was not seen to delete it.<br><br>0 - deletes all clients out of the Ranksystem<br><br>The Userdatas on the TeamSpeak server are with this untouched!";
|
||||
$lang['wiexcid'] = "Channel-Ausnahmen";
|
||||
$lang['wiexciddesc'] = "A comma separated list of the channel-IDs that are not to participate in the Ranksystem.<br><br>Stay users in one of the listed channels, the time there will be completely ignored. There is neither the online time, yet the idle time counted.<br><br>Sense does this function only with the mode 'online time', cause here could be ignored AFK channels for example.<br>With the mode 'active time', this function is useless because as would be deducted the idle time in AFK rooms and thus not counted anyway.<br><br>Be a user in an excluded channel, it is noted for this period as 'excluded from the Ranksystem'. The user dows no longer appears in the list 'stats/list_rankup.php' unless excluded clients should not be displayed there (Stats Page - excepted client).";
|
||||
$lang['wiexgrp'] = "servergroup exception";
|
||||
$lang['wiexgrpdesc'] = "A comma seperated list of servergroup-IDs, which should not conside for the Ranksystem.<br>User in at least one of this servergroups IDs will be ignored for the rank up.";
|
||||
$lang['wiexuid'] = "استثناء المستخدم";
|
||||
$lang['wiexuiddesc'] = "A comma seperated list of unique Client-IDs, which should not conside for the Ranksystem.<br>User in this list will be ignored for the rank up.";
|
||||
$lang['wigrptime'] = "ترفيع رتبة";
|
||||
$lang['wigrptimedesc'] = "Define here after which time a user should get automatically a predefined servergroup.<br><br>time (seconds)=>servergroup ID<br><br>Important for this is the 'online time' or the 'active time' of an user, depending on setting of the mode.<br><br>Each entry have to separate from next with a comma.<br><br>The time must be entered cumulative<br><br>Example:<br>60=>9,120=>10,180=>11<br><br>On this a user get after 60 seconds the servergroup 9, in turn after 60 seconds the servergroup 10, and so on...";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "خيارات النواة";
|
||||
$lang['wihldb'] = "اعدادات قاعدة البيانات";
|
||||
$lang['wihlmsg'] = "Message settings";
|
||||
$lang['wihlsty'] = "Stats page settings";
|
||||
$lang['wihlts'] = "TeamSpeak settings";
|
||||
$lang['wihlvs'] = "Various settings";
|
||||
$lang['wiignidle'] = "Ignoriere Idle";
|
||||
$lang['wiignidledesc'] = "Define a period, up to which the idle time of an user will be ignored.<br><br>When a client does not do anything on the server (=idle), this time is noted by the Ranksystem. With this feature the idle time of an user will not be counted until the defined limit. Only when the defined limit is exceeded, it counts from that date for the Ranksystem as idle time.<br><br>This function plays only in conjunction with the mode 'active time' a role.<br><br>Meaning the function is e.g. to evaluate the time of listening in conversations as activity.<br><br>0 = disable the feature<br><br>Example:<br>Ignore idle = 600 (seconds)<br>A client has an idle of 8 minuntes<br>consequence:<br>8 minutes idle are ignored and he therefore receives this time as active time. If the idle time now increased to over 12 minutes so the time is over 10 minutes, and in this case 2 minutes would be counted as idle time.";
|
||||
$lang['wilog'] = "Logpath";
|
||||
$lang['wilogdesc'] = "Path of the log file of the Ranksystem.<br><br>Example:<br>/var/logs/ranksystem/<br><br>Be sure, the webuser has the write-permissions to the logpath.";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Reset the online time of an user, if his TeamSpeak Client-database-ID changed.<br><br>Example:<br>If a clients gets removed from the TeamSpeak server, it gets a new Client-database-ID with the next connect to the server.";
|
||||
$lang['wiconferr'] = "There is an error in the configuration of the Ranksystem. Please go to the webinterface and correct the Core Settings. Especially check the config 'rank up'!";
|
||||
$lang['widaform'] = "نظام التاريخ";
|
||||
$lang['widaformdesc'] = "اختر كيفية ضهور التاريخ.<br><br>Example:<br>%a ايام, %h ساعات, %i دقائق, %s ثوان";
|
||||
$lang['widbcfgsuc'] = "تعديلات قاعدة البيانات حفظت بنجاح";
|
||||
$lang['widbcfgerr'] = "'other/dbconfig.php'خلل عند حفظ تعديلات قاعدة البيانات فشل الاتصال مع ";
|
||||
$lang['widelcld'] = "حذف المستخدمين";
|
||||
$lang['widelcldgrp'] = "اعادة انشاء المجاميع";
|
||||
$lang['widelcldgrpdesc'] = "The Ranksystem remember the given servergroups, so it don't need to give/check this with every run of the worker.php again.<br><br>With this function you can remove once time the knowledge of given servergroups. In effect the ranksystem try to give all clients (which are on the TS3 server online) the servergroup of the actual rank.<br>For each client, which gets the group or stay in group, the Ranksystem remember this like described at beginning.<br><br>This function can be helpful, when user are not in the servergroup, they should be for the defined online time.<br><br>Attention: Run this in a moment, where the next few minutes no rankups become due!!! The Ranksystem can't remove the old group, cause he can't remember ;-)";
|
||||
$lang['widelclddesc'] = "Delete the before selected clients out of the Ranksystem database.<br><br>With this deletion are the clients on the TeamSpeak Server untouched.";
|
||||
$lang['widelsg'] = "حذف من مجموعات السيرفر";
|
||||
$lang['widelsgdesc'] = "Choose if the clients should also be removed out of the last known servergroup, when you delete clients out of the Ranksystem database.<br><br>It will only considered servergroups, which concerned the Ranksystem";
|
||||
$lang['wideltime'] = "وقت الحذف";
|
||||
$lang['wideltimedesc'] = "Clean old clients out of the Ranksystem database.<br>Entry a time in seconds which a client was not seen to delete it.<br><br>0 - deletes all clients out of the Ranksystem<br><br>The Userdatas on the TeamSpeak server are with this untouched!";
|
||||
$lang['wiexcid'] = "Channel-Ausnahmen";
|
||||
$lang['wiexciddesc'] = "A comma separated list of the channel-IDs that are not to participate in the Ranksystem.<br><br>Stay users in one of the listed channels, the time there will be completely ignored. There is neither the online time, yet the idle time counted.<br><br>Sense does this function only with the mode 'online time', cause here could be ignored AFK channels for example.<br>With the mode 'active time', this function is useless because as would be deducted the idle time in AFK rooms and thus not counted anyway.<br><br>Be a user in an excluded channel, it is noted for this period as 'excluded from the Ranksystem'. The user dows no longer appears in the list 'stats/list_rankup.php' unless excluded clients should not be displayed there (Stats Page - excepted client).";
|
||||
$lang['wiexgrp'] = "servergroup exception";
|
||||
$lang['wiexgrpdesc'] = "A comma seperated list of servergroup-IDs, which should not conside for the Ranksystem.<br>User in at least one of this servergroups IDs will be ignored for the rank up.";
|
||||
$lang['wiexuid'] = "استثناء المستخدم";
|
||||
$lang['wiexuiddesc'] = "A comma seperated list of unique Client-IDs, which should not conside for the Ranksystem.<br>User in this list will be ignored for the rank up.";
|
||||
$lang['wigrptime'] = "ترفيع رتبة";
|
||||
$lang['wigrptimedesc'] = "Define here after which time a user should get automatically a predefined servergroup.<br><br>time (seconds)=>servergroup ID<br><br>Important for this is the 'online time' or the 'active time' of an user, depending on setting of the mode.<br><br>Each entry have to separate from next with a comma.<br><br>The time must be entered cumulative<br><br>Example:<br>60=>9,120=>10,180=>11<br><br>On this a user get after 60 seconds the servergroup 9, in turn after 60 seconds the servergroup 10, and so on...";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "خيارات النواة";
|
||||
$lang['wihldb'] = "اعدادات قاعدة البيانات";
|
||||
$lang['wihlmsg'] = "Message settings";
|
||||
$lang['wihlsty'] = "Stats page settings";
|
||||
$lang['wihlts'] = "TeamSpeak settings";
|
||||
$lang['wihlvs'] = "Various settings";
|
||||
$lang['wiignidle'] = "Ignoriere Idle";
|
||||
$lang['wiignidledesc'] = "Define a period, up to which the idle time of an user will be ignored.<br><br>When a client does not do anything on the server (=idle), this time is noted by the Ranksystem. With this feature the idle time of an user will not be counted until the defined limit. Only when the defined limit is exceeded, it counts from that date for the Ranksystem as idle time.<br><br>This function plays only in conjunction with the mode 'active time' a role.<br><br>Meaning the function is e.g. to evaluate the time of listening in conversations as activity.<br><br>0= disable the feature<br><br>Example:<br>Ignore idle= 600 (seconds)<br>A client has an idle of 8 minuntes<br>consequence:<br>8 minutes idle are ignored and he therefore receives this time as active time. If the idle time now increased to over 12 minutes so the time is over 10 minutes, and in this case 2 minutes would be counted as idle time.";
|
||||
$lang['wilog'] = "Logpath";
|
||||
$lang['wilogdesc'] = "Path of the log file of the Ranksystem.<br><br>Example:<br>/var/logs/ranksystem/<br><br>Be sure, the webuser has the write-permissions to the logpath.";
|
||||
$lang['wimsgmsg'] = "Message";
|
||||
$lang['wimsgmsgdesc'] = "Define a message, which will be send to an user, when he rises the next higher rank.<br><br>This message will be send via TS3 private message. So every know bb-code could be used, which also works for a normal private message.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Furthermore, the previously spent time can be expressed by arguments:<br>%1\$s - days<br>%2\$s - hours<br>%3\$s - minutes<br>%4\$s - seconds<br><br>Example:<br>Hey,\\nyou reached a higher rank, since you already connected for %1\$s days, %2\$s hours and %3\$s minutes to our TS3 server.[B]Keep it up![/B] ;-)";
|
||||
$lang['wilogout'] = "تسجيل الخروج";
|
||||
$lang['wimsgusr'] = "Rank up notification";
|
||||
$lang['wimsgusrdesc'] = "Inform an user with a private text message about his rank up.";
|
||||
$lang['wimsgmsgdesc'] = "Define a message, which will be send to an user, when he rises the next higher rank.<br><br>This message will be send via TS3 private message. So every know bb-code could be used, which also works for a normal private message.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Furthermore, the previously spent time can be expressed by arguments:<br>%1\$s - days<br>%2\$s - hours<br>%3\$s - minutes<br>%4\$s - seconds<br><br>Example:<br>Hey,\\nyou reached a higher rank, since you already connected for %1\$s days, %2\$s hours and %3\$s minutes to our TS3 server.[B]Keep it up![/B] ;-)";
|
||||
$lang['wimsgsn'] = "Server-News";
|
||||
$lang['wimsgsndesc'] = "Define a message, which will be shown on the /stats/ page as server news.<br><br>You can use default html functions to modify the layout<br><br>Example:<br><b> - <b>for bold</b><br><u> - <u>for underline</u><br><i> - <i>for italic</i><br><br> - for word-wrap (new line)";
|
||||
$lang['wilogout'] = "تسجيل الخروج";
|
||||
$lang['wimsgusr'] = "Rank up notification";
|
||||
$lang['wimsgusrdesc'] = "Inform an user with a private text message about his rank up.";
|
||||
$lang['winav1'] = "TeamSpeak";
|
||||
$lang['winav2'] = "Database";
|
||||
$lang['winav3'] = "Core";
|
||||
@@ -298,67 +303,67 @@ $lang['winav7'] = "Administrate";
|
||||
$lang['winav8'] = "Start / Stop Bot";
|
||||
$lang['winav9'] = "Update available!";
|
||||
$lang['winav10'] = "Please use the webinterface only via %s HTTPS%s An encryption is critical to ensure your privacy and security.%sTo be able to use HTTPS your webserver needs to support an SSL connection.";
|
||||
$lang['wiselcld'] = "select clients";
|
||||
$lang['wiselclddesc'] = "Select the clients by the last known username. For this you only have to start typing.<br>Multiple selections are comma separated, which does the system automatically.<br><br>With the selection you can choose with the next step an action.";
|
||||
$lang['wishcolas'] = "actual servergroup";
|
||||
$lang['wishcolasdesc'] = "Show column 'actual servergroup' in stats/list_rankup.php";
|
||||
$lang['wishcolat'] = "active time";
|
||||
$lang['wishcolatdesc'] = "Show column 'sum. active time' in stats/list_rankup.php";
|
||||
$lang['wishcolcld'] = "Client-name";
|
||||
$lang['wishcolclddesc'] = "Show column 'Client-name' in stats/list_rankup.php";
|
||||
$lang['wishcoldbid'] = "database-ID";
|
||||
$lang['wishcoldbiddesc'] = "Show column 'Client-database-ID' in stats/list_rankup.php";
|
||||
$lang['wishcolit'] = "idle time";
|
||||
$lang['wishcolitdesc'] = "Show column 'sum idle time' in stats/list_rankup.php";
|
||||
$lang['wishcolls'] = "last seen";
|
||||
$lang['wishcollsdesc'] = "Show column 'last seen' in stats/list_rankup.php";
|
||||
$lang['wishcolnx'] = "next rank up";
|
||||
$lang['wishcolnxdesc'] = "Show column 'next rank up' in stats/list_rankup.php";
|
||||
$lang['wishcolot'] = "online time";
|
||||
$lang['wishcolotdesc'] = "Show column 'sum. online time' in stats/list_rankup.php";
|
||||
$lang['wishcolrg'] = "rank";
|
||||
$lang['wishcolrgdesc'] = "Show column 'rank' in stats/list_rankup.php";
|
||||
$lang['wishcolsg'] = "next servergroup";
|
||||
$lang['wishcolsgdesc'] = "Show column 'next servergroup' in stats/list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc'] = "Show column 'unique Client-ID' in stats/list_rankup.php";
|
||||
$lang['wishexcld'] = "excepted client";
|
||||
$lang['wishexclddesc'] = "Show clients in list_rankup.php,<br>which are excluded and therefore not participate in the Ranksystem.";
|
||||
$lang['wishexgrp'] = "excepted groups";
|
||||
$lang['wishexgrpdesc'] = "Show clients in list_rankup.php, which are in the list 'client exception' and shouldn't be conside for the Ranksystem.";
|
||||
$lang['wishhicld'] = "Clients in highest Level";
|
||||
$lang['wishhiclddesc'] = "Show clients in list_rankup.php, which reached the highest level in the Ranksystem.";
|
||||
$lang['wisupidle'] = "Mode";
|
||||
$lang['wisupidledesc'] = "There are two modes, as time can be counted and can then apply for a rank increase. 1) online time: Here the pure online time of the user is taken into account (see column 'sum. online time' in the 'stats/list_rankup.php') 2) active time: This will be deducted from the online time of a user, the inactive time (idle) (see column 'sum. active time' in the 'stats/list_rankup.php'). A change of mode with an already longer running database is not recommended, but may work.";
|
||||
$lang['wisvconf'] = "save";
|
||||
$lang['wisvsuc'] = "Changes successfully saved!";
|
||||
$lang['wisvres'] = "You need to restart the Ranksystem before the changes will take effect!";
|
||||
$lang['witime'] = "Timezone";
|
||||
$lang['witimedesc'] = "Select the timezone the server is hosted.";
|
||||
$lang['wits3dch'] = "Default Channel";
|
||||
$lang['wits3dchdesc'] = "The channel-ID, the bot should connect with.<br><br>The Bot will join this channel after connecting to the TeamSpeak server.";
|
||||
$lang['wits3host'] = "TS3 Hostaddress";
|
||||
$lang['wits3hostdesc'] = "TeamSpeak 3 Server address<br>(IP oder DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "With the Slowmode you can reduce \"spam\" of query commands to the TeamSpeak server. This prevent bans in case of flood.<br>TeamSpeak Query commands get delayed with this function.<br><br>!!! ALSO IT REDUCE THE CPU USAGE !!!<br><br>The activation is not recommended, if not required. The delay increases the duration of the Bot, which makes it imprecisely.";
|
||||
$lang['wits3qnm'] = "Botname";
|
||||
$lang['wits3qnm2'] = "2nd Botname";
|
||||
$lang['wits3qnm2desc'] = "A fallback Botname, if the first one is already in use.";
|
||||
$lang['wits3qnmdesc'] = "The name, with this the query-connection will be established.<br>You can name it free.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Password";
|
||||
$lang['wits3querpwdesc'] = "TeamSpeak 3 query password<br>Password for the query user.";
|
||||
$lang['wits3querusr'] = "TS3 Query-User";
|
||||
$lang['wits3querusrdesc'] = "TeamSpeak 3 query username<br>Default is serveradmin<br>Of course, you can also create an additional serverquery account only for the Ranksystem.<br>The needed permissions you find on:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Port";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 query port<br>Default is 10011 (TCP)<br>If its not default, you should find it in your 'ts3server.ini'.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Port";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 voice port<br>Default is 9987 (UDP)<br>This is the port, you uses also to connect with the TS3 Client.";
|
||||
$lang['wiupcheck'] = "Update-Check";
|
||||
$lang['wiupcheckdesc'] = "If the Update-Check is enable, the listed user gets a notification with a private text message, once an update is available.";
|
||||
$lang['wiuptime'] = "Interval";
|
||||
$lang['wiuptimedesc'] = "Enter here how much seconds have to gone till the Ranksystem should check for available updates.<br>Attention, for each check the listed user gets a notification. If no one of the listed users is online, the Ranksystem will try to notificate with the next interval.";
|
||||
$lang['wiupuid'] = "Recipient";
|
||||
$lang['wiupuiddesc'] = "A comma separate list of unique Client-IDs, which shoud be informed on the TeamSpeak via private message for available updates.";
|
||||
$lang['wivlang'] = "Language";
|
||||
$lang['wivlangdesc'] = "Language for the Ranksystem<br><br>de - Deutsch<br>en - english<br>it - italiano<br>ru - русский";
|
||||
$lang['wiselcld'] = "select clients";
|
||||
$lang['wiselclddesc'] = "Select the clients by the last known username. For this you only have to start typing.<br>Multiple selections are comma separated, which does the system automatically.<br><br>With the selection you can choose with the next step an action.";
|
||||
$lang['wishcolas'] = "actual servergroup";
|
||||
$lang['wishcolasdesc'] = "Show column 'actual servergroup' in stats/list_rankup.php";
|
||||
$lang['wishcolat'] = "active time";
|
||||
$lang['wishcolatdesc'] = "Show column 'sum. active time' in stats/list_rankup.php";
|
||||
$lang['wishcolcld'] = "Client-name";
|
||||
$lang['wishcolclddesc'] = "Show column 'Client-name' in stats/list_rankup.php";
|
||||
$lang['wishcoldbid'] = "database-ID";
|
||||
$lang['wishcoldbiddesc'] = "Show column 'Client-database-ID' in stats/list_rankup.php";
|
||||
$lang['wishcolit'] = "idle time";
|
||||
$lang['wishcolitdesc'] = "Show column 'sum idle time' in stats/list_rankup.php";
|
||||
$lang['wishcolls'] = "last seen";
|
||||
$lang['wishcollsdesc'] = "Show column 'last seen' in stats/list_rankup.php";
|
||||
$lang['wishcolnx'] = "next rank up";
|
||||
$lang['wishcolnxdesc'] = "Show column 'next rank up' in stats/list_rankup.php";
|
||||
$lang['wishcolot'] = "online time";
|
||||
$lang['wishcolotdesc'] = "Show column 'sum. online time' in stats/list_rankup.php";
|
||||
$lang['wishcolrg'] = "rank";
|
||||
$lang['wishcolrgdesc'] = "Show column 'rank' in stats/list_rankup.php";
|
||||
$lang['wishcolsg'] = "next servergroup";
|
||||
$lang['wishcolsgdesc'] = "Show column 'next servergroup' in stats/list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc'] = "Show column 'unique Client-ID' in stats/list_rankup.php";
|
||||
$lang['wishexcld'] = "excepted client";
|
||||
$lang['wishexclddesc'] = "Show clients in list_rankup.php,<br>which are excluded and therefore not participate in the Ranksystem.";
|
||||
$lang['wishexgrp'] = "excepted groups";
|
||||
$lang['wishexgrpdesc'] = "Show clients in list_rankup.php, which are in the list 'client exception' and shouldn't be conside for the Ranksystem.";
|
||||
$lang['wishhicld'] = "Clients in highest Level";
|
||||
$lang['wishhiclddesc'] = "Show clients in list_rankup.php, which reached the highest level in the Ranksystem.";
|
||||
$lang['wisupidle'] = "Mode";
|
||||
$lang['wisupidledesc'] = "There are two modes, as time can be counted and can then apply for a rank increase.<br><br>1) online time: Here the pure online time of the user is taken into account (see column 'sum. online time' in the 'stats/list_rankup.php')<br><br>2) active time: This will be deducted from the online time of a user, the inactive time (idle) (see column 'sum. active time' in the 'stats/list_rankup.php').<br><br>A change of mode with an already longer running database is not recommended, but may work.";
|
||||
$lang['wisvconf'] = "save";
|
||||
$lang['wisvsuc'] = "Changes successfully saved!";
|
||||
$lang['wisvres'] = "You need to restart the Ranksystem before the changes will take effect!";
|
||||
$lang['witime'] = "Timezone";
|
||||
$lang['witimedesc'] = "Select the timezone the server is hosted.";
|
||||
$lang['wits3dch'] = "Default Channel";
|
||||
$lang['wits3dchdesc'] = "The channel-ID, the bot should connect with.<br><br>The Bot will join this channel after connecting to the TeamSpeak server.";
|
||||
$lang['wits3host'] = "TS3 Hostaddress";
|
||||
$lang['wits3hostdesc'] = "TeamSpeak 3 Server address<br>(IP oder DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "With the Slowmode you can reduce \"spam\" of query commands to the TeamSpeak server. This prevent bans in case of flood.<br>TeamSpeak Query commands get delayed with this function.<br><br>!!! ALSO IT REDUCE THE CPU USAGE !!!<br><br>The activation is not recommended, if not required. The delay increases the duration of the Bot, which makes it imprecisely.";
|
||||
$lang['wits3qnm'] = "Botname";
|
||||
$lang['wits3qnm2'] = "2nd Botname";
|
||||
$lang['wits3qnm2desc'] = "A fallback Botname, if the first one is already in use.";
|
||||
$lang['wits3qnmdesc'] = "The name, with this the query-connection will be established.<br>You can name it free.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Password";
|
||||
$lang['wits3querpwdesc'] = "TeamSpeak 3 query password<br>Password for the query user.";
|
||||
$lang['wits3querusr'] = "TS3 Query-User";
|
||||
$lang['wits3querusrdesc'] = "TeamSpeak 3 query username<br>Default is serveradmin<br>Of course, you can also create an additional serverquery account only for the Ranksystem.<br>The needed permissions you find on:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Port";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 query port<br>Default is 10011 (TCP)<br>If its not default, you should find it in your 'ts3server.ini'.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Port";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 voice port<br>Default is 9987 (UDP)<br>This is the port, you uses also to connect with the TS3 Client.";
|
||||
$lang['wiupcheck'] = "Update-Check";
|
||||
$lang['wiupcheckdesc'] = "If the Update-Check is enable, the listed user gets a notification with a private text message, once an update is available.";
|
||||
$lang['wiuptime'] = "Interval";
|
||||
$lang['wiuptimedesc'] = "Enter here how much seconds have to gone till the Ranksystem should check for available updates.<br>Attention, for each check the listed user gets a notification. If no one of the listed users is online, the Ranksystem will try to notificate with the next interval.";
|
||||
$lang['wiupuid'] = "Recipient";
|
||||
$lang['wiupuiddesc'] = "A comma separate list of unique Client-IDs, which shoud be informed on the TeamSpeak via private message for available updates.";
|
||||
$lang['wivlang'] = "Language";
|
||||
$lang['wivlangdesc'] = "Choose a default language for the Ranksystem.<br><br>The language is also selectable on the websites for the users and will be stored for the session.";
|
||||
?>
|
||||
@@ -1,364 +1,369 @@
|
||||
<?PHP
|
||||
$lang= array();
|
||||
$lang['adduser'] = "User %s (eindeutige Client-ID: %s; Client-Datenbank-ID: %s) ist bisher unbekannt -> wurde nun zum Ranksystem hinzugefügt.";
|
||||
$lang['changedbid'] = "User %s (eindeutige Client-ID: %s) hat eine neue TeamSpeak Client-Datenbank-ID (%s). Ersetze die alte Client-Datenbank-ID (%s) und setze die gesammelte Zeiten zurück";
|
||||
$lang['crawl'] = "Scanne nach verbundenen Usern und sammle die online Zeit...";
|
||||
$lang['clean'] = "Scanne nach Usern, welche zu löschen sind...";
|
||||
$lang['cleanc'] = "Clientlöschung";
|
||||
$lang['cleancdesc'] = "Mit dieser Funktion werden alte Clients aus dem Ranksystem gelöscht.<br><br>Hierzu wird die TeamSpeak Datenbank mit dem Ranksystem abgeglichen. Clients, welche nicht mehr in der TeamSpeak Datenbank existieren, werden aus dem Ranksystem gelöscht.<br><br>Diese Funktion kann nur genutzt werden, wenn der 'Slowmode' deaktiviert ist!<br><br><br>Zur automatischen Bereinigung der TeamSpeak Datenbank kann der ClientCleaner genutzt werden:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "Es wurden %s Clients aus der Ranksystem-Datenbank gelöscht, da sie nicht mehr in der TeamSpeak Datenbank vorhanden sind.";
|
||||
$lang['cleanno'] = "Es gab nichts zu löschen...";
|
||||
$lang['cleanp'] = "Löschintervall";
|
||||
$lang['cleanpdesc'] = "Bestimme einen Intervall, wie oft die 'Clientlöschung' laufen soll.<br><br>Angabe der Zeit in Sekunden!<br><br>Empfohlen wird die Clientlöschung nur einmal am Tag laufen zu lassen, da für größere Datenbanken die Laufzeit extrem steigt.";
|
||||
$lang['cleanrs'] = "Clients in der Ranksystem Datenbank: %s";
|
||||
$lang['cleants'] = "Clients in der TeamSpeak Datenbank gefunden: %s (von %s)";
|
||||
$lang['days'] = "%s <small>Tage</small>";
|
||||
$lang['dbconerr'] = "Verbindung zur Datenbank gescheitert: ";
|
||||
$lang['delcldgrpif'] = "Fehler beim Löschen der Servergruppen aus der Datenbank: %s";
|
||||
$lang['delcldgrpsc'] = "Knowledge der Servergruppen für %s User erfolgreich gelöscht.";
|
||||
$lang['delclientsif'] = "%s Clients aus der Ranksystem Datenbank gelöscht!";
|
||||
$lang['delclientssc'] = "%s Clients aus der Ranksystem Datenbank erfolgreich gelöscht!";
|
||||
$lang['errlogin'] = "Benutzername und/oder Passwort sind falsch! Versuche es erneut...";
|
||||
$lang['errlogin2'] = "Brute force Schutz: Bitte versuche es in %s Sekunden erneut!";
|
||||
$lang['errlogin3'] = "Brute force Schutz: Zu viele Fehlversuche. Für 300 Sekunden gesperrt!";
|
||||
$lang['error'] = "Fehler ";
|
||||
$lang['errremgrp'] = "Fehler beim Entfernen des Users mit der eindeutigen Client-ID %s aus der Servergruppe mit der Servergruppen-Datenbank-ID %s!";
|
||||
$lang['errremdb'] = "Fehler beim Löschen des Users mit der eindeutigen Client-ID %s aus der Ranksystem Datenbank!";
|
||||
$lang['errsel'] = "Fehler bei der Auswahl der Bedingungen!<br>ausgewählte User: %s<br>Option 'lösche Clients': %s<br>Option 'ges. online Zeit': %s";
|
||||
$lang['errukwn'] = "Unbekannter Fehler aufgetreten!";
|
||||
$lang['errupcount'] = "Fehler beim Überschreiben der ges. online Zeit %s bei User mit der eindeutigen Client-ID %s!";
|
||||
$lang['highest'] = "höchster Rang erreicht";
|
||||
$lang['install'] = "Installation";
|
||||
$lang['instdb'] = "Installiere Datenbank";
|
||||
$lang['instdbsuc'] = "Datenbank %s wurde erfolgreich angelegt.";
|
||||
$lang['isntwicfg'] = "Die Datenbankkonfigurationen konnten nicht gespeichert werden! Bitte versehe die 'other/dbconfig.php' mit einem chmod 0777 und versuche es anschließend erneut.";
|
||||
$lang['isntwicfg2'] = "Konfiguriere Webinterface";
|
||||
$lang['isntwichm'] = "Schreibrechte fehlen für Verzeichnis \"%s\". Bitte setze auf dieses einen chmod 777 und starte anschließend das Ranksystem erneut.";
|
||||
$lang['isntwidbhost'] = "DB Hostadresse:";
|
||||
$lang['isntwidbhostdesc']= "Datenbank Server Adresse<br>(IP oder DNS)";
|
||||
$lang['isntwidbmsg'] = "Datenbank-Fehler: ";
|
||||
$lang['isntwidbname'] = "DB Name:";
|
||||
$lang['isntwidbnamedesc']= "Name der Datenbank";
|
||||
$lang['isntwidbpass'] = "DB Passwort:";
|
||||
$lang['isntwidbpassdesc']= "Passwort für die Datenbank";
|
||||
$lang['isntwidbtype'] = "DB Typ:";
|
||||
$lang['isntwidbtypedesc']= "Datenbank Typ<br><br>Der benötigte PDO Treiber muss installiert sein.<br>Für mehr Informationen beachte die Anforderungen auf http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "DB Benutzer:";
|
||||
$lang['isntwidbusrdesc']= "Username für die Datenbank";
|
||||
$lang['isntwidel'] = "Bitte lösche noch die Datei 'install.php' vom Webserver und öffne danach das %s um das Ranksystem zu konfigurieren!";
|
||||
$lang['isntwiusr'] = "Benutzer für das Webinterface wurde erfolgreich erstellt.";
|
||||
$lang['isntwiusrcr'] = "Erstelle Webinterface-User";
|
||||
$lang['isntwiusrdesc'] = "Gib einen frei wählbaren Benutzer und ein Passwort für das Webinterface ein. Mit dem Webinterface wird das Ranksystem konfiguriert.";
|
||||
$lang['isntwiusrh'] = "Zugang - Webinterface";
|
||||
$lang['listacsg'] = "atkuelle Servergruppe";
|
||||
$lang['listcldbid'] = "Client-Datenbank-ID";
|
||||
$lang['listexgrp'] = "Ist vom Ranksystem ausgeschlossen (Servergruppen-Ausnahmen).";
|
||||
$lang['listexuid'] = "Ist vom Ranksystem ausgeschlossen (Client-Ausnahmen).";
|
||||
$lang['listip'] = "IP Adresse";
|
||||
$lang['listnick'] = "Client-Name";
|
||||
$lang['listnxsg'] = "nächste Servergruppe";
|
||||
$lang['listnxup'] = "nächster Rang";
|
||||
$lang['listrank'] = "Rang";
|
||||
$lang['listseen'] = "zuletzt gesehen";
|
||||
$lang['listsuma'] = "ges. aktive Zeit";
|
||||
$lang['listsumi'] = "ges. idle Zeit";
|
||||
$lang['listsumo'] = "ges. online Zeit";
|
||||
$lang['listuid'] = "eindeutige Client-ID";
|
||||
$lang['login'] = "Login";
|
||||
$lang['nocount'] = "User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) ist ein Query-User oder ist mehrmals online (nur erste Verbindung zählt) -> diese wird nicht gewertet!";
|
||||
$lang['noentry'] = "Keine Einträge gefunden..";
|
||||
$lang['pass'] = "Passwort";
|
||||
$lang['queryname'] = "Erster Botname ist bereits in Verwendung. Versuche zweiten Botnamen zu nutzen...";
|
||||
$lang['sccrmcld'] = "User mit der eindeutigen Client-ID %s wurde erfolgreich aus der Ranksystem Datenbank gelöscht.";
|
||||
$lang['sccupcount'] = "User mit der eindeutigen Client-ID %s erhielt erfolgreich ein neue ges. online Zeit von %s.";
|
||||
$lang['setontime'] = "ges. online Zeit";
|
||||
$lang['setontimedesc'] = "Gib eine neue ges. online Zeit ein, welche bei den zuvor selektierten Usern hinterlegt werden soll. Mit dieser wird die alte ges. online Zeit überschrieben.<br><br>Die eingegeben ges. online Zeit wird für die nächsten Rangsteigerungen berücksichtigt.";
|
||||
$lang['sgrpadd'] = "Servergruppe %s zu User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) hinzugefügt.";
|
||||
$lang['sgrprerr'] = "Es ist ein Problem mit den Servergruppen des Users %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) aufgetreten!";
|
||||
$lang['sgrprm'] = "Servergruppe %s von User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) entfernt.";
|
||||
$lang['stix0001'] = "Server Statistiken";
|
||||
$lang['stix0002'] = "Anzahl User";
|
||||
$lang['stix0003'] = "zeige Liste aller User";
|
||||
$lang['stix0004'] = "Online Zeit aller User / Total";
|
||||
$lang['stix0005'] = "zeige Top User aller Zeiten";
|
||||
$lang['stix0006'] = "zeige Top User des Monats";
|
||||
$lang['stix0007'] = "zeige Top User der Woche";
|
||||
$lang['stix0008'] = "Server Nutzung";
|
||||
$lang['stix0009'] = "der letzten 7 Tage";
|
||||
$lang['stix0010'] = "der letzten 30 Tage";
|
||||
$lang['stix0011'] = "der letzten 24 Stunden";
|
||||
$lang['stix0012'] = "wähle Zeitraum";
|
||||
$lang['stix0013'] = "letzten 24 Stunden";
|
||||
$lang['stix0014'] = "letzte Woche";
|
||||
$lang['stix0015'] = "letzer Monat";
|
||||
$lang['stix0016'] = "Aktive / Inaktive Zeit (aller User)";
|
||||
$lang['stix0017'] = "Versionen (aller User)";
|
||||
$lang['stix0018'] = "Nationalitäten (aller User)";
|
||||
$lang['stix0019'] = "Plattformen (aller User)";
|
||||
$lang['stix0020'] = "Server Details";
|
||||
$lang['stix0023'] = "Server Status";
|
||||
$lang['stix0024'] = "Online";
|
||||
$lang['stix0025'] = "Offline";
|
||||
$lang['stix0026'] = "User (Online / Max)";
|
||||
$lang['stix0027'] = "Anzahl aller Channel";
|
||||
$lang['stix0028'] = "Server Ping (Mittelwert)";
|
||||
$lang['stix0029'] = "Eingehende Daten insg.";
|
||||
$lang['stix0030'] = "Ausgehende Daten insg.";
|
||||
$lang['stix0031'] = "Server online seit";
|
||||
$lang['stix0032'] = "vor Offlineschaltung:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Tage, <span id=\"hours\">00</span> Stunden, <span id=\"minutes\">00</span> Min., <span id=\"seconds\">00</span> Sek.";
|
||||
$lang['stix0034'] = "Paketverlust (Mittelwert)";
|
||||
$lang['stix0035'] = " ";
|
||||
$lang['stix0036'] = "Server Name";
|
||||
$lang['stix0037'] = "Server Adresse (Host Adresse : Port)";
|
||||
$lang['stix0038'] = "Server Passwort";
|
||||
$lang['stix0039'] = "Nein (Öffentlich)";
|
||||
$lang['stix0040'] = "Ja (Privat)";
|
||||
$lang['stix0041'] = "Server ID";
|
||||
$lang['stix0042'] = "Server Plattform";
|
||||
$lang['stix0043'] = "Server Version";
|
||||
$lang['stix0044'] = "Server Erstelldatum (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Report an Serverliste";
|
||||
$lang['stix0046'] = "Aktiv";
|
||||
$lang['stix0047'] = "Deaktiviert";
|
||||
$lang['stix0048'] = "nicht genügend Daten ...";
|
||||
$lang['stix0049'] = "Online Zeit aller User / Monat";
|
||||
$lang['stix0050'] = "Online Zeit aller User / Woche";
|
||||
$lang['stix0051'] = "TeamSpeak hat gefailed, daher kein Erstelldatum...";
|
||||
$lang['stmy0001'] = "Meine Statistiken";
|
||||
$lang['stmy0002'] = "Rank";
|
||||
$lang['stmy0003'] = "Datenbank ID:";
|
||||
$lang['stmy0004'] = "Eindeutige Client ID:";
|
||||
$lang['stmy0005'] = "Insg. Verbunden zum TS";
|
||||
$lang['stmy0006'] = "Startzeitpunkt der Statistiken:";
|
||||
$lang['stmy0007'] = "Gesamte online Zeit:";
|
||||
$lang['stmy0008'] = "Online Zeit der letzten 7 Tage:";
|
||||
$lang['stmy0009'] = "Online Zeit der letzten 30 Tage:";
|
||||
$lang['stmy0010'] = "Errungenschaften:";
|
||||
$lang['stmy0011'] = "Fortschritt Errungenschaft Zeit";
|
||||
$lang['stmy0012'] = "Zeit: Legendär";
|
||||
$lang['stmy0013'] = "Da du bereits %s Stunden auf dem Server online bist.";
|
||||
$lang['stmy0014'] = "Abgeschlossen";
|
||||
$lang['stmy0015'] = "Zeit: Gold";
|
||||
$lang['stmy0016'] = "% erreicht für Legendär";
|
||||
$lang['stmy0017'] = "Zeit: Silber";
|
||||
$lang['stmy0018'] = "% erreicht für Gold";
|
||||
$lang['stmy0019'] = "Zeit: Bronze";
|
||||
$lang['stmy0020'] = "% erreicht für Silber";
|
||||
$lang['stmy0021'] = "Zeit: Unranked";
|
||||
$lang['stmy0022'] = "% erreicht für Bronze";
|
||||
$lang['stmy0023'] = "Fortschritt Errungenschaft Verbindungen";
|
||||
$lang['stmy0024'] = "Verbindungen: Legendär";
|
||||
$lang['stmy0025'] = "Da du bereits %s zum Server verbunden warst.";
|
||||
$lang['stmy0026'] = "Verbindungen: Gold";
|
||||
$lang['stmy0027'] = "Verbindungen: Silber";
|
||||
$lang['stmy0028'] = "Verbindungen: Bronze";
|
||||
$lang['stmy0029'] = "Verbindungen: Unranked";
|
||||
$lang['stmy0030'] = "Fortschritt nächste Servergruppe";
|
||||
$lang['stnv0001'] = "Server News";
|
||||
$lang['stnv0002'] = "Schließen";
|
||||
$lang['stnv0003'] = "Client Informationen aktualisieren";
|
||||
$lang['stnv0004'] = "Benutze diese Funktion, wenn sich deine TS3 Daten geändert haben, wie z.B. dein Username.";
|
||||
$lang['stnv0005'] = "Du musst hierfür mit dem TS3 Server verbunden sein!";
|
||||
$lang['stnv0006'] = "Aktualisieren";
|
||||
$lang['stnv0007'] = "Battle Area - Seiteninhalt";
|
||||
$lang['stnv0008'] = "Du kannst dich mit anderen Usern battle.";
|
||||
$lang['stnv0009'] = "So lange das Battle läuft, wird die online Zeit bzw. aktive Zeit gewertet.";
|
||||
$lang['stnv0010'] = "Wenn das Battle abgeschlossen ist, gewinnt der User, welcher die höchste online Zeit bzw. aktive Zeit hat..";
|
||||
$lang['stnv0011'] = "(Die Standard Battle Dauer ist 48 Stunden)";
|
||||
$lang['stnv0012'] = "Der Sieger erhält einen Preis, welcher zu einem eigens bestimmten Zeitpunkt eingelöst werden kann.";
|
||||
$lang['stnv0013'] = "Dieser wird auf der Seite <a href=\"my_stats.php\">Meine Statistiken</a> angezeigt.";
|
||||
$lang['stnv0014'] = "(Kann sein ein Zeit Boost(2x) für 8 Stunden, instant online Zeit (4 Stunden), etc.";
|
||||
$lang['stnv0015'] = "Diese Boosts können benutzt werden, um z.B. die Chancen auf den Top User der Woche zu erhöhen.";
|
||||
$lang['stnv0016'] = "nicht verfügbar";
|
||||
$lang['stnv0017'] = "Du bist nicht mit dem TS3 Server verbunden, daher können kein Daten angezeigt werden.";
|
||||
$lang['stnv0018'] = "Bitte verbinde dich mit dem TS3 Server und aktualisiere anschließend die Session über den Aktualisierungs-Button oben rechts in der Ecke.";
|
||||
$lang['stnv0019'] = "Statistiken - Inhaltserläuterung";
|
||||
$lang['stnv0020'] = "Diese Seite zeigt u.a. eine Übersicht deiner persönlichen Statistiken und Aktivität auf dem TS3 Server.";
|
||||
$lang['stnv0021'] = "Die Informationen wurden gesammelt seit Beginn des Ranksystems, nicht seit Beginn des TS3 Servers.";
|
||||
$lang['stnv0022'] = "Die Seite erhält ihre Daten aus einer Datenbank. Es ist also möglich, dass die angezeigten Werte von den live Werten abweichen.";
|
||||
$lang['stnv0023'] = "Die Werte innerhalb der Donut-Charts können von der Anzahl der User abweichen. Hintergrund ist, dass die Daten in älteren Versionen des Ranksystems nicht gesammelt wurden.";
|
||||
$lang['stnv0024'] = "Ranksystem - Statistiken";
|
||||
$lang['stnv0025'] = "Anzahl Einträge";
|
||||
$lang['stnv0026'] = "alle";
|
||||
$lang['stnv0027'] = "Die Informationen auf dieser Seite scheinen veraltet! Es scheint, das Ranksystem ist nicht mehr mit dem TS3 verbunden.";
|
||||
$lang['stnv0028'] = "(Du bist nicht zum TS3 verbunden!)";
|
||||
$lang['stnv0029'] = "Rank-Liste";
|
||||
$lang['stnv0030'] = "Ranksystem Info";
|
||||
$lang['stnv0031'] = "Über das Suchfeld können nach Teile im Clientnamen, der eindeutigen Client-ID und der Client-Datenbank-ID gesucht werden.";
|
||||
$lang['stnv0032'] = "Es ist auch möglich bestimmte Filterregeln anzuwenden (siehe unterhalb). Der Filter wird auch im Suchfeld hinterlegt.";
|
||||
$lang['stnv0033'] = "Kombinationen von Filter und einem Suchwert sind möglich. Trage hierfür den/die Filter gefolgt von dem Suchwert ein.";
|
||||
$lang['stnv0034'] = "Auch ist es möglich mehrere Filter zu kombinieren. Trage diese einfach fortlaufend in das Suchfeld ein.";
|
||||
$lang['stnv0035'] = "<u>Beispiel:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Zeigt nur Clients an, welche ausgeschlossen sind (Client, Severgruppen oder Channel-Ausnahme).";
|
||||
$lang['stnv0037'] = "Zeigt nur Clients an, welche nicht ausgeschlossen sind.";
|
||||
$lang['stnv0038'] = "Zeigt nur Clients an, welche online sind";
|
||||
$lang['stnv0039'] = "Zeigt nur Clients an, welche nicht online sind";
|
||||
$lang['stnv0040'] = "Zeigt nur Clients an, welche sich in einer bestimmten Servergruppe befinden. Stellt das aktuelle Level (Rang) dar.<br>Ersetze <i>GROUPID</i> mi der gewünschten Servergruppen ID.";
|
||||
$lang['stnv0041'] = "Zeigt nur Clients an, welche dem ausgewählten 'zuletzt gesehen' Zeitraum entsprechen.<br>Ersetze <i>OPERATOR</i> mit '<' oder '>' oder '=' oder '!='.<br>Und ersetze <i>TIME</i> mit einem Zeitstempel (Timestamp) oder Datum mit im Format 'Y-m-d H-i' (Beispiel: 2016-06-18 20-25).<br>Vollständiges Beispiel: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Zeigt nur Clients an, welche sich im definierten Land befinden.<br>Ersetze <i>TS3-COUNTRY-CODE</i> mit dem gewünschten Land.<br>Für eine Liste der gültigen Ländercodes, bitte nach dem 'ISO 3166-1 alpha-2' googlen.";
|
||||
$lang['stri0001'] = "Ranksystem Informationen";
|
||||
$lang['stri0002'] = "Was ist das Ranksystem?";
|
||||
$lang['stri0003'] = "Ein TS3 Bot, der automatisch Servergruppen an User für online Zeit oder aktive Zeit auf einem TeamSpeak 3 Server zuweist. Weiterhin sammelt es diverse Statistiken und stellt diese hier dar.";
|
||||
$lang['stri0004'] = "Wer hat das Ranksystem erstellt?";
|
||||
$lang['stri0005'] = "Wann wurde das Ranksystem erstellt?";
|
||||
$lang['stri0006'] = "Erste Alpha Version: 05/10/2014.";
|
||||
$lang['stri0007'] = "Erste Beta Version: 01/02/2015.";
|
||||
$lang['stri0008'] = "Die neuste Version kannst du auf der <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a> sehen.";
|
||||
$lang['stri0009'] = "Wie wurde das Ranksystem erstellt?";
|
||||
$lang['stri0010'] = "Das Ranksystem basiert auf";
|
||||
$lang['stri0011'] = "Es nutzt weiterhin die folgenden Programmbibliotheken:";
|
||||
$lang['stri0012'] = "Ein spezieller Danke ergeht an:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - für die russische Übersetzung";
|
||||
$lang['stri0014'] = "Bejamin Frost - für die Initialisierung des Bootstrap Designs";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - für die italienische Übersetzung";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - für die Initiierung der arabischen Übersetzung";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - für die Initiierung der rumänischen Übersetzung";
|
||||
$lang['sttw0001'] = "Top User";
|
||||
$lang['sttw0002'] = "der Woche";
|
||||
$lang['sttw0003'] = "mit %s Stunden online Zeit";
|
||||
$lang['sttw0004'] = "Top 10 im Vergleich";
|
||||
$lang['sttw0005'] = "Stunden (definiert 100 %)";
|
||||
$lang['sttw0006'] = "%s Stunden (%s%)";
|
||||
$lang['sttw0007'] = "Top 10 Statistiken";
|
||||
$lang['sttw0008'] = "Top 10 vs Andere; Online Zeit";
|
||||
$lang['sttw0009'] = "Top 10 Vs Others; Aktive Zeit";
|
||||
$lang['sttw0010'] = "Top 10 Vs Others; Inaktive Zeit";
|
||||
$lang['sttw0011'] = "Top 10 (in Stunden)";
|
||||
$lang['sttw0012'] = "Andere %s User (in Stunden)";
|
||||
$lang['sttw0013'] = "mit %s Stunden aktive Zeit";
|
||||
$lang['sttm0001'] = "des Monats";
|
||||
$lang['stta0001'] = "aller Zeiten";
|
||||
$lang['upinf'] = "Eine neue Version des Ranksystems ist verfügbar. Informiere Clients auf dem Server...";
|
||||
$lang['upmsg'] = "\nHey, eine neue Version des [B]Ranksystems[/B] ist verfügbar!\n\naktuelle Version: %s\n[B]neue Version: %s[/B]\n\nBitte schaue auf unsere Homepage für weitere Informationen [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Datenbank-Update erfolgreich durchgeführt";
|
||||
$lang['upuser'] = "User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) erhält eine neue ges. online Zeit von %s (davon aktiv: %s).";
|
||||
$lang['upuserboost'] = "User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) erhält eine neue ges. online Zeit von %s (davon aktiv: %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "Die eindeutige Client-ID %s konnte auf dem TeamSpeak nicht erreicht werden!";
|
||||
$lang['upusrinf'] = "User %s wurde erfolgreich benachrichtigt.";
|
||||
$lang['user'] = "Benutzername";
|
||||
$lang['wiaction'] = "ausführen";
|
||||
$lang['wiboost'] = "Boost";
|
||||
$lang['wiboostdesc'] = "Gebe einen User auf dem TeamSpeak Server eine Servergruppe (ist manuell zu erstellen), welche hier für das Ranksystem als Boost Gruppe deklariert werden kann. Definiere hierfür noch einen Faktor (z.B. 2x) und eine Zeit, wie lange der Boost gewährt werden soll.<br>Umso höher der Faktor, umso schneller erreicht ein User den nächst höheren Rang.<br>Ist die Zeit abgelaufen, so wird dem betroffenen User die Servergruppe automatisch entfernt. Die Zeit beginnt in dem Moment zu laufen, in dem der User die Servergruppe erhält.<br><br>Servergruppen-ID=> Faktor=> Zeit (in Sekunden)<br><br>Beispiel:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>Hier werden den Usern in der Servergruppe mit der ID 12 dem Faktor 2 für 6000 Sekunden, den Usern in der Servergruppe 13 dem Faktor 3 für 2500 Sekunden gewährt, und so weiter...";
|
||||
$lang['wibot1'] = "Der Ranksystem Bot sollte gestoppt sein. Für mehr Informationen bitte die Log unterhalb prüfen!";
|
||||
$lang['wibot2'] = "Der Ranksystem Bot sollte gestartet sein. Für mehr Informationen bitte die Log unterhalb prüfen!";
|
||||
$lang['wibot3'] = "Der Ranksystem Bot sollte neu gestartet sein. Für mehr Informationen bitte die Log unterhalb prüfen!";
|
||||
$lang['wibot4'] = "Start / Stop Ranksystem Bot";
|
||||
$lang['wibot5'] = "Bot starten";
|
||||
$lang['wibot6'] = "Bot stoppen";
|
||||
$lang['wibot7'] = "Bot neustarten";
|
||||
$lang['wibot8'] = "Ranksystem Log (Auszug):";
|
||||
$lang['wibot9'] = "Bitte fülle alle erforderlichen Felder aus, bevor der Ranksystem Bot gestartet werden kann!";
|
||||
$lang['wichdbid'] = "Client-Datenbank-ID Reset";
|
||||
$lang['wichdbiddesc'] = "Setzt die online Zeit eines Users zurück, wenn sich seine TeamSpeak Client-Datenbank-ID ändert.<br><br>Beispiel:<br>Wird ein Client vom TeamSpeak Server gelöscht, so erhält er mit der nächsten Verbindung zum Server eine neue Client-Datenbank-ID.";
|
||||
$lang['wiconferr'] = "Es ist ein Fehler in der Konfiguration des Ranksystems. Bitte prüfe im Webinterface die Kern-Einstellungen auf Richtigkeit. Besonders sollte die Einstellung 'Rangsteigerung' geprüft werden!";
|
||||
$lang['widaform'] = "Datumsformat";
|
||||
$lang['widaformdesc'] = "Gebe ein Datumsformat zur Anzeige vor.<br><br>Beispiel:<br>%a Tage, %h Std., %i Min., %s Sek.";
|
||||
$lang['widbcfgsuc'] = "Datenbank Einstellungen erfolgreich gespeichert.";
|
||||
$lang['widbcfgerr'] = "Fehler beim Speichern der Datenbank Einstellungen! Verbindung zur Datenbank oder speichern der 'other/dbconfig.php' nicht möglich.";
|
||||
$lang['widelcld'] = "lösche Clients";
|
||||
$lang['widelcldgrp'] = "Servergruppen zurücksetzen";
|
||||
$lang['widelcldgrpdesc']= "Das Ranksystem merkt sich die vergebenen Servergruppen, sodass nicht mit jedem Lauf der worker.php diese nochmals überprüft bzw. vergeben werden.<br><br>Mit dieser Funktion ist es möglich, dieses Wissen einmalig zurückzusetzen. Dadurch versucht das Ranksystem alle User (welche auf dem TS3 Server online sind) in die aktuell gültige Servergruppe zu setzen.<br>Für jeden User, welcher eine Servergruppe erhält bzw. in der vorhanden verbleibt, wird die Wissensdatenbank wie zu Anfang beschrieben wieder aufgebaut.<br><br>Diese Funktion kann hilreich sein, wenn sich User nicht in der Servergruppe befinden, welche für die jeweilige online Zeit vorgesehen ist.<br><br>Achtung: Bitte diese Funktion in einem Moment ausführen, in dem für nächsten Minuten kein Rankup ansteht!!! Das Ranksystem kann dann nämlich die alten Gruppen entfernen, da es hiervon nichts mehr weiß ;-)";
|
||||
$lang['widelclddesc'] = "Lösche zuvor selektierte User aus der Ranksystem Datenbank.<br><br>Hiermit bleiben die Userdaten auf dem TeamSpeak Server unberührt!";
|
||||
$lang['widelsg'] = "entferne aus Servergruppen";
|
||||
$lang['widelsgdesc'] = "Wähle, ob Clients auch aus den Servergruppen entfernt werden sollen, wenn sie aus der Ranksystem Datenbank gelöscht werden.<br><br>Es werden nur Servergruppen beachtet, welche das Ranksystem betreffen!";
|
||||
$lang['wideltime'] = "Löschzeitraum";
|
||||
$lang['wideltimedesc'] = "Lösche alte Clients aus aus der Ranksystem Datenbank.<br>Gib eine Zeit in Sekunden ein, welche ein User nicht mehr online war, damit er gelöscht wird.<br><br>0 - löscht alle User aus dem Ranksystem<br><br>Hiermit bleiben die Userdaten auf dem TeamSpeak Server unberührt!";
|
||||
$lang['wiexcid'] = "Channel-Ausnahmen";
|
||||
$lang['wiexciddesc'] = "Eine mit Komma getrennte Liste von den Channel-IDs, die nicht am Ranksystem teilnehmen sollen.<br><br>Halten sich User in einem der aufgelisteten Channel auf, so wird die Zeit darin vollständig ignoriert. Es wird weder die online Zeit, noch die Idle Zeit gewertet.<br><br>Sinn macht diese Funktion mit dem Modus 'online Zeit', da hier z.B. AFK Räume ausgeschlossen werden können.<br>Mit dem Modus 'aktive Zeit' ist diese Funktion sinnlos, da z.B. in AFK Räumen die Idle-Zeit abgezogen und somit sowieso nicht gewertet würde.<br><br>Befindet sich ein User in einem ausgeschlossenen Channel, so wird er für diese Zeit als 'vom Ranksystem ausgeschlossen' vermerkt. Der User erscheint damit auch nicht mehr in der Liste 'stats/list_rankup.php', sofern ausgeschlossene Clients dort nicht angezeigt werden sollen (Statistik Seite - ausgeschl. Clients).";
|
||||
$lang['wiexgrp'] = "Servergruppen-Ausnahmen";
|
||||
$lang['wiexgrpdesc'] = "Eine mit Komma getrennte Liste von Servergruppen-IDs, welche nicht am Ranksystem teilnehmen sollen.<br><br>User in mindestens einer dieser Gruppen sind von Rangsteigerungen ausgenommen.";
|
||||
$lang['wiexuid'] = "Client-Ausnahmen";
|
||||
$lang['wiexuiddesc'] = "Eine mit Komma getrennte Liste von eindeutigen Client-IDs, welche nicht am Ranksystem teilnehmen sollen.<br><br>Aufgelistete User sind von Rangsteigerungen ausgenommen.";
|
||||
$lang['wigrptime'] = "Rangsteigerung Definition";
|
||||
$lang['wigrptimedesc'] = "Definiere hier, nach welcher Zeit ein User automatisch in eine vorgegebene Servergruppe gelangen soll.<br><br>Zeit (Sekunden)=>Servergruppen ID<br><br>Entscheidend hierfür ist die 'online Zeit' bzw. die 'aktive Zeit' des Users, je nach Einstellung des Modus.<br><br>Jeder Eintrag ist vom nächsten durch ein Komma zu separieren.<br><br>Die Zeiten sind kummulativ zu hinterlegen.<br><br>Beispiel:<br>60=>9,120=>10,180=>11<br><br>Hier werden die User nach 60 Sekunden in die Servergruppe 9, nach wiederum 60 Sekunden in die Servergruppe 10, usw..., hinzugefügt.";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Modus)";
|
||||
$lang['wihlcfg'] = "Kern-Einstellungen";
|
||||
$lang['wihldb'] = "Datenbank";
|
||||
$lang['wihlmsg'] = "Benachrichtigungen";
|
||||
$lang['wihlsty'] = "Statistik Seite";
|
||||
$lang['wihlts'] = "TeamSpeak";
|
||||
$lang['wihlvs'] = "Sonstiges";
|
||||
$lang['wiignidle'] = "Ignoriere Idle";
|
||||
$lang['wiignidledesc'] = "Lege eine Zeit fest, bis zu der die Idlezeit eines Users ignoriert werden soll.<br><br>Wenn ein Client nichts auf dem Server unternimmt (=Idle), wird diese Zeit vom Ranksystem notiert. Mit dieser Funktion wird die Idlezeit eines User bis zur definierten Grenze nicht als Idlezeit gewertet. Erst wenn der definierte Wert überschritten wird, zählt sie ab diesem Zeitpunkt für das Ranksystem auch als Idlezeit.<br><br>Diese Funktion spielt nur in Verbindung mit dem Modus 'aktive Zeit' eine Rolle.<br>Sinn der Funktion ist es z.B. die Zeit des Zuhörens bei Gesprächen als Aktivität zu werten.<br><br>0= Deaktivieren der Funktion<br><br>Beispiel:<br>Ignoriere Idle= 600 (Sekunden)<br>Ein Client hat einen Idle von 8 Minunten.<br>Folge:<br>Die 8 Minuten Idle werden ignoriert und er erhält demnach diese Zeit als aktive Zeit. Wenn sich die Idlezeit nun auf über 12 Minuten erhöht, so wird die Zeit über 10 Minuten, also 2 Minuten, auch als Idlezeit gewertet.";
|
||||
$lang['wilogout'] = "Abmelden";
|
||||
$lang['wilog'] = "Log-Pfad";
|
||||
$lang['wilogdesc'] = "Pfad in dem das Logfile des Ranksystems geschrieben werden soll.<br><br>Beispiel:<br>/var/logs/ranksystem/<br><br>Beachte, dass der Webuser Schreibrechte in dem Verzeichnis hat.";
|
||||
$lang['wimsgmsg'] = "Nachricht";
|
||||
$lang['wimsgmsgdesc'] = "Definiere eine Nachricht, welche ein User erhält, wenn er im Rang aufsteigt.<br><br>Die Nachricht wird über TS3 als private Text-Nachricht versendet. Daher können alle bekannten BB-Codes genutzt werden, die auch sonst in Text-Nachrichten funktionieren.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Weiterhin kann die bisher verbrachte Zeit mittels Argumenten angegeben werden:<br>%1\$s - Tage<br>%2\$s - Stunden<br>%3\$s - Minuten<br>%4\$s - Sekunden<br><br>Beispiel:<br>Hey,\\ndu bist im Rang gestiegen, da du bereits %1\$s Tage, %2\$s Stunden und %3\$s Minuten mit unserem TS3 Server verbunden bist.[B]Weiter so![/B] ;-)";
|
||||
$lang['wimsgusr'] = "Benachrichtigung Rangsteigerung";
|
||||
$lang['wimsgusrdesc'] = "Informiere den User per privater Textnachricht über seine Rangsteigerung.";
|
||||
$lang['winav1'] = "TeamSpeak";
|
||||
$lang['winav2'] = "Datenbank";
|
||||
$lang['winav3'] = "Kern";
|
||||
$lang['winav4'] = "Anderes";
|
||||
$lang['winav5'] = "Benachrichtigung";
|
||||
$lang['winav6'] = "Statistik Seite";
|
||||
$lang['winav7'] = "Administration";
|
||||
$lang['winav8'] = "Start / Stop Bot";
|
||||
$lang['winav9'] = "Update verfügbar!";
|
||||
$lang['winav10'] = "Bitte nutze das Webinterface nur via %s HTTPS%s Eine Verschlüsselung ist wichtig um die Privatsphäre und Sicherheit zu gewährleisten.%sUm HTTPS nutzen zu können, muss der Webserver eine SSL Verbindung unterstützen.";
|
||||
$lang['wiselcld'] = "selektiere User";
|
||||
$lang['wiselclddesc'] = "Wähle User anhand des letzt bekannten Usernamen aus. Hierfür einfach losschreiben.<br>Mehrfachselektionen sind kommagetrennt möglich, welche automatisch vorgenommen werden.<br><br>Mit den selektierten Usern kann im nächsten Schritt eine Aktion gewählt werden.";
|
||||
$lang['wishcolas'] = "aktuelle Servergruppe";
|
||||
$lang['wishcolasdesc'] = "Zeige Spalte 'aktuelle Servergruppe' in der stats/list_rankup.php";
|
||||
$lang['wishcolat'] = "aktive Zeit";
|
||||
$lang['wishcolatdesc'] = "Zeige Spalte 'ges. aktive Zeit' in der stats/list_rankup.php";
|
||||
$lang['wishcolcld'] = "Client-Name";
|
||||
$lang['wishcolclddesc'] = "Zeige Spalte 'Client-Name' in der stats/list_rankup.php";
|
||||
$lang['wishcoldbid'] = "Datenbank-ID";
|
||||
$lang['wishcoldbiddesc']= "Zeige Spalte 'Client-Datenbank-ID' in der stats/list_rankup.php";
|
||||
$lang['wishcolit'] = "idle Zeit";
|
||||
$lang['wishcolitdesc'] = "Zeige Spalte 'ges. idle Zeit' in der stats/list_rankup.php";
|
||||
$lang['wishcolls'] = "zuletzt gesehen";
|
||||
$lang['wishcollsdesc'] = "Zeige Spalte 'zuletzt gesehen' in der stats/list_rankup.php";
|
||||
$lang['wishcolnx'] = "nächster rank up";
|
||||
$lang['wishcolnxdesc'] = "Zeige Spalte 'nächster Rang' in der stats/list_rankup.php";
|
||||
$lang['wishcolot'] = "online Zeit";
|
||||
$lang['wishcolotdesc'] = "Zeige Spalte 'ges. online Zeit' in der stats/list_rankup.php";
|
||||
$lang['wishcolrg'] = "Rang";
|
||||
$lang['wishcolrgdesc'] = "Zeige Spalte 'Rang' in der stats/list_rankup.php";
|
||||
$lang['wishcolsg'] = "nächste Servergruppe";
|
||||
$lang['wishcolsgdesc'] = "Zeige Spalte 'nächste Servergruppe' in der stats/list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc']= "Zeige Spalte 'eindeutige Client-ID' in der stats/list_rankup.php";
|
||||
$lang['wishexcld'] = "ausgeschl. Clients";
|
||||
$lang['wishexclddesc'] = "Zeige User in der list_rankup.php, welche ausgeschlossen sind und demnach nicht am Ranksystem teilnehmen.";
|
||||
$lang['wishexgrp'] = "ausgeschl. Servergruppen";
|
||||
$lang['wishexgrpdesc'] = "Zeige User in der list_rankup.php, welche über die 'Servergruppen-Ausnahmen' nicht am Ranksystem teilnehmen.";
|
||||
$lang['wishhicld'] = "User in höchestem Rang";
|
||||
$lang['wishhiclddesc'] = "Zeige User in der list_rankup.php, welche den höchsten Rang erreicht haben.";
|
||||
$lang['wisupidle'] = "Modus";
|
||||
$lang['wisupidledesc'] = "Es gibt zwei Ausprägungen, wie Zeiten gewertet werden können und dann für eine Rangsteigerung herangezogen werden.<br><br>1) online Zeit: Hier wird die reine online Zeit des Users beachtet (siehe Spalte 'ges. online Zeit' in der stats/list_rankup.php).<br>2) aktive Zeit: Hier wird von der online Zeit eines Users noch die inaktive Zeit (Idle) abgezogen (siehe Spalte 'ges. aktive Zeit' in der stats/list_rankup.php).<br><br><br>Eine Umstellung des Modus mit einer bereits länger laufenden Datenbank wird nicht empfohlen, kann aber funktionieren.";
|
||||
$lang['wisvconf'] = "speichern";
|
||||
$lang['wisvsuc'] = "Änderungen erfolgreich gesichert!";
|
||||
$lang['wisvres'] = "Damit die Änderungen wirksam werden ist ein Neustart des Ranksystems erforderlich!";
|
||||
$lang['witime'] = "Zeitzone";
|
||||
$lang['witimedesc'] = "Wähle die Zeitzone, die für den Sever gilt.";
|
||||
$lang['wits3dch'] = "Default Channel";
|
||||
$lang['wits3dchdesc'] = "Die channel-ID, mit der sich der Bot verbindet.<br><br>In diesem Channel wechselt der Bot nach dem Verbinden mit dem TeamSpeak Server.";
|
||||
$lang['wits3host'] = "TS3 Hostadresse";
|
||||
$lang['wits3hostdesc'] = "TeamSpeak 3 Server Adresse<br>(IP oder DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "Mit dem Slowmode werden die Query-Anfragen an den TeamSpeak Server reduziert. Dies schützt vor einem Ban aufgrund von flooding.<br>TeamSpeak Query Befehle werden mit dieser Funktion verzögert abgeschickt.<br><br>!!! AUCH REDUZIERT ER DIE CPU USAGE !!!<br><br>Die Aktivierung ist nicht empfohlen, wenn nicht benötigt. Die Verzögerung (delay) erhöht die Laufzeit eines Durchgangs des Bots, dadurch wird er unpräziser.";
|
||||
$lang['wits3qnm'] = "Botname";
|
||||
$lang['wits3qnm2'] = "2. Botname";
|
||||
$lang['wits3qnm2desc'] = "Ein zweiter Botname, falls der erste bereits genutzt wird.";
|
||||
$lang['wits3qnmdesc'] = "Der Name, mit dem die Query-Verbindung augebaut werden soll.<br>Der Name kann frei gewählt werden.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Passwort";
|
||||
$lang['wits3querpwdesc']= "TeamSpeak 3 Query Passwort<br>Passwort des Query Benutzers";
|
||||
$lang['wits3querusr'] = "TS3 Query-Benutzer";
|
||||
$lang['wits3querusrdesc']= "TeamSpeak 3 Query Benutzername<br>Standard ist serveradmin<br>Natürlich kann auch ein gesonderter Query-Benutzer erstellt und genutzt werden.<br>Die benötigten Rechte sind hier aufgelistet:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Port";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 Query Port<br>Standard ist 10011 (TCP)<br>andere Werte sollten in der 'ts3server.ini' zu finden sein.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Port";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 Voice Port<br>Standard ist 9987 (UDP)<br>Dieser Port wird zum Verbinden mit dem TS3 Client genutzt.";
|
||||
$lang['wiupcheck'] = "Update Info";
|
||||
$lang['wiupcheckdesc'] = "Ist die Update Info aktiv, werden nachfolgend genannte User mit einer privaten Textnachricht informiert, sobald ein Update verfügbar ist.";
|
||||
$lang['wiuptime'] = "Intervall";
|
||||
$lang['wiuptimedesc'] = "Gib an alle wie viel Sekunden das Ranksystem prüfen soll, ob ein Update verfügbar ist.<br>Beachte, bei jeder Prüfung werden die hinterlegten User über ein verfügbares Update benachrichtigt. Ist kein hinterlegter User online, wird mit dem nächsten Intervall versucht zu benachrichtigen.";
|
||||
$lang['wiupuid'] = "Empfänger";
|
||||
$lang['wiupuiddesc'] = "Eine Komma getrennte Liste von eindeutigen Client-IDs, welche via privater Textnachricht auf dem TeamSpeak über ein Update informiert werden sollen.";
|
||||
$lang['wivlang'] = "Sprache";
|
||||
$lang['wivlangdesc'] = "Sprache des Ranksystems<br><br>de - Deutsch<br>en - english<br>it - italiano<br>ru - русский";
|
||||
$lang['adduser'] = "User %s (eindeutige Client-ID: %s; Client-Datenbank-ID: %s) ist bisher unbekannt -> wurde nun zum Ranksystem hinzugefügt.";
|
||||
$lang['changedbid'] = "User %s (eindeutige Client-ID: %s) hat eine neue TeamSpeak Client-Datenbank-ID (%s). Ersetze die alte Client-Datenbank-ID (%s) und setze die gesammelte Zeiten zurück";
|
||||
$lang['crawl'] = "Scanne nach verbundenen Usern und sammle die online Zeit...";
|
||||
$lang['clean'] = "Scanne nach Usern, welche zu löschen sind...";
|
||||
$lang['cleanc'] = "Clientlöschung";
|
||||
$lang['cleancdesc'] = "Mit dieser Funktion werden alte Clients aus dem Ranksystem gelöscht.<br><br>Hierzu wird die TeamSpeak Datenbank mit dem Ranksystem abgeglichen. Clients, welche nicht mehr in der TeamSpeak Datenbank existieren, werden aus dem Ranksystem gelöscht.<br><br>Diese Funktion kann nur genutzt werden, wenn der 'Slowmode' deaktiviert ist!<br><br><br>Zur automatischen Bereinigung der TeamSpeak Datenbank kann der ClientCleaner genutzt werden:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "Es wurden %s Clients aus der Ranksystem-Datenbank gelöscht, da sie nicht mehr in der TeamSpeak Datenbank vorhanden sind.";
|
||||
$lang['cleanno'] = "Es gab nichts zu löschen...";
|
||||
$lang['cleanp'] = "Löschintervall";
|
||||
$lang['cleanpdesc'] = "Bestimme einen Intervall, wie oft die 'Clientlöschung' laufen soll.<br><br>Angabe der Zeit in Sekunden!<br><br>Empfohlen wird die Clientlöschung nur einmal am Tag laufen zu lassen, da für größere Datenbanken die Laufzeit extrem steigt.";
|
||||
$lang['cleanrs'] = "Clients in der Ranksystem Datenbank: %s";
|
||||
$lang['cleants'] = "Clients in der TeamSpeak Datenbank gefunden: %s (von %s)";
|
||||
$lang['days'] = "%s <small>Tage</small>";
|
||||
$lang['dbconerr'] = "Verbindung zur Datenbank gescheitert: ";
|
||||
$lang['delcldgrpif'] = "Fehler beim Löschen der Servergruppen aus der Datenbank: %s";
|
||||
$lang['delcldgrpsc'] = "Knowledge der Servergruppen für %s User erfolgreich gelöscht.";
|
||||
$lang['delclientsif'] = "%s Clients aus der Ranksystem Datenbank gelöscht!";
|
||||
$lang['delclientssc'] = "%s Clients aus der Ranksystem Datenbank erfolgreich gelöscht!";
|
||||
$lang['errlogin'] = "Benutzername und/oder Passwort sind falsch! Versuche es erneut...";
|
||||
$lang['errlogin2'] = "Brute force Schutz: Bitte versuche es in %s Sekunden erneut!";
|
||||
$lang['errlogin3'] = "Brute force Schutz: Zu viele Fehlversuche. Für 300 Sekunden gesperrt!";
|
||||
$lang['error'] = "Fehler ";
|
||||
$lang['errremgrp'] = "Fehler beim Entfernen des Users mit der eindeutigen Client-ID %s aus der Servergruppe mit der Servergruppen-Datenbank-ID %s!";
|
||||
$lang['errremdb'] = "Fehler beim Löschen des Users mit der eindeutigen Client-ID %s aus der Ranksystem Datenbank!";
|
||||
$lang['errsel'] = "Fehler bei der Auswahl der Bedingungen!<br>ausgewählte User: %s<br>Option 'lösche Clients': %s<br>Option 'ges. online Zeit': %s";
|
||||
$lang['errukwn'] = "Unbekannter Fehler aufgetreten!";
|
||||
$lang['errupcount'] = "Fehler beim Überschreiben der ges. online Zeit %s bei User mit der eindeutigen Client-ID %s!";
|
||||
$lang['highest'] = "höchster Rang erreicht";
|
||||
$lang['install'] = "Installation";
|
||||
$lang['instdb'] = "Installiere Datenbank";
|
||||
$lang['instdbsuc'] = "Datenbank %s wurde erfolgreich angelegt.";
|
||||
$lang['insterr1'] = "ACHTUNG: Du versuchst gerade das Ranksystem zu installieren, allerdings existiert die Datenbank mit den Namen \"%s\" bereits.<br>Während der Installation wird die Datenbank zunächst vollständig gelöscht!<br>Stelle sicher, dass du das möchtest. Falls nein, wähle einen anderen Datenbank-Namen.";
|
||||
$lang['insterr2'] = "PDO wird benötigt, scheint jedoch nicht installiert zu sein. Installiere <a href=\"http://php.net/manual/de/pdo.installation.php\" target=\"_blank\">PDO</a> und versuche es erneut!";
|
||||
$lang['insterr3'] = "PHP exec wird benötigt, scheint jedoch deaktiviert zu sein. Bitte aktiviere PHP <a href=\http://php.net/manual/de/function.exec.php\" target=\"_blank\">exec</a> und versuche es erneut!";
|
||||
$lang['insterr4'] = "Deine PHP Version (%s) ist unter 5.5.0. Aktualisiere dein PHP und versuche es erneut!";
|
||||
$lang['isntwicfg'] = "Die Datenbankkonfigurationen konnten nicht gespeichert werden! Bitte versehe die 'other/dbconfig.php' mit einem chmod 0777 (für Windows 'Vollzugriff') und versuche es anschließend erneut.";
|
||||
$lang['isntwicfg2'] = "Konfiguriere Webinterface";
|
||||
$lang['isntwichm'] = "Schreibrechte fehlen für Verzeichnis \"%s\". Bitte setze auf dieses einen chmod 777 (für Windows 'Vollzugriff') und starte anschließend das Ranksystem erneut.";
|
||||
$lang['isntwidbhost'] = "DB Hostadresse:";
|
||||
$lang['isntwidbhostdesc'] = "Datenbank Server Adresse<br>(IP oder DNS)";
|
||||
$lang['isntwidbmsg'] = "Datenbank-Fehler: ";
|
||||
$lang['isntwidbname'] = "DB Name:";
|
||||
$lang['isntwidbnamedesc'] = "Name der Datenbank";
|
||||
$lang['isntwidbpass'] = "DB Passwort:";
|
||||
$lang['isntwidbpassdesc'] = "Passwort für die Datenbank";
|
||||
$lang['isntwidbtype'] = "DB Typ:";
|
||||
$lang['isntwidbtypedesc'] = "Datenbank Typ<br><br>Der benötigte PDO Treiber muss installiert sein.<br>Für mehr Informationen beachte die Anforderungen auf http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "DB Benutzer:";
|
||||
$lang['isntwidbusrdesc'] = "Username für die Datenbank";
|
||||
$lang['isntwidel'] = "Bitte lösche noch die Datei 'install.php' vom Webserver und öffne danach das %s um das Ranksystem zu konfigurieren!";
|
||||
$lang['isntwiusr'] = "Benutzer für das Webinterface wurde erfolgreich erstellt.";
|
||||
$lang['isntwiusrcr'] = "Erstelle Webinterface-User";
|
||||
$lang['isntwiusrdesc'] = "Gib einen frei wählbaren Benutzer und ein Passwort für das Webinterface ein. Mit dem Webinterface wird das Ranksystem konfiguriert.";
|
||||
$lang['isntwiusrh'] = "Zugang - Webinterface";
|
||||
$lang['listacsg'] = "aktuelle Servergruppe";
|
||||
$lang['listcldbid'] = "Client-Datenbank-ID";
|
||||
$lang['listexcept'] = "Keine, da ausgeschlossen";
|
||||
$lang['listip'] = "IP Adresse";
|
||||
$lang['listnick'] = "Client-Name";
|
||||
$lang['listnxsg'] = "nächste Servergruppe";
|
||||
$lang['listnxup'] = "nächster Rang";
|
||||
$lang['listrank'] = "Rang";
|
||||
$lang['listseen'] = "zuletzt gesehen";
|
||||
$lang['listsuma'] = "ges. aktive Zeit";
|
||||
$lang['listsumi'] = "ges. idle Zeit";
|
||||
$lang['listsumo'] = "ges. online Zeit";
|
||||
$lang['listuid'] = "eindeutige Client-ID";
|
||||
$lang['login'] = "Login";
|
||||
$lang['nocount'] = "User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) ist ein Query-User oder ist mehrmals online (nur erste Verbindung zählt) -> diese wird nicht gewertet!";
|
||||
$lang['noentry'] = "Keine Einträge gefunden..";
|
||||
$lang['pass'] = "Passwort";
|
||||
$lang['queryname'] = "Erster Botname ist bereits in Verwendung. Versuche zweiten Botnamen zu nutzen...";
|
||||
$lang['sccrmcld'] = "User mit der eindeutigen Client-ID %s wurde erfolgreich aus der Ranksystem Datenbank gelöscht.";
|
||||
$lang['sccupcount'] = "User mit der eindeutigen Client-ID %s erhielt erfolgreich ein neue ges. online Zeit von %s.";
|
||||
$lang['setontime'] = "ges. online Zeit";
|
||||
$lang['setontimedesc'] = "Gib eine neue ges. online Zeit ein, welche bei den zuvor selektierten Usern hinterlegt werden soll. Mit dieser wird die alte ges. online Zeit überschrieben.<br><br>Die eingegeben ges. online Zeit wird für die nächsten Rangsteigerungen berücksichtigt.";
|
||||
$lang['sgrpadd'] = "Servergruppe %s zu User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) hinzugefügt.";
|
||||
$lang['sgrprerr'] = "Es ist ein Problem mit den Servergruppen des Users %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) aufgetreten!";
|
||||
$lang['sgrprm'] = "Servergruppe %s von User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) entfernt.";
|
||||
$lang['stix0001'] = "Server Statistiken";
|
||||
$lang['stix0002'] = "Anzahl User";
|
||||
$lang['stix0003'] = "zeige Liste aller User";
|
||||
$lang['stix0004'] = "Online Zeit aller User / Total";
|
||||
$lang['stix0005'] = "zeige Top User aller Zeiten";
|
||||
$lang['stix0006'] = "zeige Top User des Monats";
|
||||
$lang['stix0007'] = "zeige Top User der Woche";
|
||||
$lang['stix0008'] = "Server Nutzung";
|
||||
$lang['stix0009'] = "der letzten 7 Tage";
|
||||
$lang['stix0010'] = "der letzten 30 Tage";
|
||||
$lang['stix0011'] = "der letzten 24 Stunden";
|
||||
$lang['stix0012'] = "wähle Zeitraum";
|
||||
$lang['stix0013'] = "letzten 24 Stunden";
|
||||
$lang['stix0014'] = "letzte Woche";
|
||||
$lang['stix0015'] = "letzer Monat";
|
||||
$lang['stix0016'] = "Aktive / Inaktive Zeit (aller User)";
|
||||
$lang['stix0017'] = "Versionen (aller User)";
|
||||
$lang['stix0018'] = "Nationalitäten (aller User)";
|
||||
$lang['stix0019'] = "Plattformen (aller User)";
|
||||
$lang['stix0020'] = "Server Details";
|
||||
$lang['stix0023'] = "Server Status";
|
||||
$lang['stix0024'] = "Online";
|
||||
$lang['stix0025'] = "Offline";
|
||||
$lang['stix0026'] = "User (Online / Max)";
|
||||
$lang['stix0027'] = "Anzahl aller Channel";
|
||||
$lang['stix0028'] = "Server Ping (Mittelwert)";
|
||||
$lang['stix0029'] = "Eingehende Daten insg.";
|
||||
$lang['stix0030'] = "Ausgehende Daten insg.";
|
||||
$lang['stix0031'] = "Server online seit";
|
||||
$lang['stix0032'] = "vor Offlineschaltung:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Tage, <span id=\"hours\">00</span> Stunden, <span id=\"minutes\">00</span> Min., <span id=\"seconds\">00</span> Sek.";
|
||||
$lang['stix0034'] = "Paketverlust (Mittelwert)";
|
||||
$lang['stix0035'] = " ";
|
||||
$lang['stix0036'] = "Server Name";
|
||||
$lang['stix0037'] = "Server Adresse (Host Adresse : Port)";
|
||||
$lang['stix0038'] = "Server Passwort";
|
||||
$lang['stix0039'] = "Nein (Öffentlich)";
|
||||
$lang['stix0040'] = "Ja (Privat)";
|
||||
$lang['stix0041'] = "Server ID";
|
||||
$lang['stix0042'] = "Server Plattform";
|
||||
$lang['stix0043'] = "Server Version";
|
||||
$lang['stix0044'] = "Server Erstelldatum (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Report an Serverliste";
|
||||
$lang['stix0046'] = "Aktiv";
|
||||
$lang['stix0047'] = "Deaktiviert";
|
||||
$lang['stix0048'] = "nicht genügend Daten ...";
|
||||
$lang['stix0049'] = "Online Zeit aller User / Monat";
|
||||
$lang['stix0050'] = "Online Zeit aller User / Woche";
|
||||
$lang['stix0051'] = "TeamSpeak hat gefailed, daher kein Erstelldatum...";
|
||||
$lang['stmy0001'] = "Meine Statistiken";
|
||||
$lang['stmy0002'] = "Rank";
|
||||
$lang['stmy0003'] = "Datenbank ID:";
|
||||
$lang['stmy0004'] = "Eindeutige Client ID:";
|
||||
$lang['stmy0005'] = "Insg. Verbunden zum TS";
|
||||
$lang['stmy0006'] = "Startzeitpunkt der Statistiken:";
|
||||
$lang['stmy0007'] = "Gesamte online Zeit:";
|
||||
$lang['stmy0008'] = "Online Zeit der letzten 7 Tage:";
|
||||
$lang['stmy0009'] = "Online Zeit der letzten 30 Tage:";
|
||||
$lang['stmy0010'] = "Errungenschaften:";
|
||||
$lang['stmy0011'] = "Fortschritt Errungenschaft Zeit";
|
||||
$lang['stmy0012'] = "Zeit: Legendär";
|
||||
$lang['stmy0013'] = "Da du bereits %s Stunden auf dem Server online bist.";
|
||||
$lang['stmy0014'] = "Abgeschlossen";
|
||||
$lang['stmy0015'] = "Zeit: Gold";
|
||||
$lang['stmy0016'] = "% erreicht für Legendär";
|
||||
$lang['stmy0017'] = "Zeit: Silber";
|
||||
$lang['stmy0018'] = "% erreicht für Gold";
|
||||
$lang['stmy0019'] = "Zeit: Bronze";
|
||||
$lang['stmy0020'] = "% erreicht für Silber";
|
||||
$lang['stmy0021'] = "Zeit: Unranked";
|
||||
$lang['stmy0022'] = "% erreicht für Bronze";
|
||||
$lang['stmy0023'] = "Fortschritt Errungenschaft Verbindungen";
|
||||
$lang['stmy0024'] = "Verbindungen: Legendär";
|
||||
$lang['stmy0025'] = "Da du bereits %s zum Server verbunden warst.";
|
||||
$lang['stmy0026'] = "Verbindungen: Gold";
|
||||
$lang['stmy0027'] = "Verbindungen: Silber";
|
||||
$lang['stmy0028'] = "Verbindungen: Bronze";
|
||||
$lang['stmy0029'] = "Verbindungen: Unranked";
|
||||
$lang['stmy0030'] = "Fortschritt nächste Servergruppe";
|
||||
$lang['stnv0001'] = "Server News";
|
||||
$lang['stnv0002'] = "Schließen";
|
||||
$lang['stnv0003'] = "Client Informationen aktualisieren";
|
||||
$lang['stnv0004'] = "Benutze diese Funktion, wenn sich deine TS3 Daten geändert haben, wie z.B. dein Username.";
|
||||
$lang['stnv0005'] = "Du musst hierfür mit dem TS3 Server verbunden sein!";
|
||||
$lang['stnv0006'] = "Aktualisieren";
|
||||
$lang['stnv0007'] = "Battle Area - Seiteninhalt";
|
||||
$lang['stnv0008'] = "Du kannst dich mit anderen Usern battle.";
|
||||
$lang['stnv0009'] = "So lange das Battle läuft, wird die online Zeit bzw. aktive Zeit gewertet.";
|
||||
$lang['stnv0010'] = "Wenn das Battle abgeschlossen ist, gewinnt der User, welcher die höchste online Zeit bzw. aktive Zeit hat..";
|
||||
$lang['stnv0011'] = "(Die Standard Battle Dauer ist 48 Stunden)";
|
||||
$lang['stnv0012'] = "Der Sieger erhält einen Preis, welcher zu einem eigens bestimmten Zeitpunkt eingelöst werden kann.";
|
||||
$lang['stnv0013'] = "Dieser wird auf der Seite <a href=\"my_stats.php\">Meine Statistiken</a> angezeigt.";
|
||||
$lang['stnv0014'] = "(Kann sein ein Zeit Boost(2x) für 8 Stunden, instant online Zeit (4 Stunden), etc.";
|
||||
$lang['stnv0015'] = "Diese Boosts können benutzt werden, um z.B. die Chancen auf den Top User der Woche zu erhöhen.";
|
||||
$lang['stnv0016'] = "nicht verfügbar";
|
||||
$lang['stnv0017'] = "Du bist nicht mit dem TS3 Server verbunden, daher können kein Daten angezeigt werden.";
|
||||
$lang['stnv0018'] = "Bitte verbinde dich mit dem TS3 Server und aktualisiere anschließend die Session über den Aktualisierungs-Button oben rechts in der Ecke.";
|
||||
$lang['stnv0019'] = "Statistiken - Inhaltserläuterung";
|
||||
$lang['stnv0020'] = "Diese Seite zeigt u.a. eine Übersicht deiner persönlichen Statistiken und Aktivität auf dem TS3 Server.";
|
||||
$lang['stnv0021'] = "Die Informationen wurden gesammelt seit Beginn des Ranksystems, nicht seit Beginn des TS3 Servers.";
|
||||
$lang['stnv0022'] = "Die Seite erhält ihre Daten aus einer Datenbank. Es ist also möglich, dass die angezeigten Werte von den live Werten abweichen.";
|
||||
$lang['stnv0023'] = "Die Werte innerhalb der Donut-Charts können von der Anzahl der User abweichen. Hintergrund ist, dass die Daten in älteren Versionen des Ranksystems nicht gesammelt wurden.";
|
||||
$lang['stnv0024'] = "Ranksystem - Statistiken";
|
||||
$lang['stnv0025'] = "Anzahl Einträge";
|
||||
$lang['stnv0026'] = "alle";
|
||||
$lang['stnv0027'] = "Die Informationen auf dieser Seite scheinen veraltet! Es scheint, das Ranksystem ist nicht mehr mit dem TS3 verbunden.";
|
||||
$lang['stnv0028'] = "(Du bist nicht zum TS3 verbunden!)";
|
||||
$lang['stnv0029'] = "Rank-Liste";
|
||||
$lang['stnv0030'] = "Ranksystem Info";
|
||||
$lang['stnv0031'] = "Über das Suchfeld können nach Teile im Clientnamen, der eindeutigen Client-ID und der Client-Datenbank-ID gesucht werden.";
|
||||
$lang['stnv0032'] = "Es ist auch möglich bestimmte Filterregeln anzuwenden (siehe unterhalb). Der Filter wird auch im Suchfeld hinterlegt.";
|
||||
$lang['stnv0033'] = "Kombinationen von Filter und einem Suchwert sind möglich. Trage hierfür den/die Filter gefolgt von dem Suchwert ein.";
|
||||
$lang['stnv0034'] = "Auch ist es möglich mehrere Filter zu kombinieren. Trage diese einfach fortlaufend in das Suchfeld ein.";
|
||||
$lang['stnv0035'] = "<u>Beispiel:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Zeigt nur Clients an, welche ausgeschlossen sind (Client, Severgruppen oder Channel-Ausnahme).";
|
||||
$lang['stnv0037'] = "Zeigt nur Clients an, welche nicht ausgeschlossen sind.";
|
||||
$lang['stnv0038'] = "Zeigt nur Clients an, welche online sind";
|
||||
$lang['stnv0039'] = "Zeigt nur Clients an, welche nicht online sind";
|
||||
$lang['stnv0040'] = "Zeigt nur Clients an, welche sich in einer bestimmten Servergruppe befinden. Stellt das aktuelle Level (Rang) dar.<br>Ersetze <i>GROUPID</i> mi der gewünschten Servergruppen ID.";
|
||||
$lang['stnv0041'] = "Zeigt nur Clients an, welche dem ausgewählten 'zuletzt gesehen' Zeitraum entsprechen.<br>Ersetze <i>OPERATOR</i> mit '<' oder '>' oder '=' oder '!='.<br>Und ersetze <i>TIME</i> mit einem Zeitstempel (Timestamp) oder Datum mit im Format 'Y-m-d H-i' (Beispiel: 2016-06-18 20-25).<br>Vollständiges Beispiel: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Zeigt nur Clients an, welche sich im definierten Land befinden.<br>Ersetze <i>TS3-COUNTRY-CODE</i> mit dem gewünschten Land.<br>Für eine Liste der gültigen Ländercodes, bitte nach dem 'ISO 3166-1 alpha-2' googlen.";
|
||||
$lang['stri0001'] = "Ranksystem Informationen";
|
||||
$lang['stri0002'] = "Was ist das Ranksystem?";
|
||||
$lang['stri0003'] = "Ein TS3 Bot, der automatisch Servergruppen an User für online Zeit oder aktive Zeit auf einem TeamSpeak 3 Server zuweist. Weiterhin sammelt es diverse Statistiken und stellt diese hier dar.";
|
||||
$lang['stri0004'] = "Wer hat das Ranksystem erstellt?";
|
||||
$lang['stri0005'] = "Wann wurde das Ranksystem erstellt?";
|
||||
$lang['stri0006'] = "Erste Alpha Version: 05/10/2014.";
|
||||
$lang['stri0007'] = "Erste Beta Version: 01/02/2015.";
|
||||
$lang['stri0008'] = "Die neuste Version kannst du auf der <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a> sehen.";
|
||||
$lang['stri0009'] = "Wie wurde das Ranksystem erstellt?";
|
||||
$lang['stri0010'] = "Das Ranksystem basiert auf";
|
||||
$lang['stri0011'] = "Es nutzt weiterhin die folgenden Programmbibliotheken:";
|
||||
$lang['stri0012'] = "Ein spezieller Danke ergeht an:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - für die russische Übersetzung";
|
||||
$lang['stri0014'] = "Bejamin Frost - für die Initialisierung des Bootstrap Designs";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - für die italienische Übersetzung";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - für die Initiierung der arabischen Übersetzung";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - für die Initiierung der rumänischen Übersetzung";
|
||||
$lang['sttw0001'] = "Top User";
|
||||
$lang['sttw0002'] = "der Woche";
|
||||
$lang['sttw0003'] = "mit %s Stunden online Zeit";
|
||||
$lang['sttw0004'] = "Top 10 im Vergleich";
|
||||
$lang['sttw0005'] = "Stunden (definiert 100 %)";
|
||||
$lang['sttw0006'] = "%s Stunden (%s%)";
|
||||
$lang['sttw0007'] = "Top 10 Statistiken";
|
||||
$lang['sttw0008'] = "Top 10 vs Andere; Online Zeit";
|
||||
$lang['sttw0009'] = "Top 10 Vs Others; Aktive Zeit";
|
||||
$lang['sttw0010'] = "Top 10 Vs Others; Inaktive Zeit";
|
||||
$lang['sttw0011'] = "Top 10 (in Stunden)";
|
||||
$lang['sttw0012'] = "Andere %s User (in Stunden)";
|
||||
$lang['sttw0013'] = "mit %s Stunden aktive Zeit";
|
||||
$lang['sttm0001'] = "des Monats";
|
||||
$lang['stta0001'] = "aller Zeiten";
|
||||
$lang['upinf'] = "Eine neue Version des Ranksystems ist verfügbar. Informiere Clients auf dem Server...";
|
||||
$lang['upmsg'] = "\nHey, eine neue Version des [B]Ranksystems[/B] ist verfügbar!\n\naktuelle Version: %s\n[B]neue Version: %s[/B]\n\nBitte schaue auf unsere Homepage für weitere Informationen [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Datenbank-Update erfolgreich durchgeführt";
|
||||
$lang['upuser'] = "User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) erhält eine neue ges. online Zeit von %s (davon aktiv: %s).";
|
||||
$lang['upuserboost'] = "User %s (eindeutige Client-ID: %s; Client-Datenbank-ID %s) erhält eine neue ges. online Zeit von %s (davon aktiv: %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "Die eindeutige Client-ID %s konnte auf dem TeamSpeak nicht erreicht werden!";
|
||||
$lang['upusrinf'] = "User %s wurde erfolgreich benachrichtigt.";
|
||||
$lang['user'] = "Benutzername";
|
||||
$lang['wiaction'] = "ausführen";
|
||||
$lang['wiboost'] = "Boost";
|
||||
$lang['wiboostdesc'] = "Gebe einen User auf dem TeamSpeak Server eine Servergruppe (ist manuell zu erstellen), welche hier für das Ranksystem als Boost Gruppe deklariert werden kann. Definiere hierfür noch einen Faktor (z.B. 2x) und eine Zeit, wie lange der Boost gewährt werden soll.<br>Umso höher der Faktor, umso schneller erreicht ein User den nächst höheren Rang.<br>Ist die Zeit abgelaufen, so wird dem betroffenen User die Servergruppe automatisch entfernt. Die Zeit beginnt in dem Moment zu laufen, in dem der User die Servergruppe erhält.<br><br>Servergruppen-ID=> Faktor=> Zeit (in Sekunden)<br><br>Beispiel:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>Hier werden den Usern in der Servergruppe mit der ID 12 dem Faktor 2 für 6000 Sekunden, den Usern in der Servergruppe 13 dem Faktor 3 für 2500 Sekunden gewährt, und so weiter...";
|
||||
$lang['wibot1'] = "Der Ranksystem Bot sollte gestoppt sein. Für mehr Informationen bitte die Log unterhalb prüfen!";
|
||||
$lang['wibot2'] = "Der Ranksystem Bot sollte gestartet sein. Für mehr Informationen bitte die Log unterhalb prüfen!";
|
||||
$lang['wibot3'] = "Der Ranksystem Bot sollte neu gestartet sein. Für mehr Informationen bitte die Log unterhalb prüfen!";
|
||||
$lang['wibot4'] = "Start / Stop Ranksystem Bot";
|
||||
$lang['wibot5'] = "Bot starten";
|
||||
$lang['wibot6'] = "Bot stoppen";
|
||||
$lang['wibot7'] = "Bot neustarten";
|
||||
$lang['wibot8'] = "Ranksystem Log (Auszug):";
|
||||
$lang['wibot9'] = "Bitte fülle alle erforderlichen Felder aus, bevor der Ranksystem Bot gestartet werden kann!";
|
||||
$lang['wichdbid'] = "Client-Datenbank-ID Reset";
|
||||
$lang['wichdbiddesc'] = "Setzt die online Zeit eines Users zurück, wenn sich seine TeamSpeak Client-Datenbank-ID ändert.<br><br>Beispiel:<br>Wird ein Client vom TeamSpeak Server gelöscht, so erhält er mit der nächsten Verbindung zum Server eine neue Client-Datenbank-ID.";
|
||||
$lang['wiconferr'] = "Es ist ein Fehler in der Konfiguration des Ranksystems. Bitte prüfe im Webinterface die Kern-Einstellungen auf Richtigkeit. Besonders sollte die Einstellung 'Rangsteigerung' geprüft werden!";
|
||||
$lang['widaform'] = "Datumsformat";
|
||||
$lang['widaformdesc'] = "Gebe ein Datumsformat zur Anzeige vor.<br><br>Beispiel:<br>%a Tage, %h Std., %i Min., %s Sek.";
|
||||
$lang['widbcfgsuc'] = "Datenbank Einstellungen erfolgreich gespeichert.";
|
||||
$lang['widbcfgerr'] = "Fehler beim Speichern der Datenbank Einstellungen! Verbindung zur Datenbank oder speichern der 'other/dbconfig.php' nicht möglich.";
|
||||
$lang['widelcld'] = "lösche Clients";
|
||||
$lang['widelcldgrp'] = "Servergruppen zurücksetzen";
|
||||
$lang['widelcldgrpdesc'] = "Das Ranksystem merkt sich die vergebenen Servergruppen, sodass nicht mit jedem Lauf der worker.php diese nochmals überprüft bzw. vergeben werden.<br><br>Mit dieser Funktion ist es möglich, dieses Wissen einmalig zurückzusetzen. Dadurch versucht das Ranksystem alle User (welche auf dem TS3 Server online sind) in die aktuell gültige Servergruppe zu setzen.<br>Für jeden User, welcher eine Servergruppe erhält bzw. in der vorhanden verbleibt, wird die Wissensdatenbank wie zu Anfang beschrieben wieder aufgebaut.<br><br>Diese Funktion kann hilreich sein, wenn sich User nicht in der Servergruppe befinden, welche für die jeweilige online Zeit vorgesehen ist.<br><br>Achtung: Bitte diese Funktion in einem Moment ausführen, in dem für nächsten Minuten kein Rankup ansteht!!! Das Ranksystem kann dann nämlich die alten Gruppen entfernen, da es hiervon nichts mehr weiß ;-)";
|
||||
$lang['widelclddesc'] = "Lösche zuvor selektierte User aus der Ranksystem Datenbank.<br><br>Hiermit bleiben die Userdaten auf dem TeamSpeak Server unberührt!";
|
||||
$lang['widelsg'] = "entferne aus Servergruppen";
|
||||
$lang['widelsgdesc'] = "Wähle, ob Clients auch aus den Servergruppen entfernt werden sollen, wenn sie aus der Ranksystem Datenbank gelöscht werden.<br><br>Es werden nur Servergruppen beachtet, welche das Ranksystem betreffen!";
|
||||
$lang['wideltime'] = "Löschzeitraum";
|
||||
$lang['wideltimedesc'] = "Lösche alte Clients aus aus der Ranksystem Datenbank.<br>Gib eine Zeit in Sekunden ein, welche ein User nicht mehr online war, damit er gelöscht wird.<br><br>0 - löscht alle User aus dem Ranksystem<br><br>Hiermit bleiben die Userdaten auf dem TeamSpeak Server unberührt!";
|
||||
$lang['wiexcid'] = "Channel-Ausnahmen";
|
||||
$lang['wiexciddesc'] = "Eine mit Komma getrennte Liste von den Channel-IDs, die nicht am Ranksystem teilnehmen sollen.<br><br>Halten sich User in einem der aufgelisteten Channel auf, so wird die Zeit darin vollständig ignoriert. Es wird weder die online Zeit, noch die Idle Zeit gewertet.<br><br>Sinn macht diese Funktion mit dem Modus 'online Zeit', da hier z.B. AFK Räume ausgeschlossen werden können.<br>Mit dem Modus 'aktive Zeit' ist diese Funktion sinnlos, da z.B. in AFK Räumen die Idle-Zeit abgezogen und somit sowieso nicht gewertet würde.<br><br>Befindet sich ein User in einem ausgeschlossenen Channel, so wird er für diese Zeit als 'vom Ranksystem ausgeschlossen' vermerkt. Der User erscheint damit auch nicht mehr in der Liste 'stats/list_rankup.php', sofern ausgeschlossene Clients dort nicht angezeigt werden sollen (Statistik Seite - ausgeschl. Clients).";
|
||||
$lang['wiexgrp'] = "Servergruppen-Ausnahmen";
|
||||
$lang['wiexgrpdesc'] = "Eine mit Komma getrennte Liste von Servergruppen-IDs, welche nicht am Ranksystem teilnehmen sollen.<br><br>User in mindestens einer dieser Gruppen sind von Rangsteigerungen ausgenommen.";
|
||||
$lang['wiexuid'] = "Client-Ausnahmen";
|
||||
$lang['wiexuiddesc'] = "Eine mit Komma getrennte Liste von eindeutigen Client-IDs, welche nicht am Ranksystem teilnehmen sollen.<br><br>Aufgelistete User sind von Rangsteigerungen ausgenommen.";
|
||||
$lang['wigrptime'] = "Rangsteigerung Definition";
|
||||
$lang['wigrptimedesc'] = "Definiere hier, nach welcher Zeit ein User automatisch in eine vorgegebene Servergruppe gelangen soll.<br><br>Zeit (Sekunden)=>Servergruppen ID<br><br>Entscheidend hierfür ist die 'online Zeit' bzw. die 'aktive Zeit' des Users, je nach Einstellung des Modus.<br><br>Jeder Eintrag ist vom nächsten durch ein Komma zu separieren.<br><br>Die Zeiten sind kummulativ zu hinterlegen.<br><br>Beispiel:<br>60=>9,120=>10,180=>11<br><br>Hier werden die User nach 60 Sekunden in die Servergruppe 9, nach wiederum 60 Sekunden in die Servergruppe 10, usw..., hinzugefügt.";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Modus)";
|
||||
$lang['wihlcfg'] = "Kern-Einstellungen";
|
||||
$lang['wihldb'] = "Datenbank";
|
||||
$lang['wihlmsg'] = "Benachrichtigungen";
|
||||
$lang['wihlsty'] = "Statistik Seite";
|
||||
$lang['wihlts'] = "TeamSpeak";
|
||||
$lang['wihlvs'] = "Sonstiges";
|
||||
$lang['wiignidle'] = "Ignoriere Idle";
|
||||
$lang['wiignidledesc'] = "Lege eine Zeit fest, bis zu der die Idlezeit eines Users ignoriert werden soll.<br><br>Wenn ein Client nichts auf dem Server unternimmt (=Idle), wird diese Zeit vom Ranksystem notiert. Mit dieser Funktion wird die Idlezeit eines User bis zur definierten Grenze nicht als Idlezeit gewertet. Erst wenn der definierte Wert überschritten wird, zählt sie ab diesem Zeitpunkt für das Ranksystem auch als Idlezeit.<br><br>Diese Funktion spielt nur in Verbindung mit dem Modus 'aktive Zeit' eine Rolle.<br>Sinn der Funktion ist es z.B. die Zeit des Zuhörens bei Gesprächen als Aktivität zu werten.<br><br>0= Deaktivieren der Funktion<br><br>Beispiel:<br>Ignoriere Idle= 600 (Sekunden)<br>Ein Client hat einen Idle von 8 Minunten.<br>Folge:<br>Die 8 Minuten Idle werden ignoriert und er erhält demnach diese Zeit als aktive Zeit. Wenn sich die Idlezeit nun auf über 12 Minuten erhöht, so wird die Zeit über 10 Minuten, also 2 Minuten, auch als Idlezeit gewertet.";
|
||||
$lang['wilogout'] = "Abmelden";
|
||||
$lang['wilog'] = "Log-Pfad";
|
||||
$lang['wilogdesc'] = "Pfad in dem das Logfile des Ranksystems geschrieben werden soll.<br><br>Beispiel:<br>/var/logs/ranksystem/<br><br>Beachte, dass der Webuser Schreibrechte in dem Verzeichnis hat.";
|
||||
$lang['wimsgmsg'] = "Nachricht";
|
||||
$lang['wimsgmsgdesc'] = "Definiere eine Nachricht, welche ein User erhält, wenn er im Rang aufsteigt.<br><br>Die Nachricht wird über TS3 als private Text-Nachricht versendet. Daher können alle bekannten BB-Codes genutzt werden, die auch sonst in Text-Nachrichten funktionieren.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Weiterhin kann die bisher verbrachte Zeit mittels Argumenten angegeben werden:<br>%1\$s - Tage<br>%2\$s - Stunden<br>%3\$s - Minuten<br>%4\$s - Sekunden<br><br>Beispiel:<br>Hey,\\ndu bist im Rang gestiegen, da du bereits %1\$s Tage, %2\$s Stunden und %3\$s Minuten mit unserem TS3 Server verbunden bist.[B]Weiter so![/B] ;-)";
|
||||
$lang['wimsgsn'] = "Server-News";
|
||||
$lang['wimsgsndesc'] = "Definiere eine Nachrict, welche auf der /stats/ Seite unter den Server News gezeigt wird.<br><br>Es können die regulären HTML Funktionen zum Editieren des Layouts benutzt werden.<br><br>Beispiel:<br><b> - <b>für Fettschrift</b><br><u> - <u>zum Unterstreichen</u><br><i> - <i>für Kursiv</i><br><br> - für einen Zeilenumbruch";
|
||||
$lang['wimsgusr'] = "Benachrichtigung Rangsteigerung";
|
||||
$lang['wimsgusrdesc'] = "Informiere den User per privater Textnachricht über seine Rangsteigerung.";
|
||||
$lang['winav1'] = "TeamSpeak";
|
||||
$lang['winav2'] = "Datenbank";
|
||||
$lang['winav3'] = "Kern";
|
||||
$lang['winav4'] = "Anderes";
|
||||
$lang['winav5'] = "Benachrichtigung";
|
||||
$lang['winav6'] = "Statistik Seite";
|
||||
$lang['winav7'] = "Administration";
|
||||
$lang['winav8'] = "Start / Stop Bot";
|
||||
$lang['winav9'] = "Update verfügbar!";
|
||||
$lang['winav10'] = "Bitte nutze das Webinterface nur via %s HTTPS%s Eine Verschlüsselung ist wichtig um die Privatsphäre und Sicherheit zu gewährleisten.%sUm HTTPS nutzen zu können, muss der Webserver eine SSL Verbindung unterstützen.";
|
||||
$lang['wiselcld'] = "selektiere User";
|
||||
$lang['wiselclddesc'] = "Wähle User anhand des letzt bekannten Usernamen aus. Hierfür einfach losschreiben.<br>Mehrfachselektionen sind kommagetrennt möglich, welche automatisch vorgenommen werden.<br><br>Mit den selektierten Usern kann im nächsten Schritt eine Aktion gewählt werden.";
|
||||
$lang['wishcolas'] = "aktuelle Servergruppe";
|
||||
$lang['wishcolasdesc'] = "Zeige Spalte 'aktuelle Servergruppe' in der stats/list_rankup.php";
|
||||
$lang['wishcolat'] = "aktive Zeit";
|
||||
$lang['wishcolatdesc'] = "Zeige Spalte 'ges. aktive Zeit' in der stats/list_rankup.php";
|
||||
$lang['wishcolcld'] = "Client-Name";
|
||||
$lang['wishcolclddesc'] = "Zeige Spalte 'Client-Name' in der stats/list_rankup.php";
|
||||
$lang['wishcoldbid'] = "Datenbank-ID";
|
||||
$lang['wishcoldbiddesc'] = "Zeige Spalte 'Client-Datenbank-ID' in der stats/list_rankup.php";
|
||||
$lang['wishcolit'] = "idle Zeit";
|
||||
$lang['wishcolitdesc'] = "Zeige Spalte 'ges. idle Zeit' in der stats/list_rankup.php";
|
||||
$lang['wishcolls'] = "zuletzt gesehen";
|
||||
$lang['wishcollsdesc'] = "Zeige Spalte 'zuletzt gesehen' in der stats/list_rankup.php";
|
||||
$lang['wishcolnx'] = "nächster rank up";
|
||||
$lang['wishcolnxdesc'] = "Zeige Spalte 'nächster Rang' in der stats/list_rankup.php";
|
||||
$lang['wishcolot'] = "online Zeit";
|
||||
$lang['wishcolotdesc'] = "Zeige Spalte 'ges. online Zeit' in der stats/list_rankup.php";
|
||||
$lang['wishcolrg'] = "Rang";
|
||||
$lang['wishcolrgdesc'] = "Zeige Spalte 'Rang' in der stats/list_rankup.php";
|
||||
$lang['wishcolsg'] = "nächste Servergruppe";
|
||||
$lang['wishcolsgdesc'] = "Zeige Spalte 'nächste Servergruppe' in der stats/list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc'] = "Zeige Spalte 'eindeutige Client-ID' in der stats/list_rankup.php";
|
||||
$lang['wishexcld'] = "ausgeschl. Clients";
|
||||
$lang['wishexclddesc'] = "Zeige User in der list_rankup.php, welche ausgeschlossen sind und demnach nicht am Ranksystem teilnehmen.";
|
||||
$lang['wishexgrp'] = "ausgeschl. Servergruppen";
|
||||
$lang['wishexgrpdesc'] = "Zeige User in der list_rankup.php, welche über die 'Servergruppen-Ausnahmen' nicht am Ranksystem teilnehmen.";
|
||||
$lang['wishhicld'] = "User in höchestem Rang";
|
||||
$lang['wishhiclddesc'] = "Zeige User in der list_rankup.php, welche den höchsten Rang erreicht haben.";
|
||||
$lang['wisupidle'] = "Modus";
|
||||
$lang['wisupidledesc'] = "Es gibt zwei Ausprägungen, wie Zeiten gewertet werden können und dann für eine Rangsteigerung herangezogen werden.<br><br>1) online Zeit: Hier wird die reine online Zeit des Users beachtet (siehe Spalte 'ges. online Zeit' in der stats/list_rankup.php).<br><br>2) aktive Zeit: Hier wird von der online Zeit eines Users noch die inaktive Zeit (Idle) abgezogen (siehe Spalte 'ges. aktive Zeit' in der stats/list_rankup.php).<br><br><br>Eine Umstellung des Modus mit einer bereits länger laufenden Datenbank wird nicht empfohlen, kann aber funktionieren.";
|
||||
$lang['wisvconf'] = "speichern";
|
||||
$lang['wisvsuc'] = "Änderungen erfolgreich gesichert!";
|
||||
$lang['wisvres'] = "Damit die Änderungen wirksam werden ist ein Neustart des Ranksystems erforderlich!";
|
||||
$lang['witime'] = "Zeitzone";
|
||||
$lang['witimedesc'] = "Wähle die Zeitzone, die für den Sever gilt.";
|
||||
$lang['wits3dch'] = "Default Channel";
|
||||
$lang['wits3dchdesc'] = "Die channel-ID, mit der sich der Bot verbindet.<br><br>In diesem Channel wechselt der Bot nach dem Verbinden mit dem TeamSpeak Server.";
|
||||
$lang['wits3host'] = "TS3 Hostadresse";
|
||||
$lang['wits3hostdesc'] = "TeamSpeak 3 Server Adresse<br>(IP oder DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "Mit dem Slowmode werden die Query-Anfragen an den TeamSpeak Server reduziert. Dies schützt vor einem Ban aufgrund von flooding.<br>TeamSpeak Query Befehle werden mit dieser Funktion verzögert abgeschickt.<br><br>!!! AUCH REDUZIERT ER DIE CPU USAGE !!!<br><br>Die Aktivierung ist nicht empfohlen, wenn nicht benötigt. Die Verzögerung (delay) erhöht die Laufzeit eines Durchgangs des Bots, dadurch wird er unpräziser.";
|
||||
$lang['wits3qnm'] = "Botname";
|
||||
$lang['wits3qnm2'] = "2. Botname";
|
||||
$lang['wits3qnm2desc'] = "Ein zweiter Botname, falls der erste bereits genutzt wird.";
|
||||
$lang['wits3qnmdesc'] = "Der Name, mit dem die Query-Verbindung augebaut werden soll.<br>Der Name kann frei gewählt werden.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Passwort";
|
||||
$lang['wits3querpwdesc'] = "TeamSpeak 3 Query Passwort<br>Passwort des Query Benutzers";
|
||||
$lang['wits3querusr'] = "TS3 Query-Benutzer";
|
||||
$lang['wits3querusrdesc'] = "TeamSpeak 3 Query Benutzername<br>Standard ist serveradmin<br>Natürlich kann auch ein gesonderter Query-Benutzer erstellt und genutzt werden.<br>Die benötigten Rechte sind hier aufgelistet:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Port";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 Query Port<br>Standard ist 10011 (TCP)<br>andere Werte sollten in der 'ts3server.ini' zu finden sein.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Port";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 Voice Port<br>Standard ist 9987 (UDP)<br>Dieser Port wird zum Verbinden mit dem TS3 Client genutzt.";
|
||||
$lang['wiupcheck'] = "Update Info";
|
||||
$lang['wiupcheckdesc'] = "Ist die Update Info aktiv, werden nachfolgend genannte User mit einer privaten Textnachricht informiert, sobald ein Update verfügbar ist.";
|
||||
$lang['wiuptime'] = "Intervall";
|
||||
$lang['wiuptimedesc'] = "Gib an alle wie viel Sekunden das Ranksystem prüfen soll, ob ein Update verfügbar ist.<br>Beachte, bei jeder Prüfung werden die hinterlegten User über ein verfügbares Update benachrichtigt. Ist kein hinterlegter User online, wird mit dem nächsten Intervall versucht zu benachrichtigen.";
|
||||
$lang['wiupuid'] = "Empfänger";
|
||||
$lang['wiupuiddesc'] = "Eine Komma getrennte Liste von eindeutigen Client-IDs, welche via privater Textnachricht auf dem TeamSpeak über ein Update informiert werden sollen.";
|
||||
$lang['wivlang'] = "Sprache";
|
||||
$lang['wivlangdesc'] = "Wähle die Standardsprache des Ranksystems.<br><br>Die Sprache kann über die Webseite für jeden Besucher übersteuert werden und wird dann für die laufende Sitzung gespeichert.";
|
||||
?>
|
||||
@@ -1,364 +1,369 @@
|
||||
<?PHP
|
||||
$lang = array();
|
||||
$lang['adduser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is unknown -> added to the Ranksystem now.";
|
||||
$lang['changedbid'] = "User %s (unique Client-ID: %s) got a new TeamSpeak Client-database-ID (%s). Update the old Client-database-ID (%s) and reset collected times!";
|
||||
$lang['crawl'] = "Scan for connected user and count the activity...";
|
||||
$lang['clean'] = "Scan for clients, which have to delete...";
|
||||
$lang['cleanc'] = "clean clients";
|
||||
$lang['cleancdesc'] = "With this function the old clients in the Ranksystem get deleted.<br><br>To this end, the Ranksystem sychronized with the TeamSpeak database. Clients, which do not exist in TeamSpeak, will be deleted from the Ranksystem.<br><br>This function is only enabled when the 'Slowmode' is deactivated!<br><br><br>For automatic adjustment of the TeamSpeak database the ClientCleaner can be used:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "There were %s clients deleted out of the Ranksystem database, cause they were no longer existing in the TeamSpeak database.";
|
||||
$lang['cleanno'] = "There were nothing to delete...";
|
||||
$lang['cleanp'] = "clean period";
|
||||
$lang['cleanpdesc'] = "Set a time that has to elapse before the 'clean clients' runs next.<br><br>Set a time in seconds.<br><br>Recommended is once a day, cause the client cleaning needs much time for bigger databases.";
|
||||
$lang['cleanrs'] = "Clients in the Ranksystem database: %s";
|
||||
$lang['cleants'] = "Clients found in the TeamSpeak database: %s (of %s)";
|
||||
$lang['days'] = "%s <small>days</small>";
|
||||
$lang['dbconerr'] = "Failed to connect to Database: ";
|
||||
$lang['delcldgrpif'] = "Error while removing the knowledge for servergroups: %s";
|
||||
$lang['delcldgrpsc'] = "Knowledge about servergroups for %s User successfully removed.";
|
||||
$lang['delclientsif'] = "%s Clients deleted out of the Ranksystem database!";
|
||||
$lang['delclientssc'] = "%s Clients successfully deleted out of the Ranksystem database!";
|
||||
$lang['errlogin'] = "Username and/or password are incorrect! Try again...";
|
||||
$lang['errlogin2'] = "Brute force protection: Try it again in %s seconds!";
|
||||
$lang['errlogin3'] = "Brute force protection: To much misstakes. Banned for 300 Seconds!";
|
||||
$lang['error'] = "Error ";
|
||||
$lang['errremgrp'] = "Error while removing user with unique Client-ID %s out of the servergroup with servergroup-database-ID %s!";
|
||||
$lang['errremdb'] = "Error while removing user with unique Client-ID %s out of the Ranksystem database!";
|
||||
$lang['errsel'] = "Error while choosing the selections with<br>selected client: %s<br>option 'delete clients': %s<br>option 'sum. online time': %s";
|
||||
$lang['errukwn'] = "An unknown error has occurred!";
|
||||
$lang['errupcount'] = "Error while renewing the summary online time of %s by user with the unique Client-ID %s";
|
||||
$lang['highest'] = "highest rank reached";
|
||||
$lang['install'] = "Installation";
|
||||
$lang['instdb'] = "Install database";
|
||||
$lang['instdbsuc'] = "Database %s successfully created.";
|
||||
$lang['isntwicfg'] = "Can't save the database configuration! Please edit the 'other/dbconfig.php' with a chmod 0777 and try again after.";
|
||||
$lang['isntwicfg2'] = "Configurate Webinterface";
|
||||
$lang['isntwichm'] = "Write Permissions failed on folder \"%s\". Please give them a chmod 777 and try to start the Ranksystem again.";
|
||||
$lang['isntwidbhost'] = "DB Hostaddress:";
|
||||
$lang['isntwidbhostdesc']= "Database server address<br>(IP or DNS)";
|
||||
$lang['isntwidbmsg'] = "Database error: ";
|
||||
$lang['isntwidbname'] = "DB Name:";
|
||||
$lang['isntwidbnamedesc']= "Name of database";
|
||||
$lang['isntwidbpass'] = "DB Password:";
|
||||
$lang['isntwidbpassdesc']= "Password to access the database";
|
||||
$lang['isntwidbtype'] = "DB Type:";
|
||||
$lang['isntwidbtypedesc']= "Database type<br><br>You have to install the needed PDO Driver.<br>For more informations have look at the requirements on http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "DB User:";
|
||||
$lang['isntwidbusrdesc']= "User to access the database";
|
||||
$lang['isntwidel'] = "Please delete the file 'install.php' from your webserver and open the %s to configure the Ranksystem!";
|
||||
$lang['isntwiusr'] = "User for the webinterface successfully created.";
|
||||
$lang['isntwiusrcr'] = "Create Webinterface-User";
|
||||
$lang['isntwiusrdesc'] = "Enter a username and password for access the webinterface. With the webinterface you can configurate the ranksytem.";
|
||||
$lang['isntwiusrh'] = "Access - Webinterface";
|
||||
$lang['listacsg'] = "actual servergroup";
|
||||
$lang['listcldbid'] = "Client-database-ID";
|
||||
$lang['listexgrp'] = "Will not conside for the Ranksystem (servergroup exception).";
|
||||
$lang['listexuid'] = "Will not conside for the Ranksystem (client exception).";
|
||||
$lang['listip'] = "IP address";
|
||||
$lang['listnick'] = "Clientname";
|
||||
$lang['listnxsg'] = "next servergroup";
|
||||
$lang['listnxup'] = "next rank up";
|
||||
$lang['listrank'] = "rank";
|
||||
$lang['listseen'] = "last seen";
|
||||
$lang['listsuma'] = "sum. active time";
|
||||
$lang['listsumi'] = "sum. idle time";
|
||||
$lang['listsumo'] = "sum. online time";
|
||||
$lang['listuid'] = "unique Client-ID";
|
||||
$lang['login'] = "Login";
|
||||
$lang['nocount'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is a query-user or is several times online (only first connection counts) -> this will not count!";
|
||||
$lang['noentry'] = "No entries found..";
|
||||
$lang['pass'] = "Password";
|
||||
$lang['queryname'] = "First Botname already in use. Trying with second Botname...";
|
||||
$lang['sccrmcld'] = "User with unique Client-ID %s successfull removed from the Ranksystem database.";
|
||||
$lang['sccupcount'] = "User with the unique Client-ID %s successfull overwritten with a summary online time of %s.";
|
||||
$lang['setontime'] = "sum. online time";
|
||||
$lang['setontimedesc'] = "Enter a new summary online time, which should be set to the previous selected clients. With this the old summary online gets overwritten.<br><br>The entered summary online time will be considered for the rank up.";
|
||||
$lang['sgrpadd'] = "Grant servergroup %s to user %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['sgrprerr'] = "It happened a problem with the servergroup of the user %s (unique Client-ID: %s; Client-database-ID %s)!";
|
||||
$lang['sgrprm'] = "Removed servergroup %s from user %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['stix0001'] = "Server statistics";
|
||||
$lang['stix0002'] = "Total users";
|
||||
$lang['stix0003'] = "View details";
|
||||
$lang['stix0004'] = "Online time of all user / Total";
|
||||
$lang['stix0005'] = "View top of all time";
|
||||
$lang['stix0006'] = "View top of the month";
|
||||
$lang['stix0007'] = "View top of the week";
|
||||
$lang['stix0008'] = "Server usage";
|
||||
$lang['stix0009'] = "In the last 7 days";
|
||||
$lang['stix0010'] = "In the last 30 days";
|
||||
$lang['stix0011'] = "In the last 24 hours";
|
||||
$lang['stix0012'] = "select period";
|
||||
$lang['stix0013'] = "Last day";
|
||||
$lang['stix0014'] = "Last week";
|
||||
$lang['stix0015'] = "Last month";
|
||||
$lang['stix0016'] = "Active / inactive time (of all clients)";
|
||||
$lang['stix0017'] = "Versions (of all clients)";
|
||||
$lang['stix0018'] = "Nationalities (of all clients)";
|
||||
$lang['stix0019'] = "Platforms (of all clients)";
|
||||
$lang['stix0020'] = "Current statistics";
|
||||
$lang['stix0023'] = "Server status";
|
||||
$lang['stix0024'] = "Online";
|
||||
$lang['stix0025'] = "Offline";
|
||||
$lang['stix0026'] = "Clients (Online / Max)";
|
||||
$lang['stix0027'] = "Amount of channels";
|
||||
$lang['stix0028'] = "Average server ping";
|
||||
$lang['stix0029'] = "Total bytes received";
|
||||
$lang['stix0030'] = "Total bytes sent";
|
||||
$lang['stix0031'] = "Server uptime";
|
||||
$lang['stix0032'] = "before offline:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Days, <span id=\"hours\">00</span> Hours, <span id=\"minutes\">00</span> Mins, <span id=\"seconds\">00</span> Secs";
|
||||
$lang['stix0034'] = "Average packet loss";
|
||||
$lang['stix0035'] = "Overall statistics";
|
||||
$lang['stix0036'] = "Server name";
|
||||
$lang['stix0037'] = "Server address (Host Address : Port)";
|
||||
$lang['stix0038'] = "Server password";
|
||||
$lang['stix0039'] = "No (Server is public)";
|
||||
$lang['stix0040'] = "Yes (Server Is private)";
|
||||
$lang['stix0041'] = "Server ID";
|
||||
$lang['stix0042'] = "Server platform";
|
||||
$lang['stix0043'] = "Server version";
|
||||
$lang['stix0044'] = "Server creation date (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Report to server list";
|
||||
$lang['stix0046'] = "Activated";
|
||||
$lang['stix0047'] = "Not activated";
|
||||
$lang['stix0048'] = "not enough data yet...";
|
||||
$lang['stix0049'] = "Online time of all user / month";
|
||||
$lang['stix0050'] = "Online time of all user / week";
|
||||
$lang['stix0051'] = "TeamSpeak has failed, so no creation date...";
|
||||
$lang['stmy0001'] = "My statistics";
|
||||
$lang['stmy0002'] = "Rank";
|
||||
$lang['stmy0003'] = "Database ID:";
|
||||
$lang['stmy0004'] = "Unique ID:";
|
||||
$lang['stmy0005'] = "Total connections to the server:";
|
||||
$lang['stmy0006'] = "Start date for statistics:";
|
||||
$lang['stmy0007'] = "Total online time:";
|
||||
$lang['stmy0008'] = "Online time last 7 days:";
|
||||
$lang['stmy0009'] = "Online time last 30 days:";
|
||||
$lang['stmy0010'] = "Achievements completed:";
|
||||
$lang['stmy0011'] = "Time achievement progress";
|
||||
$lang['stmy0012'] = "Time: Legendary";
|
||||
$lang['stmy0013'] = "Because you have an online time of %s hours.";
|
||||
$lang['stmy0014'] = "Progress completed";
|
||||
$lang['stmy0015'] = "Time: Gold";
|
||||
$lang['stmy0016'] = "% Completed for Legendary";
|
||||
$lang['stmy0017'] = "Time: Silver";
|
||||
$lang['stmy0018'] = "% Completed for Gold";
|
||||
$lang['stmy0019'] = "Time: Bronze";
|
||||
$lang['stmy0020'] = "% Completed for Silver";
|
||||
$lang['stmy0021'] = "Time: Unranked";
|
||||
$lang['stmy0022'] = "% Completed for Bronze";
|
||||
$lang['stmy0023'] = "Connection achievement progress";
|
||||
$lang['stmy0024'] = "Connects: Legendary";
|
||||
$lang['stmy0025'] = "Because You connected %s times to the server.";
|
||||
$lang['stmy0026'] = "Connects: Gold";
|
||||
$lang['stmy0027'] = "Connects: Silver";
|
||||
$lang['stmy0028'] = "Connects: Bronze";
|
||||
$lang['stmy0029'] = "Connects: Unranked";
|
||||
$lang['stmy0030'] = "Progress next servergroup";
|
||||
$lang['stnv0001'] = "Server news";
|
||||
$lang['stnv0002'] = "Close";
|
||||
$lang['stnv0003'] = "Refresh client information";
|
||||
$lang['stnv0004'] = "Only use this refresh, when your TS3 information got changed, such as your TS3 username";
|
||||
$lang['stnv0005'] = "It only works, when you are connected to the TS3 server at the same time";
|
||||
$lang['stnv0006'] = "Refresh";
|
||||
$lang['stnv0007'] = "Battle area - Page content";
|
||||
$lang['stnv0008'] = "You can challenge other users in a battle between two users or two teams.";
|
||||
$lang['stnv0009'] = "While the battle is active the online time of the teams/users will be counted.";
|
||||
$lang['stnv0010'] = "When the battle ends the team/user with the highest online time wins.";
|
||||
$lang['stnv0011'] = "(The regular battling time is 48 hours)";
|
||||
$lang['stnv0012'] = "The winning team/user will recieve a price, which the user can use whenever the user wants.";
|
||||
$lang['stnv0013'] = "It will be displayed on the <a href=\"my_stats.php\">My statistics</a> tab.";
|
||||
$lang['stnv0014'] = "(Could be online time boost(2x) for 8 hours, instant online time (4 hours), etc.";
|
||||
$lang['stnv0015'] = "These boosts can be used for example to climb in the top users of the week.";
|
||||
$lang['stnv0016'] = "Not available";
|
||||
$lang['stnv0017'] = "You are not connected to the TS3 Server, so it can't display any data for you.";
|
||||
$lang['stnv0018'] = "Please connect to the TS3 Server and then Refresh your Session by pressing the blue Refresh Button at the top-right corner.";
|
||||
$lang['stnv0019'] = "My statistics - Page content";
|
||||
$lang['stnv0020'] = "This page contains a overall summary of your personal statistics and activity on the server.";
|
||||
$lang['stnv0021'] = "The informations are collected since the beginning of the Ranksystem, they are not since the beginning of the TeamSpeak server.";
|
||||
$lang['stnv0022'] = "This page receives its values out of a database. So the values might be delayed a bit.";
|
||||
$lang['stnv0023'] = "The sum inside of the donut charts may differ to the amount of 'Total user'. The reason is that this data weren't collected with older versions of the Ranksystem.";
|
||||
$lang['stnv0024'] = "Ranksystem - Statistics";
|
||||
$lang['stnv0025'] = "Limit entries";
|
||||
$lang['stnv0026'] = "all";
|
||||
$lang['stnv0027'] = "The informations on this site could be outdated! It seems the Ranksystem is no more connected to the TeamSpeak.";
|
||||
$lang['stnv0028'] = "(You are not connected to the TS3!)";
|
||||
$lang['stnv0029'] = "List Rankup";
|
||||
$lang['stnv0030'] = "Ranksystem info";
|
||||
$lang['stnv0031'] = "About the search field you can search for pattern in clientname, unique Client-ID and Client-database-ID.";
|
||||
$lang['stnv0032'] = "You can also use a view filter options (see below). Enter the filter also inside the search field.";
|
||||
$lang['stnv0033'] = "Combination of filter and search pattern are possible. Enter first the filter(s) followed without any sign your search pattern.";
|
||||
$lang['stnv0034'] = "Also it is possible to combine multiple filters. Enter this consecutively inside the search field.";
|
||||
$lang['stnv0035'] = "<u>Example:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Show only clients, which are excepted (client, servergroup or channel exception).";
|
||||
$lang['stnv0037'] = "Show only clients, which are not excepted.";
|
||||
$lang['stnv0038'] = "Show only clients, which are online.";
|
||||
$lang['stnv0039'] = "Show only clients, which are not online.";
|
||||
$lang['stnv0040'] = "Show only clients, which are in defined group. Represent the actuel rank/level.<br>Replace <i>GROUPID</i> with the wished servergroup ID.";
|
||||
$lang['stnv0041'] = "Show only clients, which are selected by lastseen.<br>Replace <i>OPERATOR</i> with '<' or '>' or '=' or '!='.<br>And replace <i>TIME</i> with a timestamp or date with format 'Y-m-d H-i' (example: 2016-06-18 20-25).<br>Full example: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Show only clients, which are from defined country.<br>Replace <i>TS3-COUNTRY-CODE</i> with the wished country.<br>For list of codes google for ISO 3166-1 alpha-2";
|
||||
$lang['stri0001'] = "Ranksystem information";
|
||||
$lang['stri0002'] = "What is the Ranksystem?";
|
||||
$lang['stri0003'] = "A TS3 Bot, which automatically grant ranks (servergroups) to user on a TeamSpeak 3 Server for online time or online activity. It also gathers informations and statistics about the user and displays the result on this site.";
|
||||
$lang['stri0004'] = "Who created the Ranksystem?";
|
||||
$lang['stri0005'] = "When the Ranksystem was Created?";
|
||||
$lang['stri0006'] = "First alpha release: 05/10/2014.";
|
||||
$lang['stri0007'] = "First beta release: 01/02/2015.";
|
||||
$lang['stri0008'] = "You can see the newest version on the <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "How was the Ranksystem created?";
|
||||
$lang['stri0010'] = "The Ranksystem is coded in";
|
||||
$lang['stri0011'] = "It uses also the following libraries:";
|
||||
$lang['stri0012'] = "Special Thanks To:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - for russian translation";
|
||||
$lang['stri0014'] = "Bejamin Frost - for initialisation the bootstrap design";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - for italian translation";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - for initialisation arabic translation";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - for initialisation romanian translation";
|
||||
$lang['sttw0001'] = "Top users";
|
||||
$lang['sttw0002'] = "Of the week";
|
||||
$lang['sttw0003'] = "With %s hours online time";
|
||||
$lang['sttw0004'] = "Top 10 compared";
|
||||
$lang['sttw0005'] = "Hours (Defines 100 %)";
|
||||
$lang['sttw0006'] = "%s hours (%s%)";
|
||||
$lang['sttw0007'] = "Top 10 Statistics";
|
||||
$lang['sttw0008'] = "Top 10 vs others in online time";
|
||||
$lang['sttw0009'] = "Top 10 vs others in active time";
|
||||
$lang['sttw0010'] = "Top 10 vs others in inactive time";
|
||||
$lang['sttw0011'] = "Top 10 (in hours)";
|
||||
$lang['sttw0012'] = "Other %s users (in hours)";
|
||||
$lang['sttw0013'] = "With %s hours active time";
|
||||
$lang['sttm0001'] = "Of the month";
|
||||
$lang['stta0001'] = "Of all time";
|
||||
$lang['upinf'] = "A new Version of the Ranksystem is available; Inform clients on server...";
|
||||
$lang['upmsg'] = "\nHey, a new version of the [B]Ranksystem[/B] is available!\n\ncurrent version: %s\n[B]new version: %s[/B]\n\nPlease check out our site for more informations [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Database update successfully executed.";
|
||||
$lang['upuser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s).";
|
||||
$lang['upuserboost'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "The unique Client-ID %s couldn't reached on the TeamSpeak!";
|
||||
$lang['upusrinf'] = "User %s was successfully informed.";
|
||||
$lang['user'] = "Username";
|
||||
$lang['wiaction'] = "action";
|
||||
$lang['wiboost'] = "boost";
|
||||
$lang['wiboostdesc'] = "Give an user on your TeamSpeak server a servergroup (have to be created manually), which you can declare here as boost group. Define also a factor which should be used (for example 2x) and a time, how long the boost should be rated.<br>The higher the factor, the faster an user reaches the next higher rank.<br>Is the time expired, the boost servergroup get automatically removed from the concerned user. The time starts running as soon as the user gets the servergroup.<br><br>servergroup ID => factor => time (in seconds)<br><br>Each entry have to separate from next with a comma.<br><br>Example:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>On this an user in servergroup 12 get the factor 2 for the next 6000 seconds, an user in servergroup 13 get the factor 3 for 2500 seconds, and so on...";
|
||||
$lang['wibot1'] = "Ranksystem Bot should be stopped. Check the log below for more information!";
|
||||
$lang['wibot2'] = "Ranksystem Bot should be started. Check the log below for more information!";
|
||||
$lang['wibot3'] = "Ranksystem Bot should be restarted. Check the log below for more information!";
|
||||
$lang['wibot4'] = "Start / Stop Ranksystem Bot";
|
||||
$lang['wibot5'] = "Start Bot";
|
||||
$lang['wibot6'] = "Stop Bot";
|
||||
$lang['wibot7'] = "Restart Bot";
|
||||
$lang['wibot8'] = "Ranksystem log (extract):";
|
||||
$lang['wibot9'] = "Fill out all mandatory fields before starting the Ranksystem Bot!";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Reset the online time of an user, if his TeamSpeak Client-database-ID changed.<br><br>Example:<br>If a clients gets removed from the TeamSpeak server, it gets a new Client-database-ID with the next connect to the server.";
|
||||
$lang['wiconferr'] = "There is an error in the configuration of the Ranksystem. Please go to the webinterface and correct the Core Settings. Especially check the config 'rank up'!";
|
||||
$lang['widaform'] = "Date format";
|
||||
$lang['widaformdesc'] = "Choose the showing date format.<br><br>Example:<br>%a days, %h hours, %i mins, %s secs";
|
||||
$lang['widbcfgsuc'] = "Database configurations saved successfully.";
|
||||
$lang['widbcfgerr'] = "Error while saving the database configurations! Connection failed or writeout error for 'other/dbconfig.php'";
|
||||
$lang['widelcld'] = "delete clients";
|
||||
$lang['widelcldgrp'] = "renew groups";
|
||||
$lang['widelcldgrpdesc']= "The Ranksystem remember the given servergroups, so it don't need to give/check this with every run of the worker.php again.<br><br>With this function you can remove once time the knowledge of given servergroups. In effect the ranksystem try to give all clients (which are on the TS3 server online) the servergroup of the actual rank.<br>For each client, which gets the group or stay in group, the Ranksystem remember this like described at beginning.<br><br>This function can be helpful, when user are not in the servergroup, they should be for the defined online time.<br><br>Attention: Run this in a moment, where the next few minutes no rankups become due!!! The Ranksystem can't remove the old group, cause it can't remember ;-)";
|
||||
$lang['widelclddesc'] = "Delete the before selected clients out of the Ranksystem database.<br><br>With this deletion are the clients on the TeamSpeak Server untouched.";
|
||||
$lang['widelsg'] = "remove out of servergroups";
|
||||
$lang['widelsgdesc'] = "Choose if the clients should also be removed out of the last known servergroup, when you delete clients out of the Ranksystem database.<br><br>It will only considered servergroups, which concerned the Ranksystem";
|
||||
$lang['wideltime'] = "Deletiontime";
|
||||
$lang['wideltimedesc'] = "Clean old clients out of the Ranksystem database.<br>Entry a time in seconds which a client was not seen to delete it.<br><br>0 - deletes all clients out of the Ranksystem<br><br>The Userdatas on the TeamSpeak server are with this untouched!";
|
||||
$lang['wiexcid'] = "channel exception";
|
||||
$lang['wiexciddesc'] = "A comma separated list of the channel-IDs that are not to participate in the Ranksystem.<br><br>Stay users in one of the listed channels, the time there will be completely ignored. There is neither the online time, yet the idle time counted.<br><br>Sense does this function only with the mode 'online time', cause here could be ignored AFK channels for example.<br>With the mode 'active time', this function is useless because as would be deducted the idle time in AFK rooms and thus not counted anyway.<br><br>Be a user in an excluded channel, it is noted for this period as 'excluded from the Ranksystem'. The user dows no longer appears in the list 'stats/list_rankup.php' unless excluded clients should not be displayed there (Stats Page - excepted client).";
|
||||
$lang['wiexgrp'] = "servergroup exception";
|
||||
$lang['wiexgrpdesc'] = "A comma seperated list of servergroup-IDs, which should not conside for the Ranksystem.<br>User in at least one of this servergroups IDs will be ignored for the rank up.";
|
||||
$lang['wiexuid'] = "client exception";
|
||||
$lang['wiexuiddesc'] = "A comma seperated list of unique Client-IDs, which should not conside for the Ranksystem.<br>User in this list will be ignored for the rank up.";
|
||||
$lang['wigrptime'] = "rank up definition";
|
||||
$lang['wigrptimedesc'] = "Define here after which time a user should get automatically a predefined servergroup.<br><br>time (seconds)=>servergroup ID<br><br>Important for this is the 'online time' or the 'active time' of an user, depending on setting of the mode.<br><br>Each entry have to separate from next with a comma.<br><br>The time must be entered cumulative<br><br>Example:<br>60=>9,120=>10,180=>11<br><br>On this a user get after 60 seconds the servergroup 9, in turn after 60 seconds the servergroup 10, and so on...";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "Core settings";
|
||||
$lang['wihldb'] = "Database settings";
|
||||
$lang['wihlmsg'] = "Message settings";
|
||||
$lang['wihlsty'] = "Stats page settings";
|
||||
$lang['wihlts'] = "TeamSpeak settings";
|
||||
$lang['wihlvs'] = "Various settings";
|
||||
$lang['wiignidle'] = "Ignore idle";
|
||||
$lang['wiignidledesc'] = "Define a period, up to which the idle time of an user will be ignored.<br><br>When a client does not do anything on the server (=idle), this time is noted by the Ranksystem. With this feature the idle time of an user will not be counted until the defined limit. Only when the defined limit is exceeded, it counts from that date for the Ranksystem as idle time.<br><br>This function plays only in conjunction with the mode 'active time' a role.<br><br>Meaning the function is e.g. to evaluate the time of listening in conversations as activity.<br><br>0 = disable the feature<br><br>Example:<br>Ignore idle = 600 (seconds)<br>A client has an idle of 8 minuntes<br>consequence:<br>8 minutes idle are ignored and he therefore receives this time as active time. If the idle time now increased to over 12 minutes so the time is over 10 minutes, and in this case 2 minutes would be counted as idle time.";
|
||||
$lang['wilog'] = "Logpath";
|
||||
$lang['wilogdesc'] = "Path of the log file of the Ranksystem.<br><br>Example:<br>/var/logs/ranksystem/<br><br>Be sure, the webuser has the write-permissions to the logpath.";
|
||||
$lang['wimsgmsg'] = "Message";
|
||||
$lang['wimsgmsgdesc'] = "Define a message, which will be send to an user, when he rises the next higher rank.<br><br>This message will be send via TS3 private message. So every know bb-code could be used, which also works for a normal private message.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Furthermore, the previously spent time can be expressed by arguments:<br>%1\$s - days<br>%2\$s - hours<br>%3\$s - minutes<br>%4\$s - seconds<br><br>Example:<br>Hey,\\nyou reached a higher rank, since you already connected for %1\$s days, %2\$s hours and %3\$s minutes to our TS3 server.[B]Keep it up![/B] ;-)";
|
||||
$lang['wilogout'] = "Logout";
|
||||
$lang['wimsgusr'] = "Rank up notification";
|
||||
$lang['wimsgusrdesc'] = "Inform an user with a private text message about his rank up.";
|
||||
$lang['winav1'] = "TeamSpeak";
|
||||
$lang['winav2'] = "Database";
|
||||
$lang['winav3'] = "Core";
|
||||
$lang['winav4'] = "Other";
|
||||
$lang['winav5'] = "Message";
|
||||
$lang['winav6'] = "Stats page";
|
||||
$lang['winav7'] = "Administrate";
|
||||
$lang['winav8'] = "Start / Stop Bot";
|
||||
$lang['winav9'] = "Update available!";
|
||||
$lang['winav10'] = "Please use the webinterface only via %s HTTPS%s An encryption is critical to ensure your privacy and security.%sTo be able to use HTTPS your webserver needs to support an SSL connection.";
|
||||
$lang['wiselcld'] = "select clients";
|
||||
$lang['wiselclddesc'] = "Select the clients by the last known username. For this you only have to start typing.<br>Multiple selections are comma separated, which does the system automatically.<br><br>With the selection you can choose with the next step an action.";
|
||||
$lang['wishcolas'] = "actual servergroup";
|
||||
$lang['wishcolasdesc'] = "Show column 'actual servergroup' in list_rankup.php";
|
||||
$lang['wishcolat'] = "active time";
|
||||
$lang['wishcolatdesc'] = "Show column 'sum. active time' in list_rankup.php";
|
||||
$lang['wishcolcld'] = "Client-name";
|
||||
$lang['wishcolclddesc'] = "Show column 'Client-name' in list_rankup.php";
|
||||
$lang['wishcoldbid'] = "database-ID";
|
||||
$lang['wishcoldbiddesc']= "Show column 'Client-database-ID' in list_rankup.php";
|
||||
$lang['wishcolit'] = "idle time";
|
||||
$lang['wishcolitdesc'] = "Show column 'sum idle time' in list_rankup.php";
|
||||
$lang['wishcolls'] = "last seen";
|
||||
$lang['wishcollsdesc'] = "Show column 'last seen' in list_rankup.php";
|
||||
$lang['wishcolnx'] = "next rank up";
|
||||
$lang['wishcolnxdesc'] = "Show column 'next rank up' in list_rankup.php";
|
||||
$lang['wishcolot'] = "online time";
|
||||
$lang['wishcolotdesc'] = "Show column 'sum. online time' in list_rankup.php";
|
||||
$lang['wishcolrg'] = "rank";
|
||||
$lang['wishcolrgdesc'] = "Show column 'rank' in list_rankup.php";
|
||||
$lang['wishcolsg'] = "next servergroup";
|
||||
$lang['wishcolsgdesc'] = "Show column 'next servergroup' in list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc']= "Show column 'unique Client-ID' in list_rankup.php";
|
||||
$lang['wishexcld'] = "excepted client";
|
||||
$lang['wishexclddesc'] = "Show clients in list_rankup.php,<br>which are excluded and therefore not participate in the Ranksystem.";
|
||||
$lang['wishexgrp'] = "excepted groups";
|
||||
$lang['wishexgrpdesc'] = "Show clients in list_rankup.php, which are in the list 'client exception' and shouldn't be conside for the Ranksystem.";
|
||||
$lang['wishhicld'] = "Clients in highest Level";
|
||||
$lang['wishhiclddesc'] = "Show clients in list_rankup.php, which reached the highest level in the Ranksystem.";
|
||||
$lang['wisupidle'] = "Mode";
|
||||
$lang['wisupidledesc'] = "There are two modes, as time can be counted and can then apply for a rank increase. 1) online time: Here the pure online time of the user is taken into account (see column 'sum. online time' in the 'stats/list_rankup.php') 2) active time: This will be deducted from the online time of a user, the inactive time (idle) (see column 'sum. active time' in the 'stats/list_rankup.php'). A change of mode with an already longer running database is not recommended, but may work.";
|
||||
$lang['wisvconf'] = "save";
|
||||
$lang['wisvsuc'] = "Changes successfully saved!";
|
||||
$lang['wisvres'] = "You need to restart the Ranksystem before the changes will take effect!";
|
||||
$lang['witime'] = "Timezone";
|
||||
$lang['witimedesc'] = "Select the timezone the server is hosted.";
|
||||
$lang['wits3dch'] = "Default Channel";
|
||||
$lang['wits3dchdesc'] = "The channel-ID, the bot should connect with.<br><br>The Bot will join this channel after connecting to the TeamSpeak server.";
|
||||
$lang['wits3host'] = "TS3 Hostaddress";
|
||||
$lang['wits3hostdesc'] = "TeamSpeak 3 Server address<br>(IP oder DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "With the Slowmode you can reduce \"spam\" of query commands to the TeamSpeak server. This prevent bans in case of flood.<br>TeamSpeak Query commands get delayed with this function.<br><br>!!! ALSO IT REDUCE THE CPU USAGE !!!<br><br>The activation is not recommended, if not required. The delay increases the duration of the Bot, which makes it imprecisely.";
|
||||
$lang['wits3qnm'] = "Botname";
|
||||
$lang['wits3qnm2'] = "2nd Botname";
|
||||
$lang['wits3qnm2desc'] = "A fallback Botname, if the first one is already in use.";
|
||||
$lang['wits3qnmdesc'] = "The name, with this the query-connection will be established.<br>You can name it free.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Password";
|
||||
$lang['wits3querpwdesc']= "TeamSpeak 3 query password<br>Password for the query user.";
|
||||
$lang['wits3querusr'] = "TS3 Query-User";
|
||||
$lang['wits3querusrdesc']= "TeamSpeak 3 query username<br>Default is serveradmin<br>Of course, you can also create an additional serverquery account only for the Ranksystem.<br>The needed permissions you find on:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Port";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 query port<br>Default is 10011 (TCP)<br>If its not default, you should find it in your 'ts3server.ini'.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Port";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 voice port<br>Default is 9987 (UDP)<br>This is the port, you uses also to connect with the TS3 Client.";
|
||||
$lang['wiupcheck'] = "Update info";
|
||||
$lang['wiupcheckdesc'] = "If the Update info is enable, the listed user gets a notification with a private text message, once an update is available.";
|
||||
$lang['wiuptime'] = "Interval";
|
||||
$lang['wiuptimedesc'] = "Enter here how much seconds have to gone till the Ranksystem should check for available updates.<br><br>Attention, for each check the listed user gets a notification. If no one of the listed users is online, the Ranksystem will try to notificate with the next interval.";
|
||||
$lang['wiupuid'] = "Recipient";
|
||||
$lang['wiupuiddesc'] = "A comma separate list of unique Client-IDs, which shoud be informed on the TeamSpeak via private message for available updates.";
|
||||
$lang['wivlang'] = "Language";
|
||||
$lang['wivlangdesc'] = "Choose a default language for the Ranksystem.<br><br>The language is also selectable on the websites for the users and will be stored for the session.";
|
||||
$lang['adduser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is unknown -> added to the Ranksystem now.";
|
||||
$lang['changedbid'] = "User %s (unique Client-ID: %s) got a new TeamSpeak Client-database-ID (%s). Update the old Client-database-ID (%s) and reset collected times!";
|
||||
$lang['crawl'] = "Scan for connected user and count the activity...";
|
||||
$lang['clean'] = "Scan for clients, which have to delete...";
|
||||
$lang['cleanc'] = "clean clients";
|
||||
$lang['cleancdesc'] = "With this function the old clients in the Ranksystem get deleted.<br><br>To this end, the Ranksystem sychronized with the TeamSpeak database. Clients, which do not exist in TeamSpeak, will be deleted from the Ranksystem.<br><br>This function is only enabled when the 'Slowmode' is deactivated!<br><br><br>For automatic adjustment of the TeamSpeak database the ClientCleaner can be used:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "There were %s clients deleted out of the Ranksystem database, cause they were no longer existing in the TeamSpeak database.";
|
||||
$lang['cleanno'] = "There were nothing to delete...";
|
||||
$lang['cleanp'] = "clean period";
|
||||
$lang['cleanpdesc'] = "Set a time that has to elapse before the 'clean clients' runs next.<br><br>Set a time in seconds.<br><br>Recommended is once a day, cause the client cleaning needs much time for bigger databases.";
|
||||
$lang['cleanrs'] = "Clients in the Ranksystem database: %s";
|
||||
$lang['cleants'] = "Clients found in the TeamSpeak database: %s (of %s)";
|
||||
$lang['days'] = "%s <small>days</small>";
|
||||
$lang['dbconerr'] = "Failed to connect to Database: ";
|
||||
$lang['delcldgrpif'] = "Error while removing the knowledge for servergroups: %s";
|
||||
$lang['delcldgrpsc'] = "Knowledge about servergroups for %s User successfully removed.";
|
||||
$lang['delclientsif'] = "%s Clients deleted out of the Ranksystem database!";
|
||||
$lang['delclientssc'] = "%s Clients successfully deleted out of the Ranksystem database!";
|
||||
$lang['errlogin'] = "Username and/or password are incorrect! Try again...";
|
||||
$lang['errlogin2'] = "Brute force protection: Try it again in %s seconds!";
|
||||
$lang['errlogin3'] = "Brute force protection: To much misstakes. Banned for 300 Seconds!";
|
||||
$lang['error'] = "Error ";
|
||||
$lang['errremgrp'] = "Error while removing user with unique Client-ID %s out of the servergroup with servergroup-database-ID %s!";
|
||||
$lang['errremdb'] = "Error while removing user with unique Client-ID %s out of the Ranksystem database!";
|
||||
$lang['errsel'] = "Error while choosing the selections with<br>selected client: %s<br>option 'delete clients': %s<br>option 'sum. online time': %s";
|
||||
$lang['errukwn'] = "An unknown error has occurred!";
|
||||
$lang['errupcount'] = "Error while renewing the summary online time of %s by user with the unique Client-ID %s";
|
||||
$lang['highest'] = "highest rank reached";
|
||||
$lang['install'] = "Installation";
|
||||
$lang['instdb'] = "Install database";
|
||||
$lang['instdbsuc'] = "Database %s successfully created.";
|
||||
$lang['insterr1'] = "ATTENTION: You are trying to install the Ranksystem, but there is already existing a database with the name \"%s\".<br>Due installation this database will be dropped!<br>Be sure you want this. If not, please choose an other database name.";
|
||||
$lang['insterr2'] = "PDO is needed but seems not installed. Install <a href=\"http://php.net/manual/de/pdo.installation.php\" target=\"_blank\">PDO</a> and try it again!";
|
||||
$lang['insterr3'] = "PHP exec function need to be enabled but seems to be disabled. Please enable the PHP <a href=\http://php.net/manual/de/function.exec.php\" target=\"_blank\">exec</a> function and try it again!";
|
||||
$lang['insterr4'] = "Your PHP version (%s) is below 5.5.0. Update your PHP and try it again!";
|
||||
$lang['isntwicfg'] = "Can't save the database configuration! Please edit the 'other/dbconfig.php' with a chmod 0777 (on windows 'full access') and try again after.";
|
||||
$lang['isntwicfg2'] = "Configurate Webinterface";
|
||||
$lang['isntwichm'] = "Write Permissions failed on folder \"%s\". Please give them a chmod 777 (on windows 'full access') and try to start the Ranksystem again.";
|
||||
$lang['isntwidbhost'] = "DB Hostaddress:";
|
||||
$lang['isntwidbhostdesc'] = "Database server address<br>(IP or DNS)";
|
||||
$lang['isntwidbmsg'] = "Database error: ";
|
||||
$lang['isntwidbname'] = "DB Name:";
|
||||
$lang['isntwidbnamedesc'] = "Name of database";
|
||||
$lang['isntwidbpass'] = "DB Password:";
|
||||
$lang['isntwidbpassdesc'] = "Password to access the database";
|
||||
$lang['isntwidbtype'] = "DB Type:";
|
||||
$lang['isntwidbtypedesc'] = "Database type<br><br>You have to install the needed PDO Driver.<br>For more informations have look at the requirements on http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "DB User:";
|
||||
$lang['isntwidbusrdesc'] = "User to access the database";
|
||||
$lang['isntwidel'] = "Please delete the file 'install.php' from your webserver and open the %s to configure the Ranksystem!";
|
||||
$lang['isntwiusr'] = "User for the webinterface successfully created.";
|
||||
$lang['isntwiusrcr'] = "Create Webinterface-User";
|
||||
$lang['isntwiusrdesc'] = "Enter a username and password for access the webinterface. With the webinterface you can configurate the ranksytem.";
|
||||
$lang['isntwiusrh'] = "Access - Webinterface";
|
||||
$lang['listacsg'] = "actual servergroup";
|
||||
$lang['listcldbid'] = "Client-database-ID";
|
||||
$lang['listexcept'] = "No, cause excepted";
|
||||
$lang['listip'] = "IP address";
|
||||
$lang['listnick'] = "Clientname";
|
||||
$lang['listnxsg'] = "next servergroup";
|
||||
$lang['listnxup'] = "next rank up";
|
||||
$lang['listrank'] = "rank";
|
||||
$lang['listseen'] = "last seen";
|
||||
$lang['listsuma'] = "sum. active time";
|
||||
$lang['listsumi'] = "sum. idle time";
|
||||
$lang['listsumo'] = "sum. online time";
|
||||
$lang['listuid'] = "unique Client-ID";
|
||||
$lang['login'] = "Login";
|
||||
$lang['nocount'] = "User %s (unique Client-ID: %s; Client-database-ID %s) is a query-user or is several times online (only first connection counts) -> this will not count!";
|
||||
$lang['noentry'] = "No entries found..";
|
||||
$lang['pass'] = "Password";
|
||||
$lang['queryname'] = "First Botname already in use. Trying with second Botname...";
|
||||
$lang['sccrmcld'] = "User with unique Client-ID %s successfull removed from the Ranksystem database.";
|
||||
$lang['sccupcount'] = "User with the unique Client-ID %s successfull overwritten with a summary online time of %s.";
|
||||
$lang['setontime'] = "sum. online time";
|
||||
$lang['setontimedesc'] = "Enter a new summary online time, which should be set to the previous selected clients. With this the old summary online gets overwritten.<br><br>The entered summary online time will be considered for the rank up.";
|
||||
$lang['sgrpadd'] = "Grant servergroup %s to user %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['sgrprerr'] = "It happened a problem with the servergroup of the user %s (unique Client-ID: %s; Client-database-ID %s)!";
|
||||
$lang['sgrprm'] = "Removed servergroup %s from user %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['stix0001'] = "Server statistics";
|
||||
$lang['stix0002'] = "Total users";
|
||||
$lang['stix0003'] = "View details";
|
||||
$lang['stix0004'] = "Online time of all user / Total";
|
||||
$lang['stix0005'] = "View top of all time";
|
||||
$lang['stix0006'] = "View top of the month";
|
||||
$lang['stix0007'] = "View top of the week";
|
||||
$lang['stix0008'] = "Server usage";
|
||||
$lang['stix0009'] = "In the last 7 days";
|
||||
$lang['stix0010'] = "In the last 30 days";
|
||||
$lang['stix0011'] = "In the last 24 hours";
|
||||
$lang['stix0012'] = "select period";
|
||||
$lang['stix0013'] = "Last day";
|
||||
$lang['stix0014'] = "Last week";
|
||||
$lang['stix0015'] = "Last month";
|
||||
$lang['stix0016'] = "Active / inactive time (of all clients)";
|
||||
$lang['stix0017'] = "Versions (of all clients)";
|
||||
$lang['stix0018'] = "Nationalities (of all clients)";
|
||||
$lang['stix0019'] = "Platforms (of all clients)";
|
||||
$lang['stix0020'] = "Current statistics";
|
||||
$lang['stix0023'] = "Server status";
|
||||
$lang['stix0024'] = "Online";
|
||||
$lang['stix0025'] = "Offline";
|
||||
$lang['stix0026'] = "Clients (Online / Max)";
|
||||
$lang['stix0027'] = "Amount of channels";
|
||||
$lang['stix0028'] = "Average server ping";
|
||||
$lang['stix0029'] = "Total bytes received";
|
||||
$lang['stix0030'] = "Total bytes sent";
|
||||
$lang['stix0031'] = "Server uptime";
|
||||
$lang['stix0032'] = "before offline:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Days, <span id=\"hours\">00</span> Hours, <span id=\"minutes\">00</span> Mins, <span id=\"seconds\">00</span> Secs";
|
||||
$lang['stix0034'] = "Average packet loss";
|
||||
$lang['stix0035'] = "Overall statistics";
|
||||
$lang['stix0036'] = "Server name";
|
||||
$lang['stix0037'] = "Server address (Host Address : Port)";
|
||||
$lang['stix0038'] = "Server password";
|
||||
$lang['stix0039'] = "No (Server is public)";
|
||||
$lang['stix0040'] = "Yes (Server Is private)";
|
||||
$lang['stix0041'] = "Server ID";
|
||||
$lang['stix0042'] = "Server platform";
|
||||
$lang['stix0043'] = "Server version";
|
||||
$lang['stix0044'] = "Server creation date (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Report to server list";
|
||||
$lang['stix0046'] = "Activated";
|
||||
$lang['stix0047'] = "Not activated";
|
||||
$lang['stix0048'] = "not enough data yet...";
|
||||
$lang['stix0049'] = "Online time of all user / month";
|
||||
$lang['stix0050'] = "Online time of all user / week";
|
||||
$lang['stix0051'] = "TeamSpeak has failed, so no creation date...";
|
||||
$lang['stmy0001'] = "My statistics";
|
||||
$lang['stmy0002'] = "Rank";
|
||||
$lang['stmy0003'] = "Database ID:";
|
||||
$lang['stmy0004'] = "Unique ID:";
|
||||
$lang['stmy0005'] = "Total connections to the server:";
|
||||
$lang['stmy0006'] = "Start date for statistics:";
|
||||
$lang['stmy0007'] = "Total online time:";
|
||||
$lang['stmy0008'] = "Online time last 7 days:";
|
||||
$lang['stmy0009'] = "Online time last 30 days:";
|
||||
$lang['stmy0010'] = "Achievements completed:";
|
||||
$lang['stmy0011'] = "Time achievement progress";
|
||||
$lang['stmy0012'] = "Time: Legendary";
|
||||
$lang['stmy0013'] = "Because you have an online time of %s hours.";
|
||||
$lang['stmy0014'] = "Progress completed";
|
||||
$lang['stmy0015'] = "Time: Gold";
|
||||
$lang['stmy0016'] = "% Completed for Legendary";
|
||||
$lang['stmy0017'] = "Time: Silver";
|
||||
$lang['stmy0018'] = "% Completed for Gold";
|
||||
$lang['stmy0019'] = "Time: Bronze";
|
||||
$lang['stmy0020'] = "% Completed for Silver";
|
||||
$lang['stmy0021'] = "Time: Unranked";
|
||||
$lang['stmy0022'] = "% Completed for Bronze";
|
||||
$lang['stmy0023'] = "Connection achievement progress";
|
||||
$lang['stmy0024'] = "Connects: Legendary";
|
||||
$lang['stmy0025'] = "Because You connected %s times to the server.";
|
||||
$lang['stmy0026'] = "Connects: Gold";
|
||||
$lang['stmy0027'] = "Connects: Silver";
|
||||
$lang['stmy0028'] = "Connects: Bronze";
|
||||
$lang['stmy0029'] = "Connects: Unranked";
|
||||
$lang['stmy0030'] = "Progress next servergroup";
|
||||
$lang['stnv0001'] = "Server news";
|
||||
$lang['stnv0002'] = "Close";
|
||||
$lang['stnv0003'] = "Refresh client information";
|
||||
$lang['stnv0004'] = "Only use this refresh, when your TS3 information got changed, such as your TS3 username";
|
||||
$lang['stnv0005'] = "It only works, when you are connected to the TS3 server at the same time";
|
||||
$lang['stnv0006'] = "Refresh";
|
||||
$lang['stnv0007'] = "Battle area - Page content";
|
||||
$lang['stnv0008'] = "You can challenge other users in a battle between two users or two teams.";
|
||||
$lang['stnv0009'] = "While the battle is active the online time of the teams/users will be counted.";
|
||||
$lang['stnv0010'] = "When the battle ends the team/user with the highest online time wins.";
|
||||
$lang['stnv0011'] = "(The regular battling time is 48 hours)";
|
||||
$lang['stnv0012'] = "The winning team/user will recieve a price, which the user can use whenever the user wants.";
|
||||
$lang['stnv0013'] = "It will be displayed on the <a href=\"my_stats.php\">My statistics</a> tab.";
|
||||
$lang['stnv0014'] = "(Could be online time boost(2x) for 8 hours, instant online time (4 hours), etc.";
|
||||
$lang['stnv0015'] = "These boosts can be used for example to climb in the top users of the week.";
|
||||
$lang['stnv0016'] = "Not available";
|
||||
$lang['stnv0017'] = "You are not connected to the TS3 Server, so it can't display any data for you.";
|
||||
$lang['stnv0018'] = "Please connect to the TS3 Server and then Refresh your Session by pressing the blue Refresh Button at the top-right corner.";
|
||||
$lang['stnv0019'] = "My statistics - Page content";
|
||||
$lang['stnv0020'] = "This page contains a overall summary of your personal statistics and activity on the server.";
|
||||
$lang['stnv0021'] = "The informations are collected since the beginning of the Ranksystem, they are not since the beginning of the TeamSpeak server.";
|
||||
$lang['stnv0022'] = "This page receives its values out of a database. So the values might be delayed a bit.";
|
||||
$lang['stnv0023'] = "The sum inside of the donut charts may differ to the amount of 'Total user'. The reason is that this data weren't collected with older versions of the Ranksystem.";
|
||||
$lang['stnv0024'] = "Ranksystem - Statistics";
|
||||
$lang['stnv0025'] = "Limit entries";
|
||||
$lang['stnv0026'] = "all";
|
||||
$lang['stnv0027'] = "The informations on this site could be outdated! It seems the Ranksystem is no more connected to the TeamSpeak.";
|
||||
$lang['stnv0028'] = "(You are not connected to the TS3!)";
|
||||
$lang['stnv0029'] = "List Rankup";
|
||||
$lang['stnv0030'] = "Ranksystem info";
|
||||
$lang['stnv0031'] = "About the search field you can search for pattern in clientname, unique Client-ID and Client-database-ID.";
|
||||
$lang['stnv0032'] = "You can also use a view filter options (see below). Enter the filter also inside the search field.";
|
||||
$lang['stnv0033'] = "Combination of filter and search pattern are possible. Enter first the filter(s) followed without any sign your search pattern.";
|
||||
$lang['stnv0034'] = "Also it is possible to combine multiple filters. Enter this consecutively inside the search field.";
|
||||
$lang['stnv0035'] = "<u>Example:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Show only clients, which are excepted (client, servergroup or channel exception).";
|
||||
$lang['stnv0037'] = "Show only clients, which are not excepted.";
|
||||
$lang['stnv0038'] = "Show only clients, which are online.";
|
||||
$lang['stnv0039'] = "Show only clients, which are not online.";
|
||||
$lang['stnv0040'] = "Show only clients, which are in defined group. Represent the actuel rank/level.<br>Replace <i>GROUPID</i> with the wished servergroup ID.";
|
||||
$lang['stnv0041'] = "Show only clients, which are selected by lastseen.<br>Replace <i>OPERATOR</i> with '<' or '>' or '=' or '!='.<br>And replace <i>TIME</i> with a timestamp or date with format 'Y-m-d H-i' (example: 2016-06-18 20-25).<br>Full example: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Show only clients, which are from defined country.<br>Replace <i>TS3-COUNTRY-CODE</i> with the wished country.<br>For list of codes google for ISO 3166-1 alpha-2";
|
||||
$lang['stri0001'] = "Ranksystem information";
|
||||
$lang['stri0002'] = "What is the Ranksystem?";
|
||||
$lang['stri0003'] = "A TS3 Bot, which automatically grant ranks (servergroups) to user on a TeamSpeak 3 Server for online time or online activity. It also gathers informations and statistics about the user and displays the result on this site.";
|
||||
$lang['stri0004'] = "Who created the Ranksystem?";
|
||||
$lang['stri0005'] = "When the Ranksystem was Created?";
|
||||
$lang['stri0006'] = "First alpha release: 05/10/2014.";
|
||||
$lang['stri0007'] = "First beta release: 01/02/2015.";
|
||||
$lang['stri0008'] = "You can see the newest version on the <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "How was the Ranksystem created?";
|
||||
$lang['stri0010'] = "The Ranksystem is coded in";
|
||||
$lang['stri0011'] = "It uses also the following libraries:";
|
||||
$lang['stri0012'] = "Special Thanks To:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - for russian translation";
|
||||
$lang['stri0014'] = "Bejamin Frost - for initialisation the bootstrap design";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - for italian translation";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - for initialisation arabic translation";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - for initialisation romanian translation";
|
||||
$lang['sttw0001'] = "Top users";
|
||||
$lang['sttw0002'] = "Of the week";
|
||||
$lang['sttw0003'] = "With %s hours online time";
|
||||
$lang['sttw0004'] = "Top 10 compared";
|
||||
$lang['sttw0005'] = "Hours (Defines 100 %)";
|
||||
$lang['sttw0006'] = "%s hours (%s%)";
|
||||
$lang['sttw0007'] = "Top 10 Statistics";
|
||||
$lang['sttw0008'] = "Top 10 vs others in online time";
|
||||
$lang['sttw0009'] = "Top 10 vs others in active time";
|
||||
$lang['sttw0010'] = "Top 10 vs others in inactive time";
|
||||
$lang['sttw0011'] = "Top 10 (in hours)";
|
||||
$lang['sttw0012'] = "Other %s users (in hours)";
|
||||
$lang['sttw0013'] = "With %s hours active time";
|
||||
$lang['sttm0001'] = "Of the month";
|
||||
$lang['stta0001'] = "Of all time";
|
||||
$lang['upinf'] = "A new Version of the Ranksystem is available; Inform clients on server...";
|
||||
$lang['upmsg'] = "\nHey, a new version of the [B]Ranksystem[/B] is available!\n\ncurrent version: %s\n[B]new version: %s[/B]\n\nPlease check out our site for more informations [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Database update successfully executed.";
|
||||
$lang['upuser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s).";
|
||||
$lang['upuserboost'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "The unique Client-ID %s couldn't reached on the TeamSpeak!";
|
||||
$lang['upusrinf'] = "User %s was successfully informed.";
|
||||
$lang['user'] = "Username";
|
||||
$lang['wiaction'] = "action";
|
||||
$lang['wiboost'] = "boost";
|
||||
$lang['wiboostdesc'] = "Give an user on your TeamSpeak server a servergroup (have to be created manually), which you can declare here as boost group. Define also a factor which should be used (for example 2x) and a time, how long the boost should be rated.<br>The higher the factor, the faster an user reaches the next higher rank.<br>Is the time expired, the boost servergroup get automatically removed from the concerned user. The time starts running as soon as the user gets the servergroup.<br><br>servergroup ID => factor => time (in seconds)<br><br>Each entry have to separate from next with a comma.<br><br>Example:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>On this an user in servergroup 12 get the factor 2 for the next 6000 seconds, an user in servergroup 13 get the factor 3 for 2500 seconds, and so on...";
|
||||
$lang['wibot1'] = "Ranksystem Bot should be stopped. Check the log below for more information!";
|
||||
$lang['wibot2'] = "Ranksystem Bot should be started. Check the log below for more information!";
|
||||
$lang['wibot3'] = "Ranksystem Bot should be restarted. Check the log below for more information!";
|
||||
$lang['wibot4'] = "Start / Stop Ranksystem Bot";
|
||||
$lang['wibot5'] = "Start Bot";
|
||||
$lang['wibot6'] = "Stop Bot";
|
||||
$lang['wibot7'] = "Restart Bot";
|
||||
$lang['wibot8'] = "Ranksystem log (extract):";
|
||||
$lang['wibot9'] = "Fill out all mandatory fields before starting the Ranksystem Bot!";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Reset the online time of an user, if his TeamSpeak Client-database-ID changed.<br><br>Example:<br>If a clients gets removed from the TeamSpeak server, it gets a new Client-database-ID with the next connect to the server.";
|
||||
$lang['wiconferr'] = "There is an error in the configuration of the Ranksystem. Please go to the webinterface and correct the Core Settings. Especially check the config 'rank up'!";
|
||||
$lang['widaform'] = "Date format";
|
||||
$lang['widaformdesc'] = "Choose the showing date format.<br><br>Example:<br>%a days, %h hours, %i mins, %s secs";
|
||||
$lang['widbcfgsuc'] = "Database configurations saved successfully.";
|
||||
$lang['widbcfgerr'] = "Error while saving the database configurations! Connection failed or writeout error for 'other/dbconfig.php'";
|
||||
$lang['widelcld'] = "delete clients";
|
||||
$lang['widelcldgrp'] = "renew groups";
|
||||
$lang['widelcldgrpdesc'] = "The Ranksystem remember the given servergroups, so it don't need to give/check this with every run of the worker.php again.<br><br>With this function you can remove once time the knowledge of given servergroups. In effect the ranksystem try to give all clients (which are on the TS3 server online) the servergroup of the actual rank.<br>For each client, which gets the group or stay in group, the Ranksystem remember this like described at beginning.<br><br>This function can be helpful, when user are not in the servergroup, they should be for the defined online time.<br><br>Attention: Run this in a moment, where the next few minutes no rankups become due!!! The Ranksystem can't remove the old group, cause it can't remember ;-)";
|
||||
$lang['widelclddesc'] = "Delete the before selected clients out of the Ranksystem database.<br><br>With this deletion are the clients on the TeamSpeak Server untouched.";
|
||||
$lang['widelsg'] = "remove out of servergroups";
|
||||
$lang['widelsgdesc'] = "Choose if the clients should also be removed out of the last known servergroup, when you delete clients out of the Ranksystem database.<br><br>It will only considered servergroups, which concerned the Ranksystem";
|
||||
$lang['wideltime'] = "Deletiontime";
|
||||
$lang['wideltimedesc'] = "Clean old clients out of the Ranksystem database.<br>Entry a time in seconds which a client was not seen to delete it.<br><br>0 - deletes all clients out of the Ranksystem<br><br>The Userdatas on the TeamSpeak server are with this untouched!";
|
||||
$lang['wiexcid'] = "channel exception";
|
||||
$lang['wiexciddesc'] = "A comma separated list of the channel-IDs that are not to participate in the Ranksystem.<br><br>Stay users in one of the listed channels, the time there will be completely ignored. There is neither the online time, yet the idle time counted.<br><br>Sense does this function only with the mode 'online time', cause here could be ignored AFK channels for example.<br>With the mode 'active time', this function is useless because as would be deducted the idle time in AFK rooms and thus not counted anyway.<br><br>Be a user in an excluded channel, it is noted for this period as 'excluded from the Ranksystem'. The user dows no longer appears in the list 'stats/list_rankup.php' unless excluded clients should not be displayed there (Stats Page - excepted client).";
|
||||
$lang['wiexgrp'] = "servergroup exception";
|
||||
$lang['wiexgrpdesc'] = "A comma seperated list of servergroup-IDs, which should not conside for the Ranksystem.<br>User in at least one of this servergroups IDs will be ignored for the rank up.";
|
||||
$lang['wiexuid'] = "client exception";
|
||||
$lang['wiexuiddesc'] = "A comma seperated list of unique Client-IDs, which should not conside for the Ranksystem.<br>User in this list will be ignored for the rank up.";
|
||||
$lang['wigrptime'] = "rank up definition";
|
||||
$lang['wigrptimedesc'] = "Define here after which time a user should get automatically a predefined servergroup.<br><br>time (seconds)=>servergroup ID<br><br>Important for this is the 'online time' or the 'active time' of an user, depending on setting of the mode.<br><br>Each entry have to separate from next with a comma.<br><br>The time must be entered cumulative<br><br>Example:<br>60=>9,120=>10,180=>11<br><br>On this a user get after 60 seconds the servergroup 9, in turn after 60 seconds the servergroup 10, and so on...";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "Core settings";
|
||||
$lang['wihldb'] = "Database settings";
|
||||
$lang['wihlmsg'] = "Message settings";
|
||||
$lang['wihlsty'] = "Stats page settings";
|
||||
$lang['wihlts'] = "TeamSpeak settings";
|
||||
$lang['wihlvs'] = "Various settings";
|
||||
$lang['wiignidle'] = "Ignore idle";
|
||||
$lang['wiignidledesc'] = "Define a period, up to which the idle time of an user will be ignored.<br><br>When a client does not do anything on the server (=idle), this time is noted by the Ranksystem. With this feature the idle time of an user will not be counted until the defined limit. Only when the defined limit is exceeded, it counts from that date for the Ranksystem as idle time.<br><br>This function plays only in conjunction with the mode 'active time' a role.<br><br>Meaning the function is e.g. to evaluate the time of listening in conversations as activity.<br><br>0 = disable the feature<br><br>Example:<br>Ignore idle = 600 (seconds)<br>A client has an idle of 8 minuntes<br>consequence:<br>8 minutes idle are ignored and he therefore receives this time as active time. If the idle time now increased to over 12 minutes so the time is over 10 minutes, and in this case 2 minutes would be counted as idle time.";
|
||||
$lang['wilog'] = "Logpath";
|
||||
$lang['wilogdesc'] = "Path of the log file of the Ranksystem.<br><br>Example:<br>/var/logs/ranksystem/<br><br>Be sure, the webuser has the write-permissions to the logpath.";
|
||||
$lang['wimsgmsg'] = "Message";
|
||||
$lang['wimsgmsgdesc'] = "Define a message, which will be send to an user, when he rises the next higher rank.<br><br>This message will be send via TS3 private message. So every know bb-code could be used, which also works for a normal private message.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Furthermore, the previously spent time can be expressed by arguments:<br>%1\$s - days<br>%2\$s - hours<br>%3\$s - minutes<br>%4\$s - seconds<br><br>Example:<br>Hey,\\nyou reached a higher rank, since you already connected for %1\$s days, %2\$s hours and %3\$s minutes to our TS3 server.[B]Keep it up![/B] ;-)";
|
||||
$lang['wimsgsn'] = "Server-News";
|
||||
$lang['wimsgsndesc'] = "Define a message, which will be shown on the /stats/ page as server news.<br><br>You can use default html functions to modify the layout<br><br>Example:<br><b> - <b>for bold</b><br><u> - <u>for underline</u><br><i> - <i>for italic</i><br><br> - for word-wrap (new line)";
|
||||
$lang['wilogout'] = "Logout";
|
||||
$lang['wimsgusr'] = "Rank up notification";
|
||||
$lang['wimsgusrdesc'] = "Inform an user with a private text message about his rank up.";
|
||||
$lang['winav1'] = "TeamSpeak";
|
||||
$lang['winav2'] = "Database";
|
||||
$lang['winav3'] = "Core";
|
||||
$lang['winav4'] = "Other";
|
||||
$lang['winav5'] = "Message";
|
||||
$lang['winav6'] = "Stats page";
|
||||
$lang['winav7'] = "Administrate";
|
||||
$lang['winav8'] = "Start / Stop Bot";
|
||||
$lang['winav9'] = "Update available!";
|
||||
$lang['winav10'] = "Please use the webinterface only via %s HTTPS%s An encryption is critical to ensure your privacy and security.%sTo be able to use HTTPS your webserver needs to support an SSL connection.";
|
||||
$lang['wiselcld'] = "select clients";
|
||||
$lang['wiselclddesc'] = "Select the clients by the last known username. For this you only have to start typing.<br>Multiple selections are comma separated, which does the system automatically.<br><br>With the selection you can choose with the next step an action.";
|
||||
$lang['wishcolas'] = "actual servergroup";
|
||||
$lang['wishcolasdesc'] = "Show column 'actual servergroup' in list_rankup.php";
|
||||
$lang['wishcolat'] = "active time";
|
||||
$lang['wishcolatdesc'] = "Show column 'sum. active time' in list_rankup.php";
|
||||
$lang['wishcolcld'] = "Client-name";
|
||||
$lang['wishcolclddesc'] = "Show column 'Client-name' in list_rankup.php";
|
||||
$lang['wishcoldbid'] = "database-ID";
|
||||
$lang['wishcoldbiddesc'] = "Show column 'Client-database-ID' in list_rankup.php";
|
||||
$lang['wishcolit'] = "idle time";
|
||||
$lang['wishcolitdesc'] = "Show column 'sum idle time' in list_rankup.php";
|
||||
$lang['wishcolls'] = "last seen";
|
||||
$lang['wishcollsdesc'] = "Show column 'last seen' in list_rankup.php";
|
||||
$lang['wishcolnx'] = "next rank up";
|
||||
$lang['wishcolnxdesc'] = "Show column 'next rank up' in list_rankup.php";
|
||||
$lang['wishcolot'] = "online time";
|
||||
$lang['wishcolotdesc'] = "Show column 'sum. online time' in list_rankup.php";
|
||||
$lang['wishcolrg'] = "rank";
|
||||
$lang['wishcolrgdesc'] = "Show column 'rank' in list_rankup.php";
|
||||
$lang['wishcolsg'] = "next servergroup";
|
||||
$lang['wishcolsgdesc'] = "Show column 'next servergroup' in list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc'] = "Show column 'unique Client-ID' in list_rankup.php";
|
||||
$lang['wishexcld'] = "excepted client";
|
||||
$lang['wishexclddesc'] = "Show clients in list_rankup.php,<br>which are excluded and therefore not participate in the Ranksystem.";
|
||||
$lang['wishexgrp'] = "excepted groups";
|
||||
$lang['wishexgrpdesc'] = "Show clients in list_rankup.php, which are in the list 'client exception' and shouldn't be conside for the Ranksystem.";
|
||||
$lang['wishhicld'] = "Clients in highest Level";
|
||||
$lang['wishhiclddesc'] = "Show clients in list_rankup.php, which reached the highest level in the Ranksystem.";
|
||||
$lang['wisupidle'] = "Mode";
|
||||
$lang['wisupidledesc'] = "There are two modes, as time can be counted and can then apply for a rank increase.<br><br>1) online time: Here the pure online time of the user is taken into account (see column 'sum. online time' in the 'stats/list_rankup.php')<br><br>2) active time: This will be deducted from the online time of a user, the inactive time (idle) (see column 'sum. active time' in the 'stats/list_rankup.php').<br><br>A change of mode with an already longer running database is not recommended, but may work.";
|
||||
$lang['wisvconf'] = "save";
|
||||
$lang['wisvsuc'] = "Changes successfully saved!";
|
||||
$lang['wisvres'] = "You need to restart the Ranksystem before the changes will take effect!";
|
||||
$lang['witime'] = "Timezone";
|
||||
$lang['witimedesc'] = "Select the timezone the server is hosted.";
|
||||
$lang['wits3dch'] = "Default Channel";
|
||||
$lang['wits3dchdesc'] = "The channel-ID, the bot should connect with.<br><br>The Bot will join this channel after connecting to the TeamSpeak server.";
|
||||
$lang['wits3host'] = "TS3 Hostaddress";
|
||||
$lang['wits3hostdesc'] = "TeamSpeak 3 Server address<br>(IP oder DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "With the Slowmode you can reduce \"spam\" of query commands to the TeamSpeak server. This prevent bans in case of flood.<br>TeamSpeak Query commands get delayed with this function.<br><br>!!! ALSO IT REDUCE THE CPU USAGE !!!<br><br>The activation is not recommended, if not required. The delay increases the duration of the Bot, which makes it imprecisely.";
|
||||
$lang['wits3qnm'] = "Botname";
|
||||
$lang['wits3qnm2'] = "2nd Botname";
|
||||
$lang['wits3qnm2desc'] = "A fallback Botname, if the first one is already in use.";
|
||||
$lang['wits3qnmdesc'] = "The name, with this the query-connection will be established.<br>You can name it free.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Password";
|
||||
$lang['wits3querpwdesc'] = "TeamSpeak 3 query password<br>Password for the query user.";
|
||||
$lang['wits3querusr'] = "TS3 Query-User";
|
||||
$lang['wits3querusrdesc'] = "TeamSpeak 3 query username<br>Default is serveradmin<br>Of course, you can also create an additional serverquery account only for the Ranksystem.<br>The needed permissions you find on:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Port";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 query port<br>Default is 10011 (TCP)<br>If its not default, you should find it in your 'ts3server.ini'.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Port";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 voice port<br>Default is 9987 (UDP)<br>This is the port, you uses also to connect with the TS3 Client.";
|
||||
$lang['wiupcheck'] = "Update info";
|
||||
$lang['wiupcheckdesc'] = "If the Update info is enable, the listed user gets a notification with a private text message, once an update is available.";
|
||||
$lang['wiuptime'] = "Interval";
|
||||
$lang['wiuptimedesc'] = "Enter here how much seconds have to gone till the Ranksystem should check for available updates.<br><br>Attention, for each check the listed user gets a notification. If no one of the listed users is online, the Ranksystem will try to notificate with the next interval.";
|
||||
$lang['wiupuid'] = "Recipient";
|
||||
$lang['wiupuiddesc'] = "A comma separate list of unique Client-IDs, which shoud be informed on the TeamSpeak via private message for available updates.";
|
||||
$lang['wivlang'] = "Language";
|
||||
$lang['wivlangdesc'] = "Choose a default language for the Ranksystem.<br><br>The language is also selectable on the websites for the users and will be stored for the session.";
|
||||
?>
|
||||
@@ -1,245 +1,248 @@
|
||||
<?PHP
|
||||
$lang = array();
|
||||
$lang['adduser'] = "L'utente %s ( Client-ID: %s; Client-database-ID %s) non è presente nel database -> L'utente è stato aggiunto al sistema.";
|
||||
$lang['changedbid'] = "L'utente %s (unique Client-ID: %s) ha ottenuto un nuovo database-ID (%s). Aggiorna il vecchio Client-database-ID (%s) e resetta il tempo raggiunto!";
|
||||
$lang['crawl'] = "Scansione degli utenti connessi e conteggio delle attività...";
|
||||
$lang['clean'] = "Scansione degli utenti che vanno eliminati...";
|
||||
$lang['cleanc'] = "Utenti eliminati con successo dal database";
|
||||
$lang['cleancdesc'] = "Con questa funzione i vecchi utenti nel database verranno eliminati.<br><br>Così da poter sincronizzare gli utenti del Ranksystem con il database di TeamSpeak. Gli utenti non presenti nel database di TeamSpeak verranno cancellati dal Ranksystem.<br><br>Questa funzione puo essere abilitata solo quando la modalità slowmode non è abilitata!<br><br><br>Per la correzione automatica del database di utenti TeamSpeak potrete usare \"Client Cleaner\" :<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "Sono stati cancellati %s utenti dal database del RankSystem perché non esistevano piu nel database di TeamSpeak.";
|
||||
$lang['cleanno'] = "Non è stato rilevato nulla da cancellare...";
|
||||
$lang['cleanp'] = "tempo di pulitura del database";
|
||||
$lang['cleanpdesc'] = "Imposta il tempo che deve trascorrere alla prossima pulitura del database.<br><br>Imposta il tempo in secondi.<br><br>È consigliato eseguire la 'pulitura' del database almeno una volta al giorno, in quanto il tempo di 'pulitura' del database aumenta nel caso vi sia un database di grandi dimensioni.";
|
||||
$lang['cleanrs'] = "Numero di utenti trovati nel database del Ranksystem: %s";
|
||||
$lang['cleants'] = "Numero di utenti trovati nel database di TeamSpeak: %s (of %s)";
|
||||
$lang['days'] = "%s <small>giorni</small>";
|
||||
$lang['dbconerr'] = "Connessione al Database fallita: ";
|
||||
$lang['delcldgrpif'] = "Errore nella rimozione delle informazioni del servergroup: %s";
|
||||
$lang['delcldgrpsc'] = "Informazioni su servergroup per l'utente %s cancellate correttamente.";
|
||||
$lang['delclientsif'] = "%s Utenti cancellati dal database del Ranksystem!";
|
||||
$lang['delclientssc'] = "%s Utenti correttamente cancellati dal database del Ranksystem!";
|
||||
$lang['errlogin'] = "Nome utente e/o password errati! Riprova...";
|
||||
$lang['adduser'] = "L'utente %s ( Client-ID: %s; Client-database-ID %s) non è presente nel database -> L'utente è stato aggiunto al sistema.";
|
||||
$lang['changedbid'] = "L'utente %s (unique Client-ID: %s) ha ottenuto un nuovo database-ID (%s). Aggiorna il vecchio Client-database-ID (%s) e resetta il tempo raggiunto!";
|
||||
$lang['crawl'] = "Scansione degli utenti connessi e conteggio delle attività...";
|
||||
$lang['clean'] = "Scansione degli utenti che vanno eliminati...";
|
||||
$lang['cleanc'] = "Utenti eliminati con successo dal database";
|
||||
$lang['cleancdesc'] = "Con questa funzione i vecchi utenti nel database verranno eliminati.<br><br>Così da poter sincronizzare gli utenti del Ranksystem con il database di TeamSpeak. Gli utenti non presenti nel database di TeamSpeak verranno cancellati dal Ranksystem.<br><br>Questa funzione puo essere abilitata solo quando la modalità slowmode non è abilitata!<br><br><br>Per la correzione automatica del database di utenti TeamSpeak potrete usare \"Client Cleaner\" :<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "Sono stati cancellati %s utenti dal database del RankSystem perché non esistevano piu nel database di TeamSpeak.";
|
||||
$lang['cleanno'] = "Non è stato rilevato nulla da cancellare...";
|
||||
$lang['cleanp'] = "tempo di pulitura del database";
|
||||
$lang['cleanpdesc'] = "Imposta il tempo che deve trascorrere alla prossima pulitura del database.<br><br>Imposta il tempo in secondi.<br><br>È consigliato eseguire la 'pulitura' del database almeno una volta al giorno, in quanto il tempo di 'pulitura' del database aumenta nel caso vi sia un database di grandi dimensioni.";
|
||||
$lang['cleanrs'] = "Numero di utenti trovati nel database del Ranksystem: %s";
|
||||
$lang['cleants'] = "Numero di utenti trovati nel database di TeamSpeak: %s (of %s)";
|
||||
$lang['days'] = "%s <small>giorni</small>";
|
||||
$lang['dbconerr'] = "Connessione al Database fallita: ";
|
||||
$lang['delcldgrpif'] = "Errore nella rimozione delle informazioni del servergroup: %s";
|
||||
$lang['delcldgrpsc'] = "Informazioni su servergroup per l'utente %s cancellate correttamente.";
|
||||
$lang['delclientsif'] = "%s Utenti cancellati dal database del Ranksystem!";
|
||||
$lang['delclientssc'] = "%s Utenti correttamente cancellati dal database del Ranksystem!";
|
||||
$lang['errlogin'] = "Nome utente e/o password errati! Riprova...";
|
||||
$lang['errlogin2'] = "Protezione attacchi brute force: Riprova in %s secondi!";
|
||||
$lang['errlogin3'] = "Protezione attacchi brute force: Hai commesso troppi errori. Sei stato bannato per 5 minuti!";
|
||||
$lang['error'] = "Errore ";
|
||||
$lang['errremgrp'] = "Errore nella rimozione dell'utente: %s (Client-ID) Dal server Group con il servergroup-database-ID: %s!";
|
||||
$lang['errremdb'] = "Errore nella rimozione dell'utente: %s (Client-ID) dal database del RankSystem!";
|
||||
$lang['errsel'] = "Errore nella selezione degli <br>Utenti: %s<br>opzione 'cancella utenti': %s<br>opzione 'somma del tempo online': %s";
|
||||
$lang['errukwn'] = "È stato riscontrato un errore sconosciuto!";
|
||||
$lang['errupcount'] = "Errore nel rinnovo della somma del tempo online dell’utente %s con l’Id unico %s";
|
||||
$lang['highest'] = "È stato raggiunto il rank massimo";
|
||||
$lang['error'] = "Errore ";
|
||||
$lang['errremgrp'] = "Errore nella rimozione dell'utente: %s (Client-ID) Dal server Group con il servergroup-database-ID: %s!";
|
||||
$lang['errremdb'] = "Errore nella rimozione dell'utente: %s (Client-ID) dal database del RankSystem!";
|
||||
$lang['errsel'] = "Errore nella selezione degli <br>Utenti: %s<br>opzione 'cancella utenti': %s<br>opzione 'somma del tempo online': %s";
|
||||
$lang['errukwn'] = "È stato riscontrato un errore sconosciuto!";
|
||||
$lang['errupcount'] = "Errore nel rinnovo della somma del tempo online dell’utente %s con l’Id unico %s";
|
||||
$lang['highest'] = "È stato raggiunto il rank massimo";
|
||||
$lang['install'] = "Installazione";
|
||||
$lang['instdb'] = "Installa il database:";
|
||||
$lang['instdbsuc'] = "Il database %s è stato creato con successo.";
|
||||
$lang['isntwicfg'] = "Impossibile salvare la configurazione del database! Modifica il file 'other/dbconfig.php' dandogli i permessi 0777 (chmod 777 nomefile) e riprova.";
|
||||
$lang['instdb'] = "Installa il database:";
|
||||
$lang['instdbsuc'] = "Il database %s è stato creato con successo.";
|
||||
$lang['insterr1'] = "ATTENTION: You are trying to install the Ranksystem, but there is already existing a database with the name \"%s\".<br>Due installation this database will be dropped!<br>Be sure you want this. If not, please choose an other database name.";
|
||||
$lang['insterr2'] = "PDO is needed but seems not installed. Install <a href=\"http://php.net/manual/de/pdo.installation.php\" target=\"_blank\">PDO</a> and try it again!";
|
||||
$lang['insterr3'] = "PHP exec function need to be enabled but seems to be disabled. Please enable the PHP <a href=\http://php.net/manual/de/function.exec.php\" target=\"_blank\">exec</a> function and try it again!";
|
||||
$lang['insterr4'] = "Your PHP version (%s) is below 5.5.0. Update your PHP and try it again!";
|
||||
$lang['isntwicfg'] = "Impossibile salvare la configurazione del database! Modifica il file 'other/dbconfig.php' dandogli i permessi 0777 (chmod 777 nomefile on windows 'full access') e riprova.";
|
||||
$lang['isntwicfg2'] = "Configurate Webinterface";
|
||||
$lang['isntwichm'] = "Permessi di scrittura negati per la cartella \"%s\". Per favore dai i permessi chmod 777 e prova ad avviare il Ranksystem di nuovo.";
|
||||
$lang['isntwidbhost'] = "Indirizzo host DB:";
|
||||
$lang['isntwidbhostdesc'] = "L'indirizzo del server su cui si trova il database (Se il database è in locale basterà inserire 127.0.0.1)<br>(IP o DNS)";
|
||||
$lang['isntwidbmsg'] = "Errore del Database: ";
|
||||
$lang['isntwidbname'] = "Nome DB:";
|
||||
$lang['isntwidbnamedesc'] = "Nome del database";
|
||||
$lang['isntwidbpass'] = "Password DB:";
|
||||
$lang['isntwidbpassdesc'] = "La Password per accedere al database";
|
||||
$lang['isntwidbtype'] = "Tipo DB:";
|
||||
$lang['isntwidbtypedesc'] = "Il tipo di Database<br><br>Dovrai installare i driver PDO.<br>Per maggiori informazioni sui requisiti guarda sulla pagina http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "Utente DB:";
|
||||
$lang['isntwidbusrdesc'] = "Nome dell'utente che ha l'accesso al database";
|
||||
$lang['isntwidel'] = "Per favore cancella il file 'install.php' dal tuo webserver e apri la %s per configurare il Ranksystem!";
|
||||
$lang['isntwiusr'] = "L'utente dell'interfaccia Web è stato creato con successo.";
|
||||
$lang['isntwiusrcr'] = "Create Webinterface-User";
|
||||
$lang['isntwiusrdesc'] = "Inserisci nome utente e password per l'accesso all'interfaccia web. Con l'interfaccia web tu potrai configurare il Ranksystem.";
|
||||
$lang['isntwiusrh'] = "Accesso - Interfaccia Web";
|
||||
$lang['listacsg'] = "Servergroup attuale";
|
||||
$lang['listcldbid'] = "Client-database-ID";
|
||||
$lang['listexgrp'] = "Non viene considerato dal Ranksystem (eccezione del servergroup).";
|
||||
$lang['listexuid'] = "Non viene considerato dal Ranksystem (eccezione dell'utente).";
|
||||
$lang['listip'] = "Indirizzo IP";
|
||||
$lang['listnick'] = "Nome Utente";
|
||||
$lang['listnxsg'] = "Prossimo servergroup";
|
||||
$lang['listnxup'] = "Prossimo Rank";
|
||||
$lang['listrank'] = "Rank";
|
||||
$lang['listseen'] = "Ultima volta online";
|
||||
$lang['listsuma'] = "Somma del tempo di attività";
|
||||
$lang['listsumi'] = "Somma del tempo in IDLE";
|
||||
$lang['listsumo'] = "Somma del tempo Online";
|
||||
$lang['listuid'] = "unique Client-ID";
|
||||
$lang['login'] = "Login";
|
||||
$lang['nocount'] = "L'utente %s (unique Client-ID: %s; Client-database-ID %s) è una query oppure effettua molte connessioni (conterà solo la prima connessione) -> Non verrà contato!";
|
||||
$lang['noentry'] = "Nessuna voce trovata..";
|
||||
$lang['pass'] = "Password";
|
||||
$lang['queryname'] = "Il primo nome del bot è già in uso. Sto riprovando con il secondo...";
|
||||
$lang['sccrmcld'] = "L'utente con il Client-ID %s è stato correttamente cancellato dal database del ranksystem.";
|
||||
$lang['sccupcount'] = "All'utente con il Client-ID %s è stato assegnato un tempo online di %s.";
|
||||
$lang['setontime'] = "Somma tempo online";
|
||||
$lang['setontimedesc'] = "Inserisci il nuovo tempo online, che verrà impostato per gli utenti precedentemente selezionati. Il tempo online raccolto precedentemente verrà sovrascritto.<br><br>La somma del tempo online inserita verrà considerata per il rank.";
|
||||
$lang['sgrpadd'] = "All'utente %s è stato assegnato il servergroup %s (Client-ID unico: %s; Client-database-ID %s).";
|
||||
$lang['sgrprerr'] = "C'è stato un problema con l'aggiunta del servergroup all'utente %s (unique Client-ID: %s; Client-database-ID %s)!";
|
||||
$lang['sgrprm'] = "All'utente %s è stato rimosso il servergroup %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['stix0001'] = "Statistiche del server";
|
||||
$lang['stix0002'] = "Utenti totali";
|
||||
$lang['stix0003'] = "Vedi dettagli";
|
||||
$lang['stix0004'] = "Tempo online di tutti gli utenti / Totale";
|
||||
$lang['stix0005'] = "Vedi i migliori di sempre";
|
||||
$lang['stix0006'] = "Vedi i migliori del mese";
|
||||
$lang['stix0007'] = "Vedi i migliori della settimana";
|
||||
$lang['stix0008'] = "Utilizzo del server";
|
||||
$lang['stix0009'] = "Negli ultimi 7 giorni";
|
||||
$lang['stix0010'] = "Negli ultimi 30 giorni";
|
||||
$lang['stix0011'] = "Nelle ultime 24 ore";
|
||||
$lang['stix0012'] = "seleziona il periodo";
|
||||
$lang['stix0013'] = "Ultimo giorno";
|
||||
$lang['stix0014'] = "Ultima settimana";
|
||||
$lang['stix0015'] = "Ultimo mese";
|
||||
$lang['stix0016'] = "Tempo di attività/inattività (di tutti gli utenti)";
|
||||
$lang['stix0017'] = "Versioni (di tutti gli utenti)";
|
||||
$lang['stix0018'] = "Nazionalità (di tutti gli utenti)";
|
||||
$lang['stix0019'] = "Piattaforme (di tutti gli utenti)";
|
||||
$lang['stix0020'] = "Statistiche correnti";
|
||||
$lang['stix0023'] = "Stato del server";
|
||||
$lang['stix0024'] = "Online";
|
||||
$lang['stix0025'] = "Offline";
|
||||
$lang['stix0026'] = "Utenti (Online / Max)";
|
||||
$lang['stix0027'] = "Numero delle stanze";
|
||||
$lang['stix0028'] = "Ping medio del server";
|
||||
$lang['stix0029'] = "Totale byte ricevuti";
|
||||
$lang['stix0030'] = "Totale byte inviati";
|
||||
$lang['stix0031'] = "Tempo online del server";
|
||||
$lang['stix0032'] = "Prima di essere offline:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Giorni, <span id=\"hours\">00</span> Ore, <span id=\"minutes\">00</span> Min, <span id=\"seconds\">00</span> Sec";
|
||||
$lang['stix0034'] = "Media Pacchetti persi";
|
||||
$lang['stix0035'] = "Statistiche complessive";
|
||||
$lang['stix0036'] = "Nome del server";
|
||||
$lang['stix0037'] = "Indirizzo del server (Indirizzo del server : Porta)";
|
||||
$lang['stix0038'] = "Password del server";
|
||||
$lang['stix0039'] = "No (Il server è pubblico)";
|
||||
$lang['stix0040'] = "Si (Il server è privato)";
|
||||
$lang['stix0041'] = "ID del server";
|
||||
$lang['stix0042'] = "Piattaforma del server";
|
||||
$lang['stix0043'] = "Versione del Server";
|
||||
$lang['stix0044'] = "Data di creazione del server (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Inserito nella lista dei server";
|
||||
$lang['stix0046'] = "Attivato";
|
||||
$lang['stix0047'] = "Non attivato";
|
||||
$lang['stix0048'] = "Non vi sono ancora abbastanza informazioni...";
|
||||
$lang['stix0049'] = "Tempo online di tutti gli utenti / mese";
|
||||
$lang['stix0050'] = "Tempo online di tutti gli utenti / settimana";
|
||||
$lang['stix0051'] = "Il TeamSpeak non ha una data di creazione...";
|
||||
$lang['stmy0001'] = "Le mie statistiche";
|
||||
$lang['stmy0002'] = "Rank";
|
||||
$lang['stmy0003'] = "Database ID:";
|
||||
$lang['stmy0004'] = "ID unico:";
|
||||
$lang['stmy0005'] = "Connessioni totali al server:";
|
||||
$lang['stmy0006'] = "Data di inzio statistiche:";
|
||||
$lang['stmy0007'] = "Tempo totale online:";
|
||||
$lang['stmy0008'] = "Tempo online negli ultimi 7 giorni:";
|
||||
$lang['stmy0009'] = "Tempo online negli ultimi 30 giorni:";
|
||||
$lang['stmy0010'] = "Obbiettivi completati:";
|
||||
$lang['stmy0011'] = "Progresso del tempo raggiunto";
|
||||
$lang['stmy0012'] = "Tempo: Leggendario";
|
||||
$lang['stmy0013'] = "Perché hai raggiunto il tempo online di of %s ore.";
|
||||
$lang['stmy0014'] = "Completato";
|
||||
$lang['stmy0015'] = "Tempo: Gold";
|
||||
$lang['stmy0016'] = "% Completata per il raggiungimento del livello 'Leggendario'";
|
||||
$lang['stmy0017'] = "Tempo: Silver";
|
||||
$lang['stmy0018'] = "% Completata per il raggiungimento del livello Gold";
|
||||
$lang['stmy0019'] = "Tempo: Bronze";
|
||||
$lang['stmy0020'] = "% Completata per il raggiungimento del livello Silver";
|
||||
$lang['stmy0021'] = "Tempo: Unranked";
|
||||
$lang['stmy0022'] = "% Completata per il raggiungimento del livello Bronze";
|
||||
$lang['stmy0023'] = "Progresso obbiettivo connessioni";
|
||||
$lang['stmy0024'] = "Connessioni: Legendary";
|
||||
$lang['stmy0025'] = "Perchè ti sei connesso %s volte al server.";
|
||||
$lang['stmy0026'] = "Connessioni: Gold";
|
||||
$lang['stmy0027'] = "Connessioni: Silver";
|
||||
$lang['stmy0028'] = "Connessioni: Bronze";
|
||||
$lang['stmy0029'] = "Connessioni: Unranked";
|
||||
$lang['stmy0030'] = "Progresso prossimo servergroup";
|
||||
$lang['stnv0001'] = "News del server";
|
||||
$lang['stnv0002'] = "Chiudi";
|
||||
$lang['stnv0003'] = "Aggiorna le informazioni utente";
|
||||
$lang['stnv0004'] = "Aggiorna solamente quando vengono modificate le informazioni su TS3, come ad esempio un cambio del nome od un nuovo collegamento";
|
||||
$lang['stnv0005'] = "Funziona solamente se sei connesso al server TS3 in contemporaneo (devi avere TeamSpeak aperto ed essere collegato con la tua identità per vedere le tue statistiche)";
|
||||
$lang['stnv0006'] = "Aggiorna";
|
||||
$lang['stnv0007'] = "Area Battaglie";
|
||||
$lang['stnv0008'] = "Puoi sfidare gli altri utenti in una battaglia tra 2 utenti o 2 team.";
|
||||
$lang['stnv0009'] = "Mentre la battaglia è attiva il tempo online dell'utente o del team sarà contato.";
|
||||
$lang['stnv0010'] = "Quando la battaglia giungerà alla fine il team o l'utente col maggior tempo online vincerà.";
|
||||
$lang['stnv0011'] = "(Regolarmente un combattimento dura 48 ore)";
|
||||
$lang['stnv0012'] = "Il tema o l'utente vincitore riceverà un boost, che l'utente potrà utilizzare quando vorrà.";
|
||||
$lang['stnv0013'] = "Questo sarà mostrato nella pagina <a href=\"my_stats.php\">Le mie statistiche</a> tab.";
|
||||
$lang['stnv0014'] = "(Potrebbe essere un booster(2x) per 8 hours, o un aggiunta istantanea del tempo online (4 hours), etc.";
|
||||
$lang['stnv0015'] = "Questi boost possono essere utilizzati ad esempio per scalare la classifica della settimana.";
|
||||
$lang['stnv0016'] = "Non disponibile";
|
||||
$lang['stnv0017'] = "Non sei connesso al server TeamSpeak, perciò non potrai vedere le tue statistiche personali.";
|
||||
$lang['stnv0018'] = "Per favore connettiti al server TeamSpeak e ricarica questa sessione premendo il pulsante blu in alto a destra.";
|
||||
$lang['stnv0019'] = "Le mie statistiche - contenuto della pagina";
|
||||
$lang['stnv0020'] = "Questa pagina contiene un sommario generale delle tue statistiche personali e le attività nel server.";
|
||||
$lang['stnv0021'] = "Queste informazioni sono state inserite dal primo avvio del Ranksystem e non dall'inizio del server TeamSpeak.";
|
||||
$lang['stnv0022'] = "Questa pagina riceve i dati dal database. Perciò potrebbe avere un lieve ritardo nel ricevere le informazioni.";
|
||||
$lang['stnv0023'] = "La somma contenuta nei grafici ad anello potrebbe differire dal numero degli ‘Utenti totali'. Il motivo è che quei dati non erano stati raccolti dalla versione precedente del Ranksystem.";
|
||||
$lang['stnv0024'] = "Ranksystem - Statistiche";
|
||||
$lang['stnv0025'] = "Inserimenti limitati";
|
||||
$lang['stnv0026'] = "tutti";
|
||||
$lang['stnv0027'] = "Le informazioni su questo sito potrebbero NON essere aggiornate in quanto sembra che la query del Ranksystem non sia connessa a TeamSpeak.";
|
||||
$lang['stnv0028'] = "(Non sei connesso al TS3!)";
|
||||
$lang['stnv0029'] = "Lista dei Rank";
|
||||
$lang['stnv0030'] = "Ranksystem info";
|
||||
$lang['stnv0031'] = "Nel campo di ricerca potrai inserire un nome utente, un Client-ID o un Client-database-ID.";
|
||||
$lang['stnv0032'] = "Potrai inoltre filtrare i risultati (vedi sotto). Puoi inserire i filtri nel campo di ricerca.";
|
||||
$lang['stnv0033'] = "La ricerca di utenti combinata a dei filtri è possible. Inserire prima il filtro e successivamente nome utente o ID.";
|
||||
$lang['stnv0034'] = "È inoltre possibile combinare diversi filtri. Inseriscili consecutivamente nel campo di ricerca.";
|
||||
$lang['stnv0035'] = "<u>Esempio:</u><br>filtro:non esclusi:Utente Teamspeak";
|
||||
$lang['stnv0036'] = "Mostra solo gli utenti che sono esclusi (client, servergroup or channel exception).";
|
||||
$lang['stnv0037'] = "Mostra solo gli utenti che non sono esclusi.";
|
||||
$lang['stnv0038'] = "Mostra solo gli utenti online.";
|
||||
$lang['stnv0039'] = "Mostra solo gli utenti offline";
|
||||
$lang['stnv0040'] = "Mostra solo gli utenti che sono in un determinato Server Group. Rappresentano il rank attuale.<br>Sostituisci qui <i>GROUPID</i>.";
|
||||
$lang['stnv0041'] = "Mostra solo gli utenti selezionati per ultima visita effettuata.<br>Replace <i>OPERATOR</i> con '<' or '>' or '=' or '!='.<br>E Sostituisci qui <i>TIME</i> con formato data 'Y-m-d H-i' (example: 2016-06-18 20-25).<br>Esempio: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Mostra solo gli utenti di un determinato paese.<br>Sostituisci qui <i>TS3-COUNTRY-CODE</i> e il codice del paese.<br>Per la lista dei codici google for ISO 3166-1 alpha-2";
|
||||
$lang['stri0001'] = "Informazioni sul Ranksystem";
|
||||
$lang['stri0002'] = "Che cos'è il ranksystem?";
|
||||
$lang['stri0003'] = "Un TS3 Bot, che automaticamente attribuisce i rank (servergroups) agli utenti su un TeamSpeak 3 per il tempo trascorso online o di attività online. Inoltre raccoglie info e statistiche sull’utente e mostra i risultati sul sito.";
|
||||
$lang['stri0004'] = "Chi ha creato il Ranksystem?";
|
||||
$lang['stri0005'] = "Quando è stato creato?";
|
||||
$lang['stri0006'] = "Prima alpha: 05/10/2014.";
|
||||
$lang['stri0007'] = "Prima Beta: 01/02/2015.";
|
||||
$lang['stri0008'] = "Puoi trovare l'ultima versione del Ranksystem alla pagina <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "Com'è stato creato il RankSystem?";
|
||||
$lang['stri0010'] = "Che linguaggio è stato utilizzato";
|
||||
$lang['stri0011'] = "Utilizza inoltre le seguenti librerie:";
|
||||
$lang['stri0012'] = "Un ringraziamento speciale a:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - for russian translation";
|
||||
$lang['stri0014'] = "Bejamin Frost - for per i primi bootstrap design";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - per la traduzione italiana";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - per avviare la traduzione in arabo";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - per avviare la traduzione in rumeno";
|
||||
$lang['sttw0001'] = "Top utenti";
|
||||
$lang['sttw0002'] = "Della settimana";
|
||||
$lang['sttw0003'] = "con %s ore di tempo online";
|
||||
$lang['sttw0004'] = "Top 10 a confronto";
|
||||
$lang['sttw0005'] = "Ore (Definisce il 100 %)";
|
||||
$lang['sttw0006'] = "%s ore (%s%)";
|
||||
$lang['sttw0007'] = "Top 10 Statistiche";
|
||||
$lang['sttw0008'] = "Top 10 vs Altri utenti in tempo online";
|
||||
$lang['sttw0009'] = "Top 10 vs Altri utenti in tempo di attività";
|
||||
$lang['sttw0010'] = "Top 10 vs Altri utenti in tempo di inattività";
|
||||
$lang['sttw0011'] = "Top 10 (in ore)";
|
||||
$lang['sttw0012'] = "Gli altri %s utenti (in ore)";
|
||||
$lang['sttw0013'] = "con %s ore di tempo attivo";
|
||||
$lang['sttm0001'] = "Del mese";
|
||||
$lang['stta0001'] = "Di sempre";
|
||||
$lang['upinf'] = "È stata trovato una versione piu recente del RankSystem (informazioni su come aggiornare qui: http://ts-n.net/ranksystem.php?artid=84#01id84); Informa gli utenti del server...";
|
||||
$lang['upmsg'] = "\nHey, Una nuova versione del [B]Ranksystem[/B] è disponibile!\n\nVersione corrente: %s\n[B]Nuova Versione: %s[/B]\n\nPer maggiori informazioni visita il nostro sito [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Aggiornamento del database eseguito con successo.";
|
||||
$lang['upuser'] = "L'utente %s (unique Client-ID: %s; Client-database-ID %s) ha ottenuto un nuovo conteggio (somma del tempo online) di %s (tempo di attività (rispetto al nuovo conteggio): %s).";
|
||||
$lang['upuserboost'] = "L'utente %s (unique Client-ID: %s; Client-database-ID %s) ha ottenuto un nuovo conteggi (somma del tempo online) di %s (tempo di attività (rispetto al nuovo conteggio): %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "Il Client-ID unico %s non è raggiungibile dal sistema TeamSpeak!";
|
||||
$lang['upusrinf'] = "L'utente %s è stato informato correttamente.";
|
||||
$lang['user'] = "Nome Utente";
|
||||
$lang['wiaction'] = "Azione";
|
||||
$lang['wiboost'] = "Boost";
|
||||
$lang['wiboostdesc'] = "Dai all'utente sul TS3 un servergroup (che dovrà essere creato manualmente), con il quale potrai definire il Boost. Definisci anche il fattore di moltiplicazione (per esempio 2x) e il (per quanto il boost durerà).<br>Più alto è il fattore, più velocemente l'utente raggiungerà il rank successivo.<br>Uno volta che il tempo impostato finirà il servergroup verrà rimosso in automatico dal RankSystem.Il tempo parte non appena viene assegnato il servergroup all'utente.<br><br>servergroup ID => fattore (2,3) => tempo (in secondi)<br><br>Per separare ogni voce utilizza la virgola.<br><br>Esempio:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>Nell'esempio il servergroup 12 per i successivi 6000 secondi gli verrà conteggiato il doppio del tempo online, al servergroup 13 verrà moltiplicato il tempo per 3 per 2500 secondi, e cosi via...";
|
||||
$lang['isntwichm'] = "Permessi di scrittura negati per la cartella \"%s\". Per favore dai i permessi chmod 777 (on windows 'full access') e prova ad avviare il Ranksystem di nuovo.";
|
||||
$lang['isntwidbhost'] = "Indirizzo host DB:";
|
||||
$lang['isntwidbhostdesc'] = "L'indirizzo del server su cui si trova il database (Se il database è in locale basterà inserire 127.0.0.1)<br>(IP o DNS)";
|
||||
$lang['isntwidbmsg'] = "Errore del Database: ";
|
||||
$lang['isntwidbname'] = "Nome DB:";
|
||||
$lang['isntwidbnamedesc'] = "Nome del database";
|
||||
$lang['isntwidbpass'] = "Password DB:";
|
||||
$lang['isntwidbpassdesc'] = "La Password per accedere al database";
|
||||
$lang['isntwidbtype'] = "Tipo DB:";
|
||||
$lang['isntwidbtypedesc'] = "Il tipo di Database<br><br>Dovrai installare i driver PDO.<br>Per maggiori informazioni sui requisiti guarda sulla pagina http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "Utente DB:";
|
||||
$lang['isntwidbusrdesc'] = "Nome dell'utente che ha l'accesso al database";
|
||||
$lang['isntwidel'] = "Per favore cancella il file 'install.php' dal tuo webserver e apri la %s per configurare il Ranksystem!";
|
||||
$lang['isntwiusr'] = "L'utente dell'interfaccia Web è stato creato con successo.";
|
||||
$lang['isntwiusrcr'] = "Create Webinterface-User";
|
||||
$lang['isntwiusrdesc'] = "Inserisci nome utente e password per l'accesso all'interfaccia web. Con l'interfaccia web tu potrai configurare il Ranksystem.";
|
||||
$lang['isntwiusrh'] = "Accesso - Interfaccia Web";
|
||||
$lang['listacsg'] = "Servergroup attuale";
|
||||
$lang['listcldbid'] = "Client-database-ID";
|
||||
$lang['listexcept'] = "No, cause excepted";
|
||||
$lang['listip'] = "Indirizzo IP";
|
||||
$lang['listnick'] = "Nome Utente";
|
||||
$lang['listnxsg'] = "Prossimo servergroup";
|
||||
$lang['listnxup'] = "Prossimo Rank";
|
||||
$lang['listrank'] = "Rank";
|
||||
$lang['listseen'] = "Ultima volta online";
|
||||
$lang['listsuma'] = "Somma del tempo di attività";
|
||||
$lang['listsumi'] = "Somma del tempo in IDLE";
|
||||
$lang['listsumo'] = "Somma del tempo Online";
|
||||
$lang['listuid'] = "unique Client-ID";
|
||||
$lang['login'] = "Login";
|
||||
$lang['nocount'] = "L'utente %s (unique Client-ID: %s; Client-database-ID %s) è una query oppure effettua molte connessioni (conterà solo la prima connessione) -> Non verrà contato!";
|
||||
$lang['noentry'] = "Nessuna voce trovata..";
|
||||
$lang['pass'] = "Password";
|
||||
$lang['queryname'] = "Il primo nome del bot è già in uso. Sto riprovando con il secondo...";
|
||||
$lang['sccrmcld'] = "L'utente con il Client-ID %s è stato correttamente cancellato dal database del ranksystem.";
|
||||
$lang['sccupcount'] = "All'utente con il Client-ID %s è stato assegnato un tempo online di %s.";
|
||||
$lang['setontime'] = "Somma tempo online";
|
||||
$lang['setontimedesc'] = "Inserisci il nuovo tempo online, che verrà impostato per gli utenti precedentemente selezionati. Il tempo online raccolto precedentemente verrà sovrascritto.<br><br>La somma del tempo online inserita verrà considerata per il rank.";
|
||||
$lang['sgrpadd'] = "All'utente %s è stato assegnato il servergroup %s (Client-ID unico: %s; Client-database-ID %s).";
|
||||
$lang['sgrprerr'] = "C'è stato un problema con l'aggiunta del servergroup all'utente %s (unique Client-ID: %s; Client-database-ID %s)!";
|
||||
$lang['sgrprm'] = "All'utente %s è stato rimosso il servergroup %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['stix0001'] = "Statistiche del server";
|
||||
$lang['stix0002'] = "Utenti totali";
|
||||
$lang['stix0003'] = "Vedi dettagli";
|
||||
$lang['stix0004'] = "Tempo online di tutti gli utenti / Totale";
|
||||
$lang['stix0005'] = "Vedi i migliori di sempre";
|
||||
$lang['stix0006'] = "Vedi i migliori del mese";
|
||||
$lang['stix0007'] = "Vedi i migliori della settimana";
|
||||
$lang['stix0008'] = "Utilizzo del server";
|
||||
$lang['stix0009'] = "Negli ultimi 7 giorni";
|
||||
$lang['stix0010'] = "Negli ultimi 30 giorni";
|
||||
$lang['stix0011'] = "Nelle ultime 24 ore";
|
||||
$lang['stix0012'] = "seleziona il periodo";
|
||||
$lang['stix0013'] = "Ultimo giorno";
|
||||
$lang['stix0014'] = "Ultima settimana";
|
||||
$lang['stix0015'] = "Ultimo mese";
|
||||
$lang['stix0016'] = "Tempo di attività/inattività (di tutti gli utenti)";
|
||||
$lang['stix0017'] = "Versioni (di tutti gli utenti)";
|
||||
$lang['stix0018'] = "Nazionalità (di tutti gli utenti)";
|
||||
$lang['stix0019'] = "Piattaforme (di tutti gli utenti)";
|
||||
$lang['stix0020'] = "Statistiche correnti";
|
||||
$lang['stix0023'] = "Stato del server";
|
||||
$lang['stix0024'] = "Online";
|
||||
$lang['stix0025'] = "Offline";
|
||||
$lang['stix0026'] = "Utenti (Online / Max)";
|
||||
$lang['stix0027'] = "Numero delle stanze";
|
||||
$lang['stix0028'] = "Ping medio del server";
|
||||
$lang['stix0029'] = "Totale byte ricevuti";
|
||||
$lang['stix0030'] = "Totale byte inviati";
|
||||
$lang['stix0031'] = "Tempo online del server";
|
||||
$lang['stix0032'] = "Prima di essere offline:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Giorni, <span id=\"hours\">00</span> Ore, <span id=\"minutes\">00</span> Min, <span id=\"seconds\">00</span> Sec";
|
||||
$lang['stix0034'] = "Media Pacchetti persi";
|
||||
$lang['stix0035'] = "Statistiche complessive";
|
||||
$lang['stix0036'] = "Nome del server";
|
||||
$lang['stix0037'] = "Indirizzo del server (Indirizzo del server : Porta)";
|
||||
$lang['stix0038'] = "Password del server";
|
||||
$lang['stix0039'] = "No (Il server è pubblico)";
|
||||
$lang['stix0040'] = "Si (Il server è privato)";
|
||||
$lang['stix0041'] = "ID del server";
|
||||
$lang['stix0042'] = "Piattaforma del server";
|
||||
$lang['stix0043'] = "Versione del Server";
|
||||
$lang['stix0044'] = "Data di creazione del server (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Inserito nella lista dei server";
|
||||
$lang['stix0046'] = "Attivato";
|
||||
$lang['stix0047'] = "Non attivato";
|
||||
$lang['stix0048'] = "Non vi sono ancora abbastanza informazioni...";
|
||||
$lang['stix0049'] = "Tempo online di tutti gli utenti / mese";
|
||||
$lang['stix0050'] = "Tempo online di tutti gli utenti / settimana";
|
||||
$lang['stix0051'] = "Il TeamSpeak non ha una data di creazione...";
|
||||
$lang['stmy0001'] = "Le mie statistiche";
|
||||
$lang['stmy0002'] = "Rank";
|
||||
$lang['stmy0003'] = "Database ID:";
|
||||
$lang['stmy0004'] = "ID unico:";
|
||||
$lang['stmy0005'] = "Connessioni totali al server:";
|
||||
$lang['stmy0006'] = "Data di inzio statistiche:";
|
||||
$lang['stmy0007'] = "Tempo totale online:";
|
||||
$lang['stmy0008'] = "Tempo online negli ultimi 7 giorni:";
|
||||
$lang['stmy0009'] = "Tempo online negli ultimi 30 giorni:";
|
||||
$lang['stmy0010'] = "Obbiettivi completati:";
|
||||
$lang['stmy0011'] = "Progresso del tempo raggiunto";
|
||||
$lang['stmy0012'] = "Tempo: Leggendario";
|
||||
$lang['stmy0013'] = "Perché hai raggiunto il tempo online di of %s ore.";
|
||||
$lang['stmy0014'] = "Completato";
|
||||
$lang['stmy0015'] = "Tempo: Gold";
|
||||
$lang['stmy0016'] = "% Completata per il raggiungimento del livello 'Leggendario'";
|
||||
$lang['stmy0017'] = "Tempo: Silver";
|
||||
$lang['stmy0018'] = "% Completata per il raggiungimento del livello Gold";
|
||||
$lang['stmy0019'] = "Tempo: Bronze";
|
||||
$lang['stmy0020'] = "% Completata per il raggiungimento del livello Silver";
|
||||
$lang['stmy0021'] = "Tempo: Unranked";
|
||||
$lang['stmy0022'] = "% Completata per il raggiungimento del livello Bronze";
|
||||
$lang['stmy0023'] = "Progresso obbiettivo connessioni";
|
||||
$lang['stmy0024'] = "Connessioni: Legendary";
|
||||
$lang['stmy0025'] = "Perchè ti sei connesso %s volte al server.";
|
||||
$lang['stmy0026'] = "Connessioni: Gold";
|
||||
$lang['stmy0027'] = "Connessioni: Silver";
|
||||
$lang['stmy0028'] = "Connessioni: Bronze";
|
||||
$lang['stmy0029'] = "Connessioni: Unranked";
|
||||
$lang['stmy0030'] = "Progresso prossimo servergroup";
|
||||
$lang['stnv0001'] = "News del server";
|
||||
$lang['stnv0002'] = "Chiudi";
|
||||
$lang['stnv0003'] = "Aggiorna le informazioni utente";
|
||||
$lang['stnv0004'] = "Aggiorna solamente quando vengono modificate le informazioni su TS3, come ad esempio un cambio del nome od un nuovo collegamento";
|
||||
$lang['stnv0005'] = "Funziona solamente se sei connesso al server TS3 in contemporaneo (devi avere TeamSpeak aperto ed essere collegato con la tua identità per vedere le tue statistiche)";
|
||||
$lang['stnv0006'] = "Aggiorna";
|
||||
$lang['stnv0007'] = "Area Battaglie";
|
||||
$lang['stnv0008'] = "Puoi sfidare gli altri utenti in una battaglia tra 2 utenti o 2 team.";
|
||||
$lang['stnv0009'] = "Mentre la battaglia è attiva il tempo online dell'utente o del team sarà contato.";
|
||||
$lang['stnv0010'] = "Quando la battaglia giungerà alla fine il team o l'utente col maggior tempo online vincerà.";
|
||||
$lang['stnv0011'] = "(Regolarmente un combattimento dura 48 ore)";
|
||||
$lang['stnv0012'] = "Il tema o l'utente vincitore riceverà un boost, che l'utente potrà utilizzare quando vorrà.";
|
||||
$lang['stnv0013'] = "Questo sarà mostrato nella pagina <a href=\"my_stats.php\">Le mie statistiche</a> tab.";
|
||||
$lang['stnv0014'] = "(Potrebbe essere un booster(2x) per 8 hours, o un aggiunta istantanea del tempo online (4 hours), etc.";
|
||||
$lang['stnv0015'] = "Questi boost possono essere utilizzati ad esempio per scalare la classifica della settimana.";
|
||||
$lang['stnv0016'] = "Non disponibile";
|
||||
$lang['stnv0017'] = "Non sei connesso al server TeamSpeak, perciò non potrai vedere le tue statistiche personali.";
|
||||
$lang['stnv0018'] = "Per favore connettiti al server TeamSpeak e ricarica questa sessione premendo il pulsante blu in alto a destra.";
|
||||
$lang['stnv0019'] = "Le mie statistiche - contenuto della pagina";
|
||||
$lang['stnv0020'] = "Questa pagina contiene un sommario generale delle tue statistiche personali e le attività nel server.";
|
||||
$lang['stnv0021'] = "Queste informazioni sono state inserite dal primo avvio del Ranksystem e non dall'inizio del server TeamSpeak.";
|
||||
$lang['stnv0022'] = "Questa pagina riceve i dati dal database. Perciò potrebbe avere un lieve ritardo nel ricevere le informazioni.";
|
||||
$lang['stnv0023'] = "La somma contenuta nei grafici ad anello potrebbe differire dal numero degli ‘Utenti totali'. Il motivo è che quei dati non erano stati raccolti dalla versione precedente del Ranksystem.";
|
||||
$lang['stnv0024'] = "Ranksystem - Statistiche";
|
||||
$lang['stnv0025'] = "Inserimenti limitati";
|
||||
$lang['stnv0026'] = "tutti";
|
||||
$lang['stnv0027'] = "Le informazioni su questo sito potrebbero NON essere aggiornate in quanto sembra che la query del Ranksystem non sia connessa a TeamSpeak.";
|
||||
$lang['stnv0028'] = "(Non sei connesso al TS3!)";
|
||||
$lang['stnv0029'] = "Lista dei Rank";
|
||||
$lang['stnv0030'] = "Ranksystem info";
|
||||
$lang['stnv0031'] = "Nel campo di ricerca potrai inserire un nome utente, un Client-ID o un Client-database-ID.";
|
||||
$lang['stnv0032'] = "Potrai inoltre filtrare i risultati (vedi sotto). Puoi inserire i filtri nel campo di ricerca.";
|
||||
$lang['stnv0033'] = "La ricerca di utenti combinata a dei filtri è possible. Inserire prima il filtro e successivamente nome utente o ID.";
|
||||
$lang['stnv0034'] = "È inoltre possibile combinare diversi filtri. Inseriscili consecutivamente nel campo di ricerca.";
|
||||
$lang['stnv0035'] = "<u>Esempio:</u><br>filtro:non esclusi:Utente Teamspeak";
|
||||
$lang['stnv0036'] = "Mostra solo gli utenti che sono esclusi (client, servergroup or channel exception).";
|
||||
$lang['stnv0037'] = "Mostra solo gli utenti che non sono esclusi.";
|
||||
$lang['stnv0038'] = "Mostra solo gli utenti online.";
|
||||
$lang['stnv0039'] = "Mostra solo gli utenti offline";
|
||||
$lang['stnv0040'] = "Mostra solo gli utenti che sono in un determinato Server Group. Rappresentano il rank attuale.<br>Sostituisci qui <i>GROUPID</i>.";
|
||||
$lang['stnv0041'] = "Mostra solo gli utenti selezionati per ultima visita effettuata.<br>Replace <i>OPERATOR</i> con '<' or '>' or '=' or '!='.<br>E Sostituisci qui <i>TIME</i> con formato data 'Y-m-d H-i' (example: 2016-06-18 20-25).<br>Esempio: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Mostra solo gli utenti di un determinato paese.<br>Sostituisci qui <i>TS3-COUNTRY-CODE</i> e il codice del paese.<br>Per la lista dei codici google for ISO 3166-1 alpha-2";
|
||||
$lang['stri0001'] = "Informazioni sul Ranksystem";
|
||||
$lang['stri0002'] = "Che cos'è il ranksystem?";
|
||||
$lang['stri0003'] = "Un TS3 Bot, che automaticamente attribuisce i rank (servergroups) agli utenti su un TeamSpeak 3 per il tempo trascorso online o di attività online. Inoltre raccoglie info e statistiche sull’utente e mostra i risultati sul sito.";
|
||||
$lang['stri0004'] = "Chi ha creato il Ranksystem?";
|
||||
$lang['stri0005'] = "Quando è stato creato?";
|
||||
$lang['stri0006'] = "Prima alpha: 05/10/2014.";
|
||||
$lang['stri0007'] = "Prima Beta: 01/02/2015.";
|
||||
$lang['stri0008'] = "Puoi trovare l'ultima versione del Ranksystem alla pagina <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "Com'è stato creato il RankSystem?";
|
||||
$lang['stri0010'] = "Che linguaggio è stato utilizzato";
|
||||
$lang['stri0011'] = "Utilizza inoltre le seguenti librerie:";
|
||||
$lang['stri0012'] = "Un ringraziamento speciale a:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - for russian translation";
|
||||
$lang['stri0014'] = "Bejamin Frost - for per i primi bootstrap design";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - per la traduzione italiana";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - per avviare la traduzione in arabo";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - per avviare la traduzione in rumeno";
|
||||
$lang['sttw0001'] = "Top utenti";
|
||||
$lang['sttw0002'] = "Della settimana";
|
||||
$lang['sttw0003'] = "con %s ore di tempo online";
|
||||
$lang['sttw0004'] = "Top 10 a confronto";
|
||||
$lang['sttw0005'] = "Ore (Definisce il 100 %)";
|
||||
$lang['sttw0006'] = "%s ore (%s%)";
|
||||
$lang['sttw0007'] = "Top 10 Statistiche";
|
||||
$lang['sttw0008'] = "Top 10 vs Altri utenti in tempo online";
|
||||
$lang['sttw0009'] = "Top 10 vs Altri utenti in tempo di attività";
|
||||
$lang['sttw0010'] = "Top 10 vs Altri utenti in tempo di inattività";
|
||||
$lang['sttw0011'] = "Top 10 (in ore)";
|
||||
$lang['sttw0012'] = "Gli altri %s utenti (in ore)";
|
||||
$lang['sttw0013'] = "con %s ore di tempo attivo";
|
||||
$lang['sttm0001'] = "Del mese";
|
||||
$lang['stta0001'] = "Di sempre";
|
||||
$lang['upinf'] = "È stata trovato una versione piu recente del RankSystem (informazioni su come aggiornare qui: http://ts-n.net/ranksystem.php?artid=84#01id84); Informa gli utenti del server...";
|
||||
$lang['upmsg'] = "\nHey, Una nuova versione del [B]Ranksystem[/B] è disponibile!\n\nVersione corrente: %s\n[B]Nuova Versione: %s[/B]\n\nPer maggiori informazioni visita il nostro sito [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Aggiornamento del database eseguito con successo.";
|
||||
$lang['upuser'] = "L'utente %s (unique Client-ID: %s; Client-database-ID %s) ha ottenuto un nuovo conteggio (somma del tempo online) di %s (tempo di attività (rispetto al nuovo conteggio): %s).";
|
||||
$lang['upuserboost'] = "L'utente %s (unique Client-ID: %s; Client-database-ID %s) ha ottenuto un nuovo conteggi (somma del tempo online) di %s (tempo di attività (rispetto al nuovo conteggio): %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "Il Client-ID unico %s non è raggiungibile dal sistema TeamSpeak!";
|
||||
$lang['upusrinf'] = "L'utente %s è stato informato correttamente.";
|
||||
$lang['user'] = "Nome Utente";
|
||||
$lang['wiaction'] = "Azione";
|
||||
$lang['wiboost'] = "Boost";
|
||||
$lang['wiboostdesc'] = "Dai all'utente sul TS3 un servergroup (che dovrà essere creato manualmente), con il quale potrai definire il Boost. Definisci anche il fattore di moltiplicazione (per esempio 2x) e il (per quanto il boost durerà).<br>Più alto è il fattore, più velocemente l'utente raggiungerà il rank successivo.<br>Uno volta che il tempo impostato finirà il servergroup verrà rimosso in automatico dal RankSystem.Il tempo parte non appena viene assegnato il servergroup all'utente.<br><br>servergroup ID => fattore (2,3) => tempo (in secondi)<br><br>Per separare ogni voce utilizza la virgola.<br><br>Esempio:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>Nell'esempio il servergroup 12 per i successivi 6000 secondi gli verrà conteggiato il doppio del tempo online, al servergroup 13 verrà moltiplicato il tempo per 3 per 2500 secondi, e cosi via...";
|
||||
$lang['wibot1'] = "Il Ranksystem Bot dovrebbe essere stoppato. Controlla il log qui sotto per maggiori informazioni!";
|
||||
$lang['wibot2'] = "Il Ranksystem Bot dovrebbe essere avviato. Controlla il log qui sotto per maggiori informazioni!";
|
||||
$lang['wibot3'] = "Il Ranksystem Bot dovrebbe essere riavviato. Controlla il log qui sotto per maggiori informazioni!";
|
||||
@@ -249,45 +252,47 @@ $lang['wibot6'] = "Ferma il Bot";
|
||||
$lang['wibot7'] = "Riavvia il Bot";
|
||||
$lang['wibot8'] = "Log del Ranksystem (estrai):";
|
||||
$lang['wibot9'] = "Compila tutti i campi obbligatori prima di avviare il bot Ranksystem!";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Resetta il tempo online di un utente se il suo database-ID è cambiato.<br><br>Esempio:<br>Se un utente viene rimosso da TeamSpeak, gli viene assegnato un nuovo database-ID con la successiva connesione al server.";
|
||||
$lang['wiconferr'] = "C'è un errore nella configurazione del RankSystem. Vai nell'interfaccia web i sistema le Impostazioni Principali. Specialmente la configurazione 'rank'!";
|
||||
$lang['widaform'] = "Formato data";
|
||||
$lang['widaformdesc'] = "scegli il formato della data.<br><br>Esempio:<br>%a Giorni, %h Ore, %i Min, %s Sec";
|
||||
$lang['widbcfgsuc'] = "Configurazione del database salvata con successo.";
|
||||
$lang['widbcfgerr'] = "Errore nel salvataggio della configurazione del database! Connessione fallita o errore nella sovrascrittura del file 'other/dbconfig.php'";
|
||||
$lang['widelcld'] = "elimina utenti";
|
||||
$lang['widelcldgrp'] = "rinnova gruppi";
|
||||
$lang['widelcldgrpdesc'] = "Il Ranksystem memorizzerà il servergroup assegnato, così che non sia più necessario eseguire continuamente il worker.php.<br><br>Con questa funzione potrai rimuovere le informazioni salvate relative ad un servergroup. Il Ranksystem proverà a dare a tutti gli utenti connessi al TS3 il servergroup del loro rank.<br>Per ogni utente, che ottenga il servergroup o che sia su un servergroup, il Ranksystem lo memorizzerà come descritto all'inizio.<br><br>Questa funzione può essere molto utile, quando un utente non è in un servergroup, Gli può essere attribuito il tempo online.<br><br>Attenzione: Eseguilo solo quando sei sicuro che non vi sia un aumento di rank per l'utente! Altrimenti il Ranksystem non potrà rimuovere il precedente servergroup in quanto non è memorizzato ;-)";
|
||||
$lang['widelclddesc'] = "Cancella gli utenti precedentemente selezionati dal Ranksystem.<br><br>Ciò non modificherà lo stato degli utenti nel database di TeamSpeak.";
|
||||
$lang['widelsg'] = "rimosso(i) dal servergroup";
|
||||
$lang['widelsgdesc'] = "Scegli se agli utenti venga rimosso anche l'ultimo servergroup conosciuto, quando cancelli gli utenti dal database del Ranksystem.<br><br>Considererà solamente i servergroup riguardanti il Ranksystem";
|
||||
$lang['wideltime'] = "Tempo di eliminazione";
|
||||
$lang['wideltimedesc'] = "Cancella i 'vecchi utenti' dal database del Ranksystem.<br>Inserisci il tempo dopo cui un utente che non si connette al TeamSpeak verrà eliminato.<br><br>0 - Cancellerà gli utenti dal Ranksystem<br><br>I dati degli utenti su TeamSpeak non verranno toccati!";
|
||||
$lang['wiexcid'] = "Eccezione Stanze";
|
||||
$lang['wiexciddesc'] = "Inserisci gli ID delle stanze dove non verrà conteggiato il tempo del Rank.<br><br>Se un utente resta in uno dei canali elencati, il tempo non sarà completamente ignorato ma verrà conteggiato come tempo in IDLE.<br><br>Di conseguenza avrà senso solo se si utilizzerà la modalità 'Tempo di attività'.";
|
||||
$lang['wiexgrp'] = "Eccezione dei servergroup";
|
||||
$lang['wiexgrpdesc'] = "Lista dei servergroup ID che non verranno contati dal Ranksystem (separati da virgola. es. 9,10,11)<br>Gli utenti che avranno almeno uno di questi servergroup verranno ignorati.";
|
||||
$lang['wiexuid'] = "Eccezione degli utenti";
|
||||
$lang['wiexuiddesc'] = "Lista degli utenti (ID unico) che non verranno contati dal Ranksystem (separati da virgola. es 5GFxciykQMojlrvugWti835Wdto=,YQf+7x/4LJ2Tw5cuQGItsVEn+S4=)<br>Questi utentiverranno ignorati.";
|
||||
$lang['wigrptime'] = "rank up defintion";
|
||||
$lang['wigrptimedesc'] = "Definisci qui dopo quanto tempo un utente debba ottenere automaticamente un servergroup predefinito.<br><br>time (seconds)=>servergroup ID<br><br>Important for this is the 'online time' or the 'active time' of an user, depending on setting of the mode.<br><br>Ogni voce deve essere separate dalla successive con una virgola. br><br>Dovrà essere inserito il tempo cumulativo<br><br>Esempio:<br>60=>9,120=>10,180=>11<br><br>Su queste basi un utente ottiene il servergroup 9 dopo 60 secondi, a sua volta il 10 dopo altri 60 secondi e così via...";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "Impostazioni Principali";
|
||||
$lang['wihldb'] = "Impostazioni Database";
|
||||
$lang['wihlmsg'] = "Impostazioni Messaggi";
|
||||
$lang['wihlsty'] = "Impostazione Pagina Statistiche";
|
||||
$lang['wihlts'] = "Impostazioni Teamspeak";
|
||||
$lang['wihlvs'] = "Impostazione Varie";
|
||||
$lang['wiignidle'] = "Ignora Idle";
|
||||
$lang['wiignidledesc'] = "Definisci un periodo di tempo, fino a che il tempo di inattività di un utente verrà ignorato.<br><br>Quando un cliente non fa nulla sul server (=idle), questo tempo viene conteggiato dal Ranksystem. Grazie a questa funzione il tempo di inattività di un utente non sarà conteggiato fino al limite definito. Solo quando il limite definito viene superato, conta da tale data per il Ranksystem come il tempo di inattività.<br><br>Questà funzione è compatibile solo con il tempo di attività.<br><br>Significato La funzione è ad esempio per valutare il tempo di ascolto in conversazioni come l'attività.<br><br>0 = Disabilità la funzione<br><br>Esempio:<br>Ignore idle = 600 (seconds)<br>Un utente ha un idle di 8 minunti<br>Conseguenza:<br>8 minuti in IDLE verranno ignorati e poi il tempo successivo verrà conteggiato come tempo di attività. Se il tempo di inattività ora viene aumentato a oltre 12 minuti (quindi il tempo è più di 10 minuti) 2 minuti verrebbero conteggiati come tempo di inattività.";
|
||||
$lang['wilog'] = "Path dei Log";
|
||||
$lang['wilogdesc'] = "La path dei log del RankSystem.<br><br>Example:<br>/var/logs/ranksystem/<br><br>Assicurati che l'utente che hai assegnato (del web server) abbia i poteri per scrivere nella directory (oppure dai direttamente chmod 777 alla cartella log).";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Resetta il tempo online di un utente se il suo database-ID è cambiato.<br><br>Esempio:<br>Se un utente viene rimosso da TeamSpeak, gli viene assegnato un nuovo database-ID con la successiva connesione al server.";
|
||||
$lang['wiconferr'] = "C'è un errore nella configurazione del RankSystem. Vai nell'interfaccia web i sistema le Impostazioni Principali. Specialmente la configurazione 'rank'!";
|
||||
$lang['widaform'] = "Formato data";
|
||||
$lang['widaformdesc'] = "scegli il formato della data.<br><br>Esempio:<br>%a Giorni, %h Ore, %i Min, %s Sec";
|
||||
$lang['widbcfgsuc'] = "Configurazione del database salvata con successo.";
|
||||
$lang['widbcfgerr'] = "Errore nel salvataggio della configurazione del database! Connessione fallita o errore nella sovrascrittura del file 'other/dbconfig.php'";
|
||||
$lang['widelcld'] = "elimina utenti";
|
||||
$lang['widelcldgrp'] = "rinnova gruppi";
|
||||
$lang['widelcldgrpdesc'] = "Il Ranksystem memorizzerà il servergroup assegnato, così che non sia più necessario eseguire continuamente il worker.php.<br><br>Con questa funzione potrai rimuovere le informazioni salvate relative ad un servergroup. Il Ranksystem proverà a dare a tutti gli utenti connessi al TS3 il servergroup del loro rank.<br>Per ogni utente, che ottenga il servergroup o che sia su un servergroup, il Ranksystem lo memorizzerà come descritto all'inizio.<br><br>Questa funzione può essere molto utile, quando un utente non è in un servergroup, Gli può essere attribuito il tempo online.<br><br>Attenzione: Eseguilo solo quando sei sicuro che non vi sia un aumento di rank per l'utente! Altrimenti il Ranksystem non potrà rimuovere il precedente servergroup in quanto non è memorizzato ;-)";
|
||||
$lang['widelclddesc'] = "Cancella gli utenti precedentemente selezionati dal Ranksystem.<br><br>Ciò non modificherà lo stato degli utenti nel database di TeamSpeak.";
|
||||
$lang['widelsg'] = "rimosso(i) dal servergroup";
|
||||
$lang['widelsgdesc'] = "Scegli se agli utenti venga rimosso anche l'ultimo servergroup conosciuto, quando cancelli gli utenti dal database del Ranksystem.<br><br>Considererà solamente i servergroup riguardanti il Ranksystem";
|
||||
$lang['wideltime'] = "Tempo di eliminazione";
|
||||
$lang['wideltimedesc'] = "Cancella i 'vecchi utenti' dal database del Ranksystem.<br>Inserisci il tempo dopo cui un utente che non si connette al TeamSpeak verrà eliminato.<br><br>0 - Cancellerà gli utenti dal Ranksystem<br><br>I dati degli utenti su TeamSpeak non verranno toccati!";
|
||||
$lang['wiexcid'] = "Eccezione Stanze";
|
||||
$lang['wiexciddesc'] = "Inserisci gli ID delle stanze dove non verrà conteggiato il tempo del Rank.<br><br>Se un utente resta in uno dei canali elencati, il tempo non sarà completamente ignorato ma verrà conteggiato come tempo in IDLE.<br><br>Di conseguenza avrà senso solo se si utilizzerà la modalità 'Tempo di attività'.";
|
||||
$lang['wiexgrp'] = "Eccezione dei servergroup";
|
||||
$lang['wiexgrpdesc'] = "Lista dei servergroup ID che non verranno contati dal Ranksystem (separati da virgola. es. 9,10,11)<br>Gli utenti che avranno almeno uno di questi servergroup verranno ignorati.";
|
||||
$lang['wiexuid'] = "Eccezione degli utenti";
|
||||
$lang['wiexuiddesc'] = "Lista degli utenti (ID unico) che non verranno contati dal Ranksystem (separati da virgola. es 5GFxciykQMojlrvugWti835Wdto=,YQf+7x/4LJ2Tw5cuQGItsVEn+S4=)<br>Questi utentiverranno ignorati.";
|
||||
$lang['wigrptime'] = "rank up defintion";
|
||||
$lang['wigrptimedesc'] = "Definisci qui dopo quanto tempo un utente debba ottenere automaticamente un servergroup predefinito.<br><br>time (seconds)=>servergroup ID<br><br>Important for this is the 'online time' or the 'active time' of an user, depending on setting of the mode.<br><br>Ogni voce deve essere separate dalla successive con una virgola. br><br>Dovrà essere inserito il tempo cumulativo<br><br>Esempio:<br>60=>9,120=>10,180=>11<br><br>Su queste basi un utente ottiene il servergroup 9 dopo 60 secondi, a sua volta il 10 dopo altri 60 secondi e così via...";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "Impostazioni Principali";
|
||||
$lang['wihldb'] = "Impostazioni Database";
|
||||
$lang['wihlmsg'] = "Impostazioni Messaggi";
|
||||
$lang['wihlsty'] = "Impostazione Pagina Statistiche";
|
||||
$lang['wihlts'] = "Impostazioni Teamspeak";
|
||||
$lang['wihlvs'] = "Impostazione Varie";
|
||||
$lang['wiignidle'] = "Ignora Idle";
|
||||
$lang['wiignidledesc'] = "Definisci un periodo di tempo, fino a che il tempo di inattività di un utente verrà ignorato.<br><br>Quando un cliente non fa nulla sul server (=idle), questo tempo viene conteggiato dal Ranksystem. Grazie a questa funzione il tempo di inattività di un utente non sarà conteggiato fino al limite definito. Solo quando il limite definito viene superato, conta da tale data per il Ranksystem come il tempo di inattività.<br><br>Questà funzione è compatibile solo con il tempo di attività.<br><br>Significato La funzione è ad esempio per valutare il tempo di ascolto in conversazioni come l'attività.<br><br>0 = Disabilità la funzione<br><br>Esempio:<br>Ignore idle = 600 (seconds)<br>Un utente ha un idle di 8 minunti<br>Conseguenza:<br>8 minuti in IDLE verranno ignorati e poi il tempo successivo verrà conteggiato come tempo di attività. Se il tempo di inattività ora viene aumentato a oltre 12 minuti (quindi il tempo è più di 10 minuti) 2 minuti verrebbero conteggiati come tempo di inattività.";
|
||||
$lang['wilog'] = "Path dei Log";
|
||||
$lang['wilogdesc'] = "La path dei log del RankSystem.<br><br>Example:<br>/var/logs/ranksystem/<br><br>Assicurati che l'utente che hai assegnato (del web server) abbia i poteri per scrivere nella directory (oppure dai direttamente chmod 777 alla cartella log).";
|
||||
$lang['wimsgmsg'] = "Messaggio";
|
||||
$lang['wimsgmsgdesc'] = "Imposta un messaggio che verrà inviato come messaggio privato su TS3 per quando un utente raggiunge il Rank Successivo.<br><br>Potrete utilizzare i BB-code di un comunissimo messaggio .<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Inoltre il tempo trascorsco potrà essere espresso con la stringa:<br>%1\$s - days<br>%2\$s - hours<br>%3\$s - minutes<br>%4\$s - seconds<br><br>Esempio:<br>Hey,\\nComplimenti! hai raggiunto il Ranksuccessivo grazie al tuo tempo online di %1\$s days, %2\$s hours and %3\$s minutes. [B]Continua Così[/B] ;-)";
|
||||
$lang['wilogout'] = "Logout";
|
||||
$lang['wimsgusr'] = "Notifica di aumento di rank";
|
||||
$lang['wimsgusrdesc'] = "Informa un utente con un messaggio privato testuale sul suo aumento di rank.";
|
||||
$lang['wimsgmsgdesc'] = "Imposta un messaggio che verrà inviato come messaggio privato su TS3 per quando un utente raggiunge il Rank Successivo.<br><br>Potrete utilizzare i BB-code di un comunissimo messaggio .<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Inoltre il tempo trascorsco potrà essere espresso con la stringa:<br>%1\$s - days<br>%2\$s - hours<br>%3\$s - minutes<br>%4\$s - seconds<br><br>Esempio:<br>Hey,\\nComplimenti! hai raggiunto il Ranksuccessivo grazie al tuo tempo online di %1\$s days, %2\$s hours and %3\$s minutes. [B]Continua Così[/B] ;-)";
|
||||
$lang['wimsgsn'] = "Server-News";
|
||||
$lang['wimsgsndesc'] = "Define a message, which will be shown on the /stats/ page as server news.<br><br>You can use default html functions to modify the layout<br><br>Example:<br><b> - <b>for bold</b><br><u> - <u>for underline</u><br><i> - <i>for italic</i><br><br> - for word-wrap (new line)";
|
||||
$lang['wilogout'] = "Logout";
|
||||
$lang['wimsgusr'] = "Notifica di aumento di rank";
|
||||
$lang['wimsgusrdesc'] = "Informa un utente con un messaggio privato testuale sul suo aumento di rank.";
|
||||
$lang['winav1'] = "TeamSpeak";
|
||||
$lang['winav2'] = "Database";
|
||||
$lang['winav3'] = "Core";
|
||||
@@ -298,67 +303,67 @@ $lang['winav7'] = "Amministra";
|
||||
$lang['winav8'] = "Avvia / Ferma il Bot";
|
||||
$lang['winav9'] = "Aggiornamento disponibile!";
|
||||
$lang['winav10'] = "Per favore utilizzare l'interfaccia solo attraverso %s HTTPS%s Una crittografia è fondamentale per garantire la privacy e la sicurezza.%sPer essere in grado di utilizzare HTTPS il vostro web server deve supportare una connessione SSL.";
|
||||
$lang['wiselcld'] = "Seleziona utenti";
|
||||
$lang['wiselclddesc'] = "Seleziona gli utenti in base all’ultimo nickname noto. Per farlo devi solo scrivere.<br>Selezioni multiple vanno separate da una virgola, che il sistema fa automaticamente.<br><br>Con la selezione puoi scegliere un’azione con il prossimo passaggio.";
|
||||
$lang['wishcolas'] = "Servergroup attuale";
|
||||
$lang['wishcolasdesc'] = "Mostra colonna 'Servergroup attuale' in stats/list_rankup.php";
|
||||
$lang['wishcolat'] = "Tempo Attività";
|
||||
$lang['wishcolatdesc'] = "Mostra colonna 'Tempo Attività' in stats/list_rankup.php";
|
||||
$lang['wishcolcld'] = "Nome Utente";
|
||||
$lang['wishcolclddesc'] = "Mostra colonna 'Nome Utente' in stats/list_rankup.php";
|
||||
$lang['wishcoldbid'] = "ID del database";
|
||||
$lang['wishcoldbiddesc'] = "Mostra colonna 'ID del database' in stats/list_rankup.php";
|
||||
$lang['wishcolit'] = "tempo in IDLE";
|
||||
$lang['wishcolitdesc'] = "Mostra colonna 'tempo in IDLE' in stats/list_rankup.php";
|
||||
$lang['wishcolls'] = "Ultimo volta online";
|
||||
$lang['wishcollsdesc'] = "Mostra colonna 'Ultimo volta online' in stats/list_rankup.php";
|
||||
$lang['wishcolnx'] = "Prossimo Rank";
|
||||
$lang['wishcolnxdesc'] = "Mostra colonna 'Prossimo Rank' in stats/list_rankup.php";
|
||||
$lang['wishcolot'] = "Tempo Online";
|
||||
$lang['wishcolotdesc'] = "Mostra colonna 'Tempo Online' in stats/list_rankup.php";
|
||||
$lang['wishcolrg'] = "rank";
|
||||
$lang['wishcolrgdesc'] = "Mostra colonna 'rank' in stats/list_rankup.php";
|
||||
$lang['wishcolsg'] = "Prossimo Servergroup";
|
||||
$lang['wishcolsgdesc'] = "Mostra colonna 'Prossimo Servergroup' in stats/list_rankup.php";
|
||||
$lang['wishcoluuid'] = "ID del Utente";
|
||||
$lang['wishcoluuiddesc'] = "Mostra colonna 'ID del Utente' in stats/list_rankup.php";
|
||||
$lang['wishexcld'] = "Eccetto gli utenti";
|
||||
$lang['wishexclddesc'] = "Mostra gli utenti in list_rankup.php,<br>which are excluded and therefore not participate in the Ranksystem.";
|
||||
$lang['wishexgrp'] = "Eccetto i Servergroups";
|
||||
$lang['wishexgrpdesc'] = "Mostra gli utenti in list_rankup.php, che sono nella lista 'client exception' e non dovrebbero essere considerati per il Ranksystem.";
|
||||
$lang['wishhicld'] = "Utenti col massimo rank";
|
||||
$lang['wishhiclddesc'] = "Mostra gli utenti in list_rankup.php, che hanno raggiunto il più elevato rank nel Ranksystem.";
|
||||
$lang['wisupidle'] = "Modalità";
|
||||
$lang['wisupidledesc'] = "Ci sono due modalità di conteggio del tempo per applicare un aumento di rank. 1) Tempo Online: Tutto il tempo che l'utente passa in TS in IDLE o meno (Vedi colonna 'sum. online time' in the 'stats/list_rankup.php') 2) Tempo di attività: Al tempo online dell'utente viene sottratto il tempo in IDLE (AFK) (Vedi colonna 'sum. active time' in the 'stats/list_rankup.php'). Il cambiamento di modalità dopo lungo tempo non è consigliato ma dovrebbe funzionare comunque.";
|
||||
$lang['wisvconf'] = "Salva";
|
||||
$lang['wisvsuc'] = "Modifiche salvate con successo!";
|
||||
$lang['wisvres'] = "Dovrai riavviare il Ranksystem affinché i cambiamenti vengano applicati!";
|
||||
$lang['witime'] = "Fuso orario";
|
||||
$lang['witimedesc'] = "Selezione il fuso orario di dove è hostato il server.";
|
||||
$lang['wits3dch'] = "Canale di Default";
|
||||
$lang['wits3dchdesc'] = "Il channel-ID cui il bot deve connettersi.<br><br>Il Bot entrerà in questo canale appena entrato nel TeamSpeak server.";
|
||||
$lang['wits3host'] = "Indirizzo TS3";
|
||||
$lang['wits3hostdesc'] = "Indirizzo del vostro server Teamspeak<br>(IP o DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "Con la modalità Slowmode potrai ridurre lo \"spam\" dei comandi query di TeamSpeak. E previene inoltre i ban per flood nel server Teamspeak.<br>I comandi della query arriveranno con un lieve ritardo in base al ritardo di risposta scelto.<br><br>!!! INOLTRE RIDURRA L'UTILIZZO DELLE RISORSE DEL SERVER !!!<br><br>Questa funzione non è consigliata, se non è richiesta. Il ritardo dei comandi del bot potrebbe causare imprecisione, sopratutto nell'utilizzo dei boost.";
|
||||
$lang['wits3qnm'] = "Nome del Bot";
|
||||
$lang['wits3qnm2'] = "2° nome del Bot";
|
||||
$lang['wits3qnm2desc'] = "Un secondo nome in caso in cui il primo nome sia già in uso.";
|
||||
$lang['wits3qnmdesc'] = "Il nome con il quale la query si conneterà al TS3.<br>Potrai dare il nome che preferisci.<br> Ricorda che sarà anche il nome con il quale gli utenti riceveranno i messaggi su Teamspeak.";
|
||||
$lang['wits3querpw'] = "TS3 - Password della Query";
|
||||
$lang['wits3querpwdesc'] = "Password della query di Teamspeak (di norma viene creata al primo avvio di Teamspeak, guarda qui per modificarla: <a href=\"https://support.teamspeakusa.com/index.php?/Knowledgebase/Article/View/276/16/how-do-i-change-my-serverquery-admin-password\">CHANGE QUERY PASSWORD</a><br>.";
|
||||
$lang['wits3querusr'] = "TS3 - Utente della Query";
|
||||
$lang['wits3querusrdesc'] = "Il nome utente della Query scelta<br>Di default è serveradmin<br>Ma se preferisci potrai creare un ulteriore query solo per il Ranksystem.<br>Per vedere i permessi necessari alla Query guarda:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 - Porta della Query";
|
||||
$lang['wits3querydesc'] = "La porta per l'accesso delle query a Teamspeak<br>La porta di default è 10011 (TCP)<br>Se non è la porta di default e non sai che porta possa essere guarda all'interno del file 'ts3server.ini' nella directory principale del server Teamspeak dove troverai tutte le informazioni sul server.";
|
||||
$lang['wits3voice'] = "TS3 - Voice-Port";
|
||||
$lang['wits3voicedesc'] = "La voice port del vostro Teamspeak<br>Di default è 9987 (UDP)<br>Questa è inoltre la porta con cui vi connettete al TS3.";
|
||||
$lang['wiupcheck'] = "Controlla aggiornamenti";
|
||||
$lang['wiupcheckdesc'] = "Se le funzione 'Controlla aggiornamenti', la lista di utenti inseriti (ID unico dell'utente) riceveranno una notifica su Teamspeak (come messaggio privato), quando sarà disponibile uin aggiornamento.";
|
||||
$lang['wiuptime'] = "Intervallo di cotrollo aggiornamenti";
|
||||
$lang['wiuptimedesc'] = "Inserisci qui ogni quanti secondi il Ranksystem verificherà se vi sono aggiornamenti disponibili.<br>Attenzione, Ogni utente inserito riceverà la notifica di aggiornamento attraverso un messaggio privato su Temaspeak. Se nessuno degli utenti inseriti sarà online, Il Ranksystem proverà ad inviare il messaggio nell'intervallo di tempo successivo.";
|
||||
$lang['wiupuid'] = "Recipiente";
|
||||
$lang['wiupuiddesc'] = "La lista di utenti (dovrà essere inserito l'ID unico dell'utente(i) es. YdicUS4yofeBEONN7J3FeLic8b4=,RiGqBf8hU1kbCV/vwfPL0rzAwZQ=), che verranno informati di eventuali aggiornamenti attraverso un messaggio privato su Teamspeak.";
|
||||
$lang['wivlang'] = "Lingua";
|
||||
$lang['wivlangdesc'] = "Lingue disponibili per il Ranksystem<br><br>de - Deutsch<br>en - english<br>it - italiano<br>ru - Русский";
|
||||
$lang['wiselcld'] = "Seleziona utenti";
|
||||
$lang['wiselclddesc'] = "Seleziona gli utenti in base all’ultimo nickname noto. Per farlo devi solo scrivere.<br>Selezioni multiple vanno separate da una virgola, che il sistema fa automaticamente.<br><br>Con la selezione puoi scegliere un’azione con il prossimo passaggio.";
|
||||
$lang['wishcolas'] = "Servergroup attuale";
|
||||
$lang['wishcolasdesc'] = "Mostra colonna 'Servergroup attuale' in stats/list_rankup.php";
|
||||
$lang['wishcolat'] = "Tempo Attività";
|
||||
$lang['wishcolatdesc'] = "Mostra colonna 'Tempo Attività' in stats/list_rankup.php";
|
||||
$lang['wishcolcld'] = "Nome Utente";
|
||||
$lang['wishcolclddesc'] = "Mostra colonna 'Nome Utente' in stats/list_rankup.php";
|
||||
$lang['wishcoldbid'] = "ID del database";
|
||||
$lang['wishcoldbiddesc'] = "Mostra colonna 'ID del database' in stats/list_rankup.php";
|
||||
$lang['wishcolit'] = "tempo in IDLE";
|
||||
$lang['wishcolitdesc'] = "Mostra colonna 'tempo in IDLE' in stats/list_rankup.php";
|
||||
$lang['wishcolls'] = "Ultimo volta online";
|
||||
$lang['wishcollsdesc'] = "Mostra colonna 'Ultimo volta online' in stats/list_rankup.php";
|
||||
$lang['wishcolnx'] = "Prossimo Rank";
|
||||
$lang['wishcolnxdesc'] = "Mostra colonna 'Prossimo Rank' in stats/list_rankup.php";
|
||||
$lang['wishcolot'] = "Tempo Online";
|
||||
$lang['wishcolotdesc'] = "Mostra colonna 'Tempo Online' in stats/list_rankup.php";
|
||||
$lang['wishcolrg'] = "rank";
|
||||
$lang['wishcolrgdesc'] = "Mostra colonna 'rank' in stats/list_rankup.php";
|
||||
$lang['wishcolsg'] = "Prossimo Servergroup";
|
||||
$lang['wishcolsgdesc'] = "Mostra colonna 'Prossimo Servergroup' in stats/list_rankup.php";
|
||||
$lang['wishcoluuid'] = "ID del Utente";
|
||||
$lang['wishcoluuiddesc'] = "Mostra colonna 'ID del Utente' in stats/list_rankup.php";
|
||||
$lang['wishexcld'] = "Eccetto gli utenti";
|
||||
$lang['wishexclddesc'] = "Mostra gli utenti in list_rankup.php,<br>which are excluded and therefore not participate in the Ranksystem.";
|
||||
$lang['wishexgrp'] = "Eccetto i Servergroups";
|
||||
$lang['wishexgrpdesc'] = "Mostra gli utenti in list_rankup.php, che sono nella lista 'client exception' e non dovrebbero essere considerati per il Ranksystem.";
|
||||
$lang['wishhicld'] = "Utenti col massimo rank";
|
||||
$lang['wishhiclddesc'] = "Mostra gli utenti in list_rankup.php, che hanno raggiunto il più elevato rank nel Ranksystem.";
|
||||
$lang['wisupidle'] = "Modalità";
|
||||
$lang['wisupidledesc'] = "Ci sono due modalità di conteggio del tempo per applicare un aumento di rank.<br><br>1) Tempo Online: Tutto il tempo che l'utente passa in TS in IDLE o meno (Vedi colonna 'sum. online time' in the 'stats/list_rankup.php')<br><br>2) Tempo di attività: Al tempo online dell'utente viene sottratto il tempo in IDLE (AFK) (Vedi colonna 'sum. active time' in the 'stats/list_rankup.php').<br><br>Il cambiamento di modalità dopo lungo tempo non è consigliato ma dovrebbe funzionare comunque.";
|
||||
$lang['wisvconf'] = "Salva";
|
||||
$lang['wisvsuc'] = "Modifiche salvate con successo!";
|
||||
$lang['wisvres'] = "Dovrai riavviare il Ranksystem affinché i cambiamenti vengano applicati!";
|
||||
$lang['witime'] = "Fuso orario";
|
||||
$lang['witimedesc'] = "Selezione il fuso orario di dove è hostato il server.";
|
||||
$lang['wits3dch'] = "Canale di Default";
|
||||
$lang['wits3dchdesc'] = "Il channel-ID cui il bot deve connettersi.<br><br>Il Bot entrerà in questo canale appena entrato nel TeamSpeak server.";
|
||||
$lang['wits3host'] = "Indirizzo TS3";
|
||||
$lang['wits3hostdesc'] = "Indirizzo del vostro server Teamspeak<br>(IP o DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "Con la modalità Slowmode potrai ridurre lo \"spam\" dei comandi query di TeamSpeak. E previene inoltre i ban per flood nel server Teamspeak.<br>I comandi della query arriveranno con un lieve ritardo in base al ritardo di risposta scelto.<br><br>!!! INOLTRE RIDURRA L'UTILIZZO DELLE RISORSE DEL SERVER !!!<br><br>Questa funzione non è consigliata, se non è richiesta. Il ritardo dei comandi del bot potrebbe causare imprecisione, sopratutto nell'utilizzo dei boost.";
|
||||
$lang['wits3qnm'] = "Nome del Bot";
|
||||
$lang['wits3qnm2'] = "2° nome del Bot";
|
||||
$lang['wits3qnm2desc'] = "Un secondo nome in caso in cui il primo nome sia già in uso.";
|
||||
$lang['wits3qnmdesc'] = "Il nome con il quale la query si conneterà al TS3.<br>Potrai dare il nome che preferisci.<br> Ricorda che sarà anche il nome con il quale gli utenti riceveranno i messaggi su Teamspeak.";
|
||||
$lang['wits3querpw'] = "TS3 - Password della Query";
|
||||
$lang['wits3querpwdesc'] = "Password della query di Teamspeak (di norma viene creata al primo avvio di Teamspeak, guarda qui per modificarla: <a href=\"https://support.teamspeakusa.com/index.php?/Knowledgebase/Article/View/276/16/how-do-i-change-my-serverquery-admin-password\">CHANGE QUERY PASSWORD</a><br>.";
|
||||
$lang['wits3querusr'] = "TS3 - Utente della Query";
|
||||
$lang['wits3querusrdesc'] = "Il nome utente della Query scelta<br>Di default è serveradmin<br>Ma se preferisci potrai creare un ulteriore query solo per il Ranksystem.<br>Per vedere i permessi necessari alla Query guarda:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 - Porta della Query";
|
||||
$lang['wits3querydesc'] = "La porta per l'accesso delle query a Teamspeak<br>La porta di default è 10011 (TCP)<br>Se non è la porta di default e non sai che porta possa essere guarda all'interno del file 'ts3server.ini' nella directory principale del server Teamspeak dove troverai tutte le informazioni sul server.";
|
||||
$lang['wits3voice'] = "TS3 - Voice-Port";
|
||||
$lang['wits3voicedesc'] = "La voice port del vostro Teamspeak<br>Di default è 9987 (UDP)<br>Questa è inoltre la porta con cui vi connettete al TS3.";
|
||||
$lang['wiupcheck'] = "Controlla aggiornamenti";
|
||||
$lang['wiupcheckdesc'] = "Se le funzione 'Controlla aggiornamenti', la lista di utenti inseriti (ID unico dell'utente) riceveranno una notifica su Teamspeak (come messaggio privato), quando sarà disponibile uin aggiornamento.";
|
||||
$lang['wiuptime'] = "Intervallo di cotrollo aggiornamenti";
|
||||
$lang['wiuptimedesc'] = "Inserisci qui ogni quanti secondi il Ranksystem verificherà se vi sono aggiornamenti disponibili.<br>Attenzione, Ogni utente inserito riceverà la notifica di aggiornamento attraverso un messaggio privato su Temaspeak. Se nessuno degli utenti inseriti sarà online, Il Ranksystem proverà ad inviare il messaggio nell'intervallo di tempo successivo.";
|
||||
$lang['wiupuid'] = "Recipiente";
|
||||
$lang['wiupuiddesc'] = "La lista di utenti (dovrà essere inserito l'ID unico dell'utente(i) es. YdicUS4yofeBEONN7J3FeLic8b4=,RiGqBf8hU1kbCV/vwfPL0rzAwZQ=), che verranno informati di eventuali aggiornamenti attraverso un messaggio privato su Teamspeak.";
|
||||
$lang['wivlang'] = "Lingua";
|
||||
$lang['wivlangdesc'] = "Choose a default language for the Ranksystem.<br><br>The language is also selectable on the websites for the users and will be stored for the session.";
|
||||
?>
|
||||
@@ -1,245 +1,248 @@
|
||||
<?PHP
|
||||
$lang = array();
|
||||
$lang['adduser'] = "Userul %s (unique Client-ID: %s; Client-database-ID %s) este necunoscut -> adăugat la Ranksystem acum.";
|
||||
$lang['changedbid'] = "Userul %s (unique Client-ID: %s) a primit un nouă identitate (%s). Actualizăm vechea identitate (%s) și resetăm timpul colectat!";
|
||||
$lang['crawl'] = "Scanăm clientul conectat și contorizăm activitatea...";
|
||||
$lang['clean'] = "Scanăm clienții care trebuie șterși...";
|
||||
$lang['cleanc'] = "Utilizatori curați";
|
||||
$lang['cleancdesc'] = "Cu aceasta funcție clienții vechi din Ranksystem se elimină.<br><br>La sfârșit, Ranksystem sincronizat cu baza de date TeamSpeak. Utilizatorii , care nu există în TeamSpeak, vor fi șterși din Ranksystem.<br><br>Această funcție este activată numai atunci când \"SlowMode\" este dezactivat!<br><br><br>Pentru reglarea automată a bazei de date TeamSpeak , ClientCleaner poate fi folosit:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "Au fost %s clienții eliminați din baza de date Ranksystem , pentru că ei nu mai erau existenți în baza de date TeamSpeak ";
|
||||
$lang['cleanno'] = "Nu a fost nimic de eliminat...";
|
||||
$lang['cleanp'] = "Perioada de curațare";
|
||||
$lang['cleanpdesc'] = "Setați un timp care trebuie să treacă înainte de a se executa curățirea clienților.<br><br>Setați un timp în secunde.<br><br>Recomandat este o dată pe zi , deoarece curățarea clienților are nevoie de mult timp pentru baze de date mai mari.";
|
||||
$lang['cleanrs'] = "Clienți in baza de date Ranksystem: %s";
|
||||
$lang['cleants'] = "Clienți în baza de date TeamSpeak: %s (of %s)";
|
||||
$lang['days'] = "%s <small>zile</small>";
|
||||
$lang['dbconerr'] = "Nu a reușit să se conecteze la baza de date MySQL: ";
|
||||
$lang['delcldgrpif'] = "Eroare la eliminarea cunoștințelor pentru servergroups: %s";
|
||||
$lang['delcldgrpsc'] = "Cunoștințe despre servergroups pentru %s Utilizatorul a eliminat cu succes.";
|
||||
$lang['delclientsif'] = "%s Clienții eliminați din baza de date Ranksystem!";
|
||||
$lang['delclientssc'] = "%s Clienții eliminați cu succes din baza de date Ranksystem!";
|
||||
$lang['errlogin'] = "Numele de utilizator și / sau parola sunt incorecte ! Încearcă din nou...";
|
||||
$lang['adduser'] = "Userul %s (unique Client-ID: %s; Client-database-ID %s) este necunoscut -> adăugat la Ranksystem acum.";
|
||||
$lang['changedbid'] = "Userul %s (unique Client-ID: %s) a primit un nouă identitate (%s). Actualizăm vechea identitate (%s) și resetăm timpul colectat!";
|
||||
$lang['crawl'] = "Scanăm clientul conectat și contorizăm activitatea...";
|
||||
$lang['clean'] = "Scanăm clienții care trebuie șterși...";
|
||||
$lang['cleanc'] = "Utilizatori curați";
|
||||
$lang['cleancdesc'] = "Cu aceasta funcție clienții vechi din Ranksystem se elimină.<br><br>La sfârșit, Ranksystem sincronizat cu baza de date TeamSpeak. Utilizatorii , care nu există în TeamSpeak, vor fi șterși din Ranksystem.<br><br>Această funcție este activată numai atunci când \"SlowMode\" este dezactivat!<br><br><br>Pentru reglarea automată a bazei de date TeamSpeak , ClientCleaner poate fi folosit:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "Au fost %s clienții eliminați din baza de date Ranksystem , pentru că ei nu mai erau existenți în baza de date TeamSpeak ";
|
||||
$lang['cleanno'] = "Nu a fost nimic de eliminat...";
|
||||
$lang['cleanp'] = "Perioada de curațare";
|
||||
$lang['cleanpdesc'] = "Setați un timp care trebuie să treacă înainte de a se executa curățirea clienților.<br><br>Setați un timp în secunde.<br><br>Recomandat este o dată pe zi , deoarece curățarea clienților are nevoie de mult timp pentru baze de date mai mari.";
|
||||
$lang['cleanrs'] = "Clienți in baza de date Ranksystem: %s";
|
||||
$lang['cleants'] = "Clienți în baza de date TeamSpeak: %s (of %s)";
|
||||
$lang['days'] = "%s <small>zile</small>";
|
||||
$lang['dbconerr'] = "Nu a reușit să se conecteze la baza de date MySQL: ";
|
||||
$lang['delcldgrpif'] = "Eroare la eliminarea cunoștințelor pentru servergroups: %s";
|
||||
$lang['delcldgrpsc'] = "Cunoștințe despre servergroups pentru %s Utilizatorul a eliminat cu succes.";
|
||||
$lang['delclientsif'] = "%s Clienții eliminați din baza de date Ranksystem!";
|
||||
$lang['delclientssc'] = "%s Clienții eliminați cu succes din baza de date Ranksystem!";
|
||||
$lang['errlogin'] = "Numele de utilizator și / sau parola sunt incorecte ! Încearcă din nou...";
|
||||
$lang['errlogin2'] = "Protecție forță brută: încercați din nou în %s seconde!";
|
||||
$lang['errlogin3'] = "Protecție forță brută: Prea multe greșeli. Banat pentru 300 de secunde!";
|
||||
$lang['error'] = "Eroare ";
|
||||
$lang['errremgrp'] = "Eroare la eliminarea utilizatorului cu identitatea %s din servergroup cu servergroup-database-ID %s!";
|
||||
$lang['errremdb'] = "Eroare când eliminăm utilizatorului cu identitatea %s din baza de date Ranksystem!";
|
||||
$lang['errsel'] = "Eroare când alegem selecțiile cu<br>Clientul selectat: %s<br>opțiune 'ștergeți clienții': %s<br>opțiune 'sum. online timp': %s";
|
||||
$lang['errukwn'] = "A apărut o eroare necunoscută!";
|
||||
$lang['errupcount'] = "Eroare în timp ce reînnoim timpul rezumat on-line de %s de către utilizator cu identitatea %s";
|
||||
$lang['highest'] = "Cel mai înalt rang atins";
|
||||
$lang['install'] = "Instalare";
|
||||
$lang['instdb'] = "Instalăm baza de date:";
|
||||
$lang['instdbsuc'] = "Baza de date %s a fost creată cu succes.";
|
||||
$lang['insttb'] = "Instalăm tabelele:";
|
||||
$lang['isntwicfg'] = "Nu se poate salva configurația bazei de date ! Vă rugăm să modificați 'other/dbconfig.php' cu acces chmod 0777 și incercați iar.";
|
||||
$lang['isntwichm'] = "Vă rugăm să modificați 'other/dbconfig.php', și folderele 'avatars/', 'icons/' and 'logs/' cu permisiile necesare. Prin urmare, sa editați accesul chmod cu 0777. Apoi incercați iar (refresh la pagină).";
|
||||
$lang['isntwidbhost'] = "Host-ul bazei de date:";
|
||||
$lang['isntwidbhostdesc'] = "Server-ul DB<br>(IP sau DNS)";
|
||||
$lang['isntwidbmsg'] = "Eroare DB: ";
|
||||
$lang['isntwidbname'] = "Nume DB:";
|
||||
$lang['isntwidbnamedesc'] = "Nume DB";
|
||||
$lang['isntwidbpass'] = "Parolă DB:";
|
||||
$lang['isntwidbpassdesc'] = "Parola pentru a accesa DB";
|
||||
$lang['isntwidbtype'] = "Tipul DB:";
|
||||
$lang['isntwidbtypedesc'] = "Tipul DB<br><br>Trebuie să instalați necesarul de PDO Driver.<br>Pentru mai multe informatii accesați http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "DB User:";
|
||||
$lang['isntwidbusrdesc'] = "User-ul pentru acces la DB";
|
||||
$lang['isntwidel'] = "Vă rugăm să ștergeți fișierul 'install.php' din webserver și deschideți %s să configurați Ranksystem!";
|
||||
$lang['isntwiusr'] = "Utilizator pentru webinterface creat cu succes.";
|
||||
$lang['isntwiusrcr'] = "Creare acces";
|
||||
$lang['isntwiusrdesc'] = "Introduceți un nume de utilizator și o parolă pentru accesul webinterface. Cu webinterface vă puteți configura Ranksytem-ul.";
|
||||
$lang['isntwiusrh'] = "Acces - Webinterface";
|
||||
$lang['listacsg'] = "Servergroup actual";
|
||||
$lang['listcldbid'] = "Client-database-ID";
|
||||
$lang['listexgrp'] = "Nu va considera pentru Ranksystem (servergroup exception).";
|
||||
$lang['listexuid'] = "Nu va considera pentru Ranksystem (client exception).";
|
||||
$lang['listip'] = "Adresă IP";
|
||||
$lang['listnick'] = "Nume Client";
|
||||
$lang['listnxsg'] = "Următorul servergroup";
|
||||
$lang['listnxup'] = "Următorul rank up";
|
||||
$lang['listrank'] = "rank";
|
||||
$lang['listseen'] = "Văzut ultima dată";
|
||||
$lang['listsuma'] = "sum. timp activ";
|
||||
$lang['listsumi'] = "sum. timpul de inactivitate";
|
||||
$lang['listsumo'] = "sum. timp online";
|
||||
$lang['listuid'] = "unique Client-ID";
|
||||
$lang['login'] = "Logare";
|
||||
$lang['nocount'] = "User-ul %s (Client-ID unic: %s; Client-database-ID %s) este un query-user sau este de mai multe ori on-line ( numai primul număr de conexiune ) - > acest lucru nu va conta !";
|
||||
$lang['noentry'] = "Nu au gasit ..";
|
||||
$lang['pass'] = "Parolă";
|
||||
$lang['queryname'] = "În primul rând Botname deja în uz . Încerc cu al doilea Botname ...";
|
||||
$lang['sccrmcld'] = "User-ul cu unic Client-ID %s scos cu success din baza de date Ranksystem .";
|
||||
$lang['sccupcount'] = "User-ul cu unic Client-ID %s rescrise cu un succes timp rezumat on-line al %s.";
|
||||
$lang['setontime'] = "sum. timp online";
|
||||
$lang['setontimedesc'] = "Introduceți un timp on-line nou rezumat , care ar trebui să fie setat la clienții anteriori selectate . Cu acest vechi rezumat on-line va fi rescris .<br><br>Timpul de sinteză introdus on-line v-a fi luat în considerare pentru rangul sus.";
|
||||
$lang['sgrpadd'] = "Aloca servergroup %s user-ului %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['sgrprerr'] = "S-a întâmplat o problemă cu servergroup utilizatorului %s (unique Client-ID: %s; Client-database-ID %s)!";
|
||||
$lang['sgrprm'] = "S-a șters servergroup %s de la user-ul %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['stix0001'] = "Statistică de server";
|
||||
$lang['stix0002'] = "Numărul total de utilizatori";
|
||||
$lang['stix0003'] = "Vezi detalii";
|
||||
$lang['stix0004'] = "Timp on-line al tuturor utilizator / Total";
|
||||
$lang['stix0005'] = "Vedere de sus din toate timpurile";
|
||||
$lang['stix0006'] = "Vedere de sus a lunii";
|
||||
$lang['stix0007'] = "Vedere de sus a săptămânii";
|
||||
$lang['stix0008'] = "Utilizarea serverului";
|
||||
$lang['stix0009'] = "În ultimele 7 zile";
|
||||
$lang['stix0010'] = "În ultimele 30 de zile";
|
||||
$lang['stix0011'] = "În ultimele 24 de ore";
|
||||
$lang['stix0012'] = "Selectare perioadă";
|
||||
$lang['stix0013'] = "Ultima zi";
|
||||
$lang['stix0014'] = "Săptămâna trecută";
|
||||
$lang['stix0015'] = "Luna trecută";
|
||||
$lang['stix0016'] = "Timp activ / inactiv ( tuturor clienților )";
|
||||
$lang['stix0017'] = "Versiunile ( tuturor clienților )";
|
||||
$lang['stix0018'] = "Naționalitățile ( tuturor clienților )";
|
||||
$lang['stix0019'] = "Platforme ( tuturor clienților )";
|
||||
$lang['stix0020'] = "Statisticile curente";
|
||||
$lang['stix0023'] = "Status server";
|
||||
$lang['stix0024'] = "Online";
|
||||
$lang['stix0025'] = "Offline";
|
||||
$lang['stix0026'] = "Clienți (Online / Max)";
|
||||
$lang['stix0027'] = "Număr de canale";
|
||||
$lang['stix0028'] = "Ping mediu pe server";
|
||||
$lang['stix0029'] = "Număr total de octeți primit";
|
||||
$lang['stix0030'] = "Număr total de octeți trimiși";
|
||||
$lang['stix0031'] = "Server uptime";
|
||||
$lang['stix0032'] = "După offline:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Zile, <span id=\"hours\">00</span> Ore, <span id=\"minutes\">00</span> Minute, <span id=\"seconds\">00</span> Secunde";
|
||||
$lang['stix0034'] = "Pierderea medie de pachete";
|
||||
$lang['stix0035'] = "Statisticile generale";
|
||||
$lang['stix0036'] = "Nume Server";
|
||||
$lang['stix0037'] = "Adresa Server(Adresa Host : Port)";
|
||||
$lang['stix0038'] = "Parola Server";
|
||||
$lang['stix0039'] = "Nu (Server-ul este public)";
|
||||
$lang['stix0040'] = "Da (Server este privat)";
|
||||
$lang['stix0041'] = "Server ID";
|
||||
$lang['stix0042'] = "Server platformă";
|
||||
$lang['stix0043'] = "Server versiune";
|
||||
$lang['stix0044'] = "Server creat in data (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Raport la lista de servere";
|
||||
$lang['stix0046'] = "Activat";
|
||||
$lang['stix0047'] = "Nu este activat";
|
||||
$lang['stix0048'] = "Nu sunt suficiente date încă ...";
|
||||
$lang['stix0049'] = "Timp on-line la toți utilizatorii / luna";
|
||||
$lang['stix0050'] = "Timp on-line la toți utilizatorii / săptămână";
|
||||
$lang['stix0051'] = "TeamSpeak nu a reușit , deci nici o data creată...";
|
||||
$lang['stmy0001'] = "Statisticile mele";
|
||||
$lang['stmy0002'] = "Rank";
|
||||
$lang['stmy0003'] = "Database ID:";
|
||||
$lang['stmy0004'] = "Unic ID:";
|
||||
$lang['stmy0005'] = "Conexiuni totale la serverul:";
|
||||
$lang['stmy0006'] = "Inceputul dății pentru statistici:";
|
||||
$lang['stmy0007'] = "Timp total on-line:";
|
||||
$lang['stmy0008'] = "Timp online ultimele 7 zile:";
|
||||
$lang['stmy0009'] = "Timp online ultimele 30 zile:";
|
||||
$lang['stmy0010'] = "Realizări finalizate:";
|
||||
$lang['stmy0011'] = "Timp progres realizare";
|
||||
$lang['stmy0012'] = "Ora: Legendarul";
|
||||
$lang['stmy0013'] = "Pentru că ai un timp online %s ore.";
|
||||
$lang['stmy0014'] = "Progres finalizat";
|
||||
$lang['stmy0015'] = "Ora: Aur";
|
||||
$lang['stmy0016'] = "% completat pentru Legendar";
|
||||
$lang['stmy0017'] = "Ora: Argint";
|
||||
$lang['stmy0018'] = "% completat pentru Aur";
|
||||
$lang['stmy0019'] = "Ora: Bronz";
|
||||
$lang['stmy0020'] = "% completat pentru Argint";
|
||||
$lang['stmy0021'] = "Ora: Ne-rank-at";
|
||||
$lang['stmy0022'] = "% completat pentru Bronz";
|
||||
$lang['stmy0023'] = "Conexiune progres realizare";
|
||||
$lang['stmy0024'] = "Connects: Legendary";
|
||||
$lang['stmy0025'] = "Because You connected %s times to the server.";
|
||||
$lang['stmy0026'] = "Connects: Gold";
|
||||
$lang['stmy0027'] = "Connects: Silver";
|
||||
$lang['stmy0028'] = "Connects: Bronze";
|
||||
$lang['stmy0029'] = "Connects: Unranked";
|
||||
$lang['stmy0030'] = "Progress next servergroup";
|
||||
$lang['stnv0001'] = "Server news";
|
||||
$lang['stnv0002'] = "Close";
|
||||
$lang['stnv0003'] = "Refresh client information";
|
||||
$lang['stnv0004'] = "Only use this refresh, when your TS3 information got changed, such as your TS3 username";
|
||||
$lang['stnv0005'] = "It only works, when you are connected to the TS3 server at the same time";
|
||||
$lang['stnv0006'] = "Refresh";
|
||||
$lang['stnv0007'] = "Battle area - Page content";
|
||||
$lang['stnv0008'] = "You can challenge other users in a battle between two users or two teams.";
|
||||
$lang['stnv0009'] = "While the battle is active the online time of the teams/users will be counted.";
|
||||
$lang['stnv0010'] = "When the battle ends the team/user with the highest online time wins.";
|
||||
$lang['stnv0011'] = "(The regular battling time is 48 hours)";
|
||||
$lang['stnv0012'] = "The winning team/user will recieve a price, which the user can use whenever the user wants.";
|
||||
$lang['stnv0013'] = "It will be displayed on the <a href=\"my_stats.php\">My statistics</a> tab.";
|
||||
$lang['stnv0014'] = "(Could be online time boost(2x) for 8 hours, instant online time (4 hours), etc.";
|
||||
$lang['stnv0015'] = "These boosts can be used for example to climb in the top users of the week.";
|
||||
$lang['stnv0016'] = "Not available";
|
||||
$lang['stnv0017'] = "You are not connected to the TS3 Server, so it can't display any data for you.";
|
||||
$lang['stnv0018'] = "Please connect to the TS3 Server and then Refresh your Session by pressing the blue Refresh Button at the top-right corner.";
|
||||
$lang['stnv0019'] = "My statistics - Page content";
|
||||
$lang['stnv0020'] = "This page contains a overall summary of your personal statistics and activity on the server.";
|
||||
$lang['stnv0021'] = "The informations are collected since the beginning of the Ranksystem, they are not since the beginning of the TeamSpeak server.";
|
||||
$lang['stnv0022'] = "This page receives its values out of a database. So the values might be delayed a bit.";
|
||||
$lang['stnv0023'] = "The sum inside of the donut charts may differ to the amount of 'Total user'. The reason is that this data weren't collected with older versions of the Ranksystem.";
|
||||
$lang['stnv0024'] = "Ranksystem - Statistics";
|
||||
$lang['stnv0025'] = "Limit entries";
|
||||
$lang['stnv0026'] = "all";
|
||||
$lang['stnv0027'] = "The informations on this site could be outdated! It seems the Ranksystem is no more connected to the TeamSpeak.";
|
||||
$lang['stnv0028'] = "(You are not connected to the TS3!)";
|
||||
$lang['stnv0029'] = "List Rankup";
|
||||
$lang['stnv0030'] = "Ranksystem info";
|
||||
$lang['stnv0031'] = "About the search field you can search for pattern in clientname, unique Client-ID and Client-database-ID.";
|
||||
$lang['stnv0032'] = "You can also use a view filter options (see below). Enter the filter also inside the search field.";
|
||||
$lang['stnv0033'] = "Combination of filter and search pattern are possible. Enter first the filter(s) followed without any sign your search pattern.";
|
||||
$lang['stnv0034'] = "Also it is possible to combine multiple filters. Enter this consecutively inside the search field.";
|
||||
$lang['stnv0035'] = "<u>Example:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Show only clients, which are excepted (client, servergroup or channel exception).";
|
||||
$lang['stnv0037'] = "Show only clients, which are not excepted.";
|
||||
$lang['stnv0038'] = "Show only clients, which are online.";
|
||||
$lang['stnv0039'] = "Show only clients, which are not online.";
|
||||
$lang['stnv0040'] = "Show only clients, which are in defined group. Represent the actuel rank/level.<br>Replace <i>GROUPID</i> with the wished servergroup ID.";
|
||||
$lang['stnv0041'] = "Show only clients, which are selected by lastseen.<br>Replace <i>OPERATOR</i> with '<' or '>' or '=' or '!='.<br>And replace <i>TIME</i> with a timestamp or date with format 'Y-m-d H-i' (example: 2016-06-18 20-25).<br>Full example: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Show only clients, which are from defined country.<br>Replace <i>TS3-COUNTRY-CODE</i> with the wished country.<br>For list of codes google for ISO 3166-1 alpha-2";
|
||||
$lang['stri0001'] = "Ranksystem information";
|
||||
$lang['stri0002'] = "What is the Ranksystem?";
|
||||
$lang['stri0003'] = "A TS3 Bot, which automatically grant ranks (servergroups) to user on a TeamSpeak 3 Server for online time or online activity. It also gathers informations and statistics about the user and displays the result on this site.";
|
||||
$lang['stri0004'] = "Who created the Ranksystem?";
|
||||
$lang['stri0005'] = "When the Ranksystem was Created?";
|
||||
$lang['stri0006'] = "First alpha release: 05/10/2014.";
|
||||
$lang['stri0007'] = "First beta release: 01/02/2015.";
|
||||
$lang['stri0008'] = "You can see the newest version on the <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "How was the Ranksystem created?";
|
||||
$lang['stri0010'] = "The Ranksystem is coded in";
|
||||
$lang['stri0011'] = "It uses also the following libraries:";
|
||||
$lang['stri0012'] = "Special Thanks To:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - for russian translation";
|
||||
$lang['stri0014'] = "Bejamin Frost - for initialisation the bootstrap design";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - for italian translation";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - for initialisation arabic translation";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - for initialisation romanian translation";
|
||||
$lang['sttw0001'] = "Top users";
|
||||
$lang['sttw0002'] = "Of the week";
|
||||
$lang['sttw0003'] = "With %s hours online time";
|
||||
$lang['sttw0004'] = "Top 10 compared";
|
||||
$lang['sttw0005'] = "Hours (Defines 100 %)";
|
||||
$lang['sttw0006'] = "%s hours (%s%)";
|
||||
$lang['sttw0007'] = "Top 10 Statistics";
|
||||
$lang['sttw0008'] = "Top 10 vs others in online time";
|
||||
$lang['sttw0009'] = "Top 10 vs others in active time";
|
||||
$lang['sttw0010'] = "Top 10 vs others in inactive time";
|
||||
$lang['sttw0011'] = "Top 10 (in hours)";
|
||||
$lang['sttw0012'] = "Other %s users (in hours)";
|
||||
$lang['sttw0013'] = "With %s hours active time";
|
||||
$lang['sttm0001'] = "Of the month";
|
||||
$lang['stta0001'] = "Of all time";
|
||||
$lang['upinf'] = "A new Version of the Ranksystem is available; Inform clients on server...";
|
||||
$lang['upmsg'] = "\nHey, a new version of the [B]Ranksystem[/B] is available!\n\ncurrent version: %s\n[B]new version: %s[/B]\n\nPlease check out our site for more informations [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Database update successfully executed.";
|
||||
$lang['upuser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s).";
|
||||
$lang['upuserboost'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "The unique Client-ID %s couldn't reached on the TeamSpeak!";
|
||||
$lang['upusrinf'] = "User %s was successfully informed.";
|
||||
$lang['user'] = "Username";
|
||||
$lang['wiaction'] = "action";
|
||||
$lang['wiboost'] = "boost";
|
||||
$lang['wiboostdesc'] = "Give an user on your TeamSpeak server a servergroup (have to be created manually), which you can declare here as boost group. Define also a factor which should be used (for example 2x) and a time, how long the boost should be rated.<br>The higher the factor, the faster an user reaches the next higher rank.<br>Is the time expired, the boost servergroup get automatically removed from the concerned user. The time starts running as soon as the user gets the servergroup.<br><br>servergroup ID => factor => time (in seconds)<br><br>Each entry have to separate from next with a comma.<br><br>Example:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>On this an user in servergroup 12 get the factor 2 for the next 6000 seconds, an user in servergroup 13 get the factor 3 for 2500 seconds, and so on...";
|
||||
$lang['error'] = "Eroare ";
|
||||
$lang['errremgrp'] = "Eroare la eliminarea utilizatorului cu identitatea %s din servergroup cu servergroup-database-ID %s!";
|
||||
$lang['errremdb'] = "Eroare când eliminăm utilizatorului cu identitatea %s din baza de date Ranksystem!";
|
||||
$lang['errsel'] = "Eroare când alegem selecțiile cu<br>Clientul selectat: %s<br>opțiune 'ștergeți clienții': %s<br>opțiune 'sum. online timp': %s";
|
||||
$lang['errukwn'] = "A apărut o eroare necunoscută!";
|
||||
$lang['errupcount'] = "Eroare în timp ce reînnoim timpul rezumat on-line de %s de către utilizator cu identitatea %s";
|
||||
$lang['highest'] = "Cel mai înalt rang atins";
|
||||
$lang['install'] = "Instalare";
|
||||
$lang['instdb'] = "Instalăm baza de date:";
|
||||
$lang['instdbsuc'] = "Baza de date %s a fost creată cu succes.";
|
||||
$lang['insterr1'] = "ATTENTION: You are trying to install the Ranksystem, but there is already existing a database with the name \"%s\".<br>Due installation this database will be dropped!<br>Be sure you want this. If not, please choose an other database name.";
|
||||
$lang['insterr2'] = "PDO is needed but seems not installed. Install <a href=\"http://php.net/manual/de/pdo.installation.php\" target=\"_blank\">PDO</a> and try it again!";
|
||||
$lang['insterr3'] = "PHP exec function need to be enabled but seems to be disabled. Please enable the PHP <a href=\http://php.net/manual/de/function.exec.php\" target=\"_blank\">exec</a> function and try it again!";
|
||||
$lang['insterr4'] = "Your PHP version (%s) is below 5.5.0. Update your PHP and try it again!";
|
||||
$lang['insttb'] = "Instalăm tabelele:";
|
||||
$lang['isntwicfg'] = "Nu se poate salva configurația bazei de date ! Vă rugăm să modificați 'other/dbconfig.php' cu acces chmod 0777 (on windows 'full access') și incercați iar.";
|
||||
$lang['isntwichm'] = "Vă rugăm să modificați 'other/dbconfig.php', și folderele 'avatars/', 'icons/' and 'logs/' cu permisiile necesare. Prin urmare, sa editați accesul chmod cu 0777 (on windows 'full access'). Apoi incercați iar (refresh la pagină).";
|
||||
$lang['isntwidbhost'] = "Host-ul bazei de date:";
|
||||
$lang['isntwidbhostdesc'] = "Server-ul DB<br>(IP sau DNS)";
|
||||
$lang['isntwidbmsg'] = "Eroare DB: ";
|
||||
$lang['isntwidbname'] = "Nume DB:";
|
||||
$lang['isntwidbnamedesc'] = "Nume DB";
|
||||
$lang['isntwidbpass'] = "Parolă DB:";
|
||||
$lang['isntwidbpassdesc'] = "Parola pentru a accesa DB";
|
||||
$lang['isntwidbtype'] = "Tipul DB:";
|
||||
$lang['isntwidbtypedesc'] = "Tipul DB<br><br>Trebuie să instalați necesarul de PDO Driver.<br>Pentru mai multe informatii accesați http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "DB User:";
|
||||
$lang['isntwidbusrdesc'] = "User-ul pentru acces la DB";
|
||||
$lang['isntwidel'] = "Vă rugăm să ștergeți fișierul 'install.php' din webserver și deschideți %s să configurați Ranksystem!";
|
||||
$lang['isntwiusr'] = "Utilizator pentru webinterface creat cu succes.";
|
||||
$lang['isntwiusrcr'] = "Creare acces";
|
||||
$lang['isntwiusrdesc'] = "Introduceți un nume de utilizator și o parolă pentru accesul webinterface. Cu webinterface vă puteți configura Ranksytem-ul.";
|
||||
$lang['isntwiusrh'] = "Acces - Webinterface";
|
||||
$lang['listacsg'] = "Servergroup actual";
|
||||
$lang['listcldbid'] = "Client-database-ID";
|
||||
$lang['listexcept'] = "No, cause excepted";
|
||||
$lang['listip'] = "Adresă IP";
|
||||
$lang['listnick'] = "Nume Client";
|
||||
$lang['listnxsg'] = "Următorul servergroup";
|
||||
$lang['listnxup'] = "Următorul rank up";
|
||||
$lang['listrank'] = "rank";
|
||||
$lang['listseen'] = "Văzut ultima dată";
|
||||
$lang['listsuma'] = "sum. timp activ";
|
||||
$lang['listsumi'] = "sum. timpul de inactivitate";
|
||||
$lang['listsumo'] = "sum. timp online";
|
||||
$lang['listuid'] = "unique Client-ID";
|
||||
$lang['login'] = "Logare";
|
||||
$lang['nocount'] = "User-ul %s (Client-ID unic: %s; Client-database-ID %s) este un query-user sau este de mai multe ori on-line ( numai primul număr de conexiune ) - > acest lucru nu va conta !";
|
||||
$lang['noentry'] = "Nu au gasit ..";
|
||||
$lang['pass'] = "Parolă";
|
||||
$lang['queryname'] = "În primul rând Botname deja în uz . Încerc cu al doilea Botname ...";
|
||||
$lang['sccrmcld'] = "User-ul cu unic Client-ID %s scos cu success din baza de date Ranksystem .";
|
||||
$lang['sccupcount'] = "User-ul cu unic Client-ID %s rescrise cu un succes timp rezumat on-line al %s.";
|
||||
$lang['setontime'] = "sum. timp online";
|
||||
$lang['setontimedesc'] = "Introduceți un timp on-line nou rezumat , care ar trebui să fie setat la clienții anteriori selectate . Cu acest vechi rezumat on-line va fi rescris .<br><br>Timpul de sinteză introdus on-line v-a fi luat în considerare pentru rangul sus.";
|
||||
$lang['sgrpadd'] = "Aloca servergroup %s user-ului %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['sgrprerr'] = "S-a întâmplat o problemă cu servergroup utilizatorului %s (unique Client-ID: %s; Client-database-ID %s)!";
|
||||
$lang['sgrprm'] = "S-a șters servergroup %s de la user-ul %s (unique Client-ID: %s; Client-database-ID %s).";
|
||||
$lang['stix0001'] = "Statistică de server";
|
||||
$lang['stix0002'] = "Numărul total de utilizatori";
|
||||
$lang['stix0003'] = "Vezi detalii";
|
||||
$lang['stix0004'] = "Timp on-line al tuturor utilizator / Total";
|
||||
$lang['stix0005'] = "Vedere de sus din toate timpurile";
|
||||
$lang['stix0006'] = "Vedere de sus a lunii";
|
||||
$lang['stix0007'] = "Vedere de sus a săptămânii";
|
||||
$lang['stix0008'] = "Utilizarea serverului";
|
||||
$lang['stix0009'] = "În ultimele 7 zile";
|
||||
$lang['stix0010'] = "În ultimele 30 de zile";
|
||||
$lang['stix0011'] = "În ultimele 24 de ore";
|
||||
$lang['stix0012'] = "Selectare perioadă";
|
||||
$lang['stix0013'] = "Ultima zi";
|
||||
$lang['stix0014'] = "Săptămâna trecută";
|
||||
$lang['stix0015'] = "Luna trecută";
|
||||
$lang['stix0016'] = "Timp activ / inactiv ( tuturor clienților )";
|
||||
$lang['stix0017'] = "Versiunile ( tuturor clienților )";
|
||||
$lang['stix0018'] = "Naționalitățile ( tuturor clienților )";
|
||||
$lang['stix0019'] = "Platforme ( tuturor clienților )";
|
||||
$lang['stix0020'] = "Statisticile curente";
|
||||
$lang['stix0023'] = "Status server";
|
||||
$lang['stix0024'] = "Online";
|
||||
$lang['stix0025'] = "Offline";
|
||||
$lang['stix0026'] = "Clienți (Online / Max)";
|
||||
$lang['stix0027'] = "Număr de canale";
|
||||
$lang['stix0028'] = "Ping mediu pe server";
|
||||
$lang['stix0029'] = "Număr total de octeți primit";
|
||||
$lang['stix0030'] = "Număr total de octeți trimiși";
|
||||
$lang['stix0031'] = "Server uptime";
|
||||
$lang['stix0032'] = "După offline:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Zile, <span id=\"hours\">00</span> Ore, <span id=\"minutes\">00</span> Minute, <span id=\"seconds\">00</span> Secunde";
|
||||
$lang['stix0034'] = "Pierderea medie de pachete";
|
||||
$lang['stix0035'] = "Statisticile generale";
|
||||
$lang['stix0036'] = "Nume Server";
|
||||
$lang['stix0037'] = "Adresa Server(Adresa Host : Port)";
|
||||
$lang['stix0038'] = "Parola Server";
|
||||
$lang['stix0039'] = "Nu (Server-ul este public)";
|
||||
$lang['stix0040'] = "Da (Server este privat)";
|
||||
$lang['stix0041'] = "Server ID";
|
||||
$lang['stix0042'] = "Server platformă";
|
||||
$lang['stix0043'] = "Server versiune";
|
||||
$lang['stix0044'] = "Server creat in data (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Raport la lista de servere";
|
||||
$lang['stix0046'] = "Activat";
|
||||
$lang['stix0047'] = "Nu este activat";
|
||||
$lang['stix0048'] = "Nu sunt suficiente date încă ...";
|
||||
$lang['stix0049'] = "Timp on-line la toți utilizatorii / luna";
|
||||
$lang['stix0050'] = "Timp on-line la toți utilizatorii / săptămână";
|
||||
$lang['stix0051'] = "TeamSpeak nu a reușit , deci nici o data creată...";
|
||||
$lang['stmy0001'] = "Statisticile mele";
|
||||
$lang['stmy0002'] = "Rank";
|
||||
$lang['stmy0003'] = "Database ID:";
|
||||
$lang['stmy0004'] = "Unic ID:";
|
||||
$lang['stmy0005'] = "Conexiuni totale la serverul:";
|
||||
$lang['stmy0006'] = "Inceputul dății pentru statistici:";
|
||||
$lang['stmy0007'] = "Timp total on-line:";
|
||||
$lang['stmy0008'] = "Timp online ultimele 7 zile:";
|
||||
$lang['stmy0009'] = "Timp online ultimele 30 zile:";
|
||||
$lang['stmy0010'] = "Realizări finalizate:";
|
||||
$lang['stmy0011'] = "Timp progres realizare";
|
||||
$lang['stmy0012'] = "Ora: Legendarul";
|
||||
$lang['stmy0013'] = "Pentru că ai un timp online %s ore.";
|
||||
$lang['stmy0014'] = "Progres finalizat";
|
||||
$lang['stmy0015'] = "Ora: Aur";
|
||||
$lang['stmy0016'] = "% completat pentru Legendar";
|
||||
$lang['stmy0017'] = "Ora: Argint";
|
||||
$lang['stmy0018'] = "% completat pentru Aur";
|
||||
$lang['stmy0019'] = "Ora: Bronz";
|
||||
$lang['stmy0020'] = "% completat pentru Argint";
|
||||
$lang['stmy0021'] = "Ora: Ne-rank-at";
|
||||
$lang['stmy0022'] = "% completat pentru Bronz";
|
||||
$lang['stmy0023'] = "Conexiune progres realizare";
|
||||
$lang['stmy0024'] = "Connects: Legendary";
|
||||
$lang['stmy0025'] = "Because You connected %s times to the server.";
|
||||
$lang['stmy0026'] = "Connects: Gold";
|
||||
$lang['stmy0027'] = "Connects: Silver";
|
||||
$lang['stmy0028'] = "Connects: Bronze";
|
||||
$lang['stmy0029'] = "Connects: Unranked";
|
||||
$lang['stmy0030'] = "Progress next servergroup";
|
||||
$lang['stnv0001'] = "Server news";
|
||||
$lang['stnv0002'] = "Close";
|
||||
$lang['stnv0003'] = "Refresh client information";
|
||||
$lang['stnv0004'] = "Only use this refresh, when your TS3 information got changed, such as your TS3 username";
|
||||
$lang['stnv0005'] = "It only works, when you are connected to the TS3 server at the same time";
|
||||
$lang['stnv0006'] = "Refresh";
|
||||
$lang['stnv0007'] = "Battle area - Page content";
|
||||
$lang['stnv0008'] = "You can challenge other users in a battle between two users or two teams.";
|
||||
$lang['stnv0009'] = "While the battle is active the online time of the teams/users will be counted.";
|
||||
$lang['stnv0010'] = "When the battle ends the team/user with the highest online time wins.";
|
||||
$lang['stnv0011'] = "(The regular battling time is 48 hours)";
|
||||
$lang['stnv0012'] = "The winning team/user will recieve a price, which the user can use whenever the user wants.";
|
||||
$lang['stnv0013'] = "It will be displayed on the <a href=\"my_stats.php\">My statistics</a> tab.";
|
||||
$lang['stnv0014'] = "(Could be online time boost(2x) for 8 hours, instant online time (4 hours), etc.";
|
||||
$lang['stnv0015'] = "These boosts can be used for example to climb in the top users of the week.";
|
||||
$lang['stnv0016'] = "Not available";
|
||||
$lang['stnv0017'] = "You are not connected to the TS3 Server, so it can't display any data for you.";
|
||||
$lang['stnv0018'] = "Please connect to the TS3 Server and then Refresh your Session by pressing the blue Refresh Button at the top-right corner.";
|
||||
$lang['stnv0019'] = "My statistics - Page content";
|
||||
$lang['stnv0020'] = "This page contains a overall summary of your personal statistics and activity on the server.";
|
||||
$lang['stnv0021'] = "The informations are collected since the beginning of the Ranksystem, they are not since the beginning of the TeamSpeak server.";
|
||||
$lang['stnv0022'] = "This page receives its values out of a database. So the values might be delayed a bit.";
|
||||
$lang['stnv0023'] = "The sum inside of the donut charts may differ to the amount of 'Total user'. The reason is that this data weren't collected with older versions of the Ranksystem.";
|
||||
$lang['stnv0024'] = "Ranksystem - Statistics";
|
||||
$lang['stnv0025'] = "Limit entries";
|
||||
$lang['stnv0026'] = "all";
|
||||
$lang['stnv0027'] = "The informations on this site could be outdated! It seems the Ranksystem is no more connected to the TeamSpeak.";
|
||||
$lang['stnv0028'] = "(You are not connected to the TS3!)";
|
||||
$lang['stnv0029'] = "List Rankup";
|
||||
$lang['stnv0030'] = "Ranksystem info";
|
||||
$lang['stnv0031'] = "About the search field you can search for pattern in clientname, unique Client-ID and Client-database-ID.";
|
||||
$lang['stnv0032'] = "You can also use a view filter options (see below). Enter the filter also inside the search field.";
|
||||
$lang['stnv0033'] = "Combination of filter and search pattern are possible. Enter first the filter(s) followed without any sign your search pattern.";
|
||||
$lang['stnv0034'] = "Also it is possible to combine multiple filters. Enter this consecutively inside the search field.";
|
||||
$lang['stnv0035'] = "<u>Example:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Show only clients, which are excepted (client, servergroup or channel exception).";
|
||||
$lang['stnv0037'] = "Show only clients, which are not excepted.";
|
||||
$lang['stnv0038'] = "Show only clients, which are online.";
|
||||
$lang['stnv0039'] = "Show only clients, which are not online.";
|
||||
$lang['stnv0040'] = "Show only clients, which are in defined group. Represent the actuel rank/level.<br>Replace <i>GROUPID</i> with the wished servergroup ID.";
|
||||
$lang['stnv0041'] = "Show only clients, which are selected by lastseen.<br>Replace <i>OPERATOR</i> with '<' or '>' or '=' or '!='.<br>And replace <i>TIME</i> with a timestamp or date with format 'Y-m-d H-i' (example: 2016-06-18 20-25).<br>Full example: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Show only clients, which are from defined country.<br>Replace <i>TS3-COUNTRY-CODE</i> with the wished country.<br>For list of codes google for ISO 3166-1 alpha-2";
|
||||
$lang['stri0001'] = "Ranksystem information";
|
||||
$lang['stri0002'] = "What is the Ranksystem?";
|
||||
$lang['stri0003'] = "A TS3 Bot, which automatically grant ranks (servergroups) to user on a TeamSpeak 3 Server for online time or online activity. It also gathers informations and statistics about the user and displays the result on this site.";
|
||||
$lang['stri0004'] = "Who created the Ranksystem?";
|
||||
$lang['stri0005'] = "When the Ranksystem was Created?";
|
||||
$lang['stri0006'] = "First alpha release: 05/10/2014.";
|
||||
$lang['stri0007'] = "First beta release: 01/02/2015.";
|
||||
$lang['stri0008'] = "You can see the newest version on the <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "How was the Ranksystem created?";
|
||||
$lang['stri0010'] = "The Ranksystem is coded in";
|
||||
$lang['stri0011'] = "It uses also the following libraries:";
|
||||
$lang['stri0012'] = "Special Thanks To:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - for russian translation";
|
||||
$lang['stri0014'] = "Bejamin Frost - for initialisation the bootstrap design";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - for italian translation";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - for initialisation arabic translation";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - for initialisation romanian translation";
|
||||
$lang['sttw0001'] = "Top users";
|
||||
$lang['sttw0002'] = "Of the week";
|
||||
$lang['sttw0003'] = "With %s hours online time";
|
||||
$lang['sttw0004'] = "Top 10 compared";
|
||||
$lang['sttw0005'] = "Hours (Defines 100 %)";
|
||||
$lang['sttw0006'] = "%s hours (%s%)";
|
||||
$lang['sttw0007'] = "Top 10 Statistics";
|
||||
$lang['sttw0008'] = "Top 10 vs others in online time";
|
||||
$lang['sttw0009'] = "Top 10 vs others in active time";
|
||||
$lang['sttw0010'] = "Top 10 vs others in inactive time";
|
||||
$lang['sttw0011'] = "Top 10 (in hours)";
|
||||
$lang['sttw0012'] = "Other %s users (in hours)";
|
||||
$lang['sttw0013'] = "With %s hours active time";
|
||||
$lang['sttm0001'] = "Of the month";
|
||||
$lang['stta0001'] = "Of all time";
|
||||
$lang['upinf'] = "A new Version of the Ranksystem is available; Inform clients on server...";
|
||||
$lang['upmsg'] = "\nHey, a new version of the [B]Ranksystem[/B] is available!\n\ncurrent version: %s\n[B]new version: %s[/B]\n\nPlease check out our site for more informations [URL]http://ts-n.net/ranksystem.php[/URL].";
|
||||
$lang['upsucc'] = "Database update successfully executed.";
|
||||
$lang['upuser'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s).";
|
||||
$lang['upuserboost'] = "User %s (unique Client-ID: %s; Client-database-ID %s) gets a new count (sum. online time) of %s (thereof active %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "The unique Client-ID %s couldn't reached on the TeamSpeak!";
|
||||
$lang['upusrinf'] = "User %s was successfully informed.";
|
||||
$lang['user'] = "Username";
|
||||
$lang['wiaction'] = "action";
|
||||
$lang['wiboost'] = "boost";
|
||||
$lang['wiboostdesc'] = "Give an user on your TeamSpeak server a servergroup (have to be created manually), which you can declare here as boost group. Define also a factor which should be used (for example 2x) and a time, how long the boost should be rated.<br>The higher the factor, the faster an user reaches the next higher rank.<br>Is the time expired, the boost servergroup get automatically removed from the concerned user. The time starts running as soon as the user gets the servergroup.<br><br>servergroup ID => factor => time (in seconds)<br><br>Each entry have to separate from next with a comma.<br><br>Example:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>On this an user in servergroup 12 get the factor 2 for the next 6000 seconds, an user in servergroup 13 get the factor 3 for 2500 seconds, and so on...";
|
||||
$lang['wibot1'] = "Ranksystem Bot should be stopped. Check the log below for more information!";
|
||||
$lang['wibot2'] = "Ranksystem Bot should be started. Check the log below for more information!";
|
||||
$lang['wibot3'] = "Ranksystem Bot should be restarted. Check the log below for more information!";
|
||||
@@ -249,45 +252,47 @@ $lang['wibot6'] = "Stop Bot";
|
||||
$lang['wibot7'] = "Restart Bot";
|
||||
$lang['wibot8'] = "Ranksystem log (extract):";
|
||||
$lang['wibot9'] = "Fill out all mandatory fields before starting the Ranksystem Bot!";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Reset the online time of an user, if his TeamSpeak Client-database-ID changed.<br><br>Example:<br>If a clients gets removed from the TeamSpeak server, it gets a new Client-database-ID with the next connect to the server.";
|
||||
$lang['wiconferr'] = "There is an error in the configuration of the Ranksystem. Please go to the webinterface and correct the Core Settings. Especially check the config 'rank up'!";
|
||||
$lang['widaform'] = "Date format";
|
||||
$lang['widaformdesc'] = "Choose the showing date format.<br><br>Example:<br>%a days, %h hours, %i mins, %s secs";
|
||||
$lang['widbcfgsuc'] = "Database configurations saved successfully.";
|
||||
$lang['widbcfgerr'] = "Error while saving the database configurations! Connection failed or writeout error for 'other/dbconfig.php'";
|
||||
$lang['widelcld'] = "delete clients";
|
||||
$lang['widelcldgrp'] = "renew groups";
|
||||
$lang['widelcldgrpdesc'] = "The Ranksystem remember the given servergroups, so it don't need to give/check this with every run of the worker.php again.<br><br>With this function you can remove once time the knowledge of given servergroups. In effect the ranksystem try to give all clients (which are on the TS3 server online) the servergroup of the actual rank.<br>For each client, which gets the group or stay in group, the Ranksystem remember this like described at beginning.<br><br>This function can be helpful, when user are not in the servergroup, they should be for the defined online time.<br><br>Attention: Run this in a moment, where the next few minutes no rankups become due!!! The Ranksystem can't remove the old group, cause it can't remember ;-)";
|
||||
$lang['widelclddesc'] = "Delete the before selected clients out of the Ranksystem database.<br><br>With this deletion are the clients on the TeamSpeak Server untouched.";
|
||||
$lang['widelsg'] = "remove out of servergroups";
|
||||
$lang['widelsgdesc'] = "Choose if the clients should also be removed out of the last known servergroup, when you delete clients out of the Ranksystem database.<br><br>It will only considered servergroups, which concerned the Ranksystem";
|
||||
$lang['wideltime'] = "Deletiontime";
|
||||
$lang['wideltimedesc'] = "Clean old clients out of the Ranksystem database.<br>Entry a time in seconds which a client was not seen to delete it.<br><br>0 - deletes all clients out of the Ranksystem<br><br>The Userdatas on the TeamSpeak server are with this untouched!";
|
||||
$lang['wiexcid'] = "channel exception";
|
||||
$lang['wiexciddesc'] = "A comma separated list of the channel-IDs that are not to participate in the Ranksystem.<br><br>Stay users in one of the listed channels, the time there will be completely ignored. There is neither the online time, yet the idle time counted.<br><br>Sense does this function only with the mode 'online time', cause here could be ignored AFK channels for example.<br>With the mode 'active time', this function is useless because as would be deducted the idle time in AFK rooms and thus not counted anyway.<br><br>Be a user in an excluded channel, it is noted for this period as 'excluded from the Ranksystem'. The user dows no longer appears in the list 'stats/list_rankup.php' unless excluded clients should not be displayed there (Stats Page - excepted client).";
|
||||
$lang['wiexgrp'] = "servergroup exception";
|
||||
$lang['wiexgrpdesc'] = "A comma seperated list of servergroup-IDs, which should not conside for the Ranksystem.<br>User in at least one of this servergroups IDs will be ignored for the rank up.";
|
||||
$lang['wiexuid'] = "client exception";
|
||||
$lang['wiexuiddesc'] = "A comma seperated list of unique Client-IDs, which should not conside for the Ranksystem.<br>User in this list will be ignored for the rank up.";
|
||||
$lang['wigrptime'] = "rank up definition";
|
||||
$lang['wigrptimedesc'] = "Define here after which time a user should get automatically a predefined servergroup.<br><br>time (seconds)=>servergroup ID<br><br>Important for this is the 'online time' or the 'active time' of an user, depending on setting of the mode.<br><br>Each entry have to separate from next with a comma.<br><br>The time must be entered cumulative<br><br>Example:<br>60=>9,120=>10,180=>11<br><br>On this a user get after 60 seconds the servergroup 9, in turn after 60 seconds the servergroup 10, and so on...";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "Core settings";
|
||||
$lang['wihldb'] = "Database settings";
|
||||
$lang['wihlmsg'] = "Message settings";
|
||||
$lang['wihlsty'] = "Stats page settings";
|
||||
$lang['wihlts'] = "TeamSpeak settings";
|
||||
$lang['wihlvs'] = "Various settings";
|
||||
$lang['wiignidle'] = "Ignore idle";
|
||||
$lang['wiignidledesc'] = "Define a period, up to which the idle time of an user will be ignored.<br><br>When a client does not do anything on the server (=idle), this time is noted by the Ranksystem. With this feature the idle time of an user will not be counted until the defined limit. Only when the defined limit is exceeded, it counts from that date for the Ranksystem as idle time.<br><br>This function plays only in conjunction with the mode 'active time' a role.<br><br>Meaning the function is e.g. to evaluate the time of listening in conversations as activity.<br><br>0 = disable the feature<br><br>Example:<br>Ignore idle = 600 (seconds)<br>A client has an idle of 8 minuntes<br>consequence:<br>8 minutes idle are ignored and he therefore receives this time as active time. If the idle time now increased to over 12 minutes so the time is over 10 minutes, and in this case 2 minutes would be counted as idle time.";
|
||||
$lang['wilog'] = "Logpath";
|
||||
$lang['wilogdesc'] = "Path of the log file of the Ranksystem.<br><br>Example:<br>/var/logs/ranksystem/<br><br>Be sure, the webuser has the write-permissions to the logpath.";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Reset the online time of an user, if his TeamSpeak Client-database-ID changed.<br><br>Example:<br>If a clients gets removed from the TeamSpeak server, it gets a new Client-database-ID with the next connect to the server.";
|
||||
$lang['wiconferr'] = "There is an error in the configuration of the Ranksystem. Please go to the webinterface and correct the Core Settings. Especially check the config 'rank up'!";
|
||||
$lang['widaform'] = "Date format";
|
||||
$lang['widaformdesc'] = "Choose the showing date format.<br><br>Example:<br>%a days, %h hours, %i mins, %s secs";
|
||||
$lang['widbcfgsuc'] = "Database configurations saved successfully.";
|
||||
$lang['widbcfgerr'] = "Error while saving the database configurations! Connection failed or writeout error for 'other/dbconfig.php'";
|
||||
$lang['widelcld'] = "delete clients";
|
||||
$lang['widelcldgrp'] = "renew groups";
|
||||
$lang['widelcldgrpdesc'] = "The Ranksystem remember the given servergroups, so it don't need to give/check this with every run of the worker.php again.<br><br>With this function you can remove once time the knowledge of given servergroups. In effect the ranksystem try to give all clients (which are on the TS3 server online) the servergroup of the actual rank.<br>For each client, which gets the group or stay in group, the Ranksystem remember this like described at beginning.<br><br>This function can be helpful, when user are not in the servergroup, they should be for the defined online time.<br><br>Attention: Run this in a moment, where the next few minutes no rankups become due!!! The Ranksystem can't remove the old group, cause it can't remember ;-)";
|
||||
$lang['widelclddesc'] = "Delete the before selected clients out of the Ranksystem database.<br><br>With this deletion are the clients on the TeamSpeak Server untouched.";
|
||||
$lang['widelsg'] = "remove out of servergroups";
|
||||
$lang['widelsgdesc'] = "Choose if the clients should also be removed out of the last known servergroup, when you delete clients out of the Ranksystem database.<br><br>It will only considered servergroups, which concerned the Ranksystem";
|
||||
$lang['wideltime'] = "Deletiontime";
|
||||
$lang['wideltimedesc'] = "Clean old clients out of the Ranksystem database.<br>Entry a time in seconds which a client was not seen to delete it.<br><br>0 - deletes all clients out of the Ranksystem<br><br>The Userdatas on the TeamSpeak server are with this untouched!";
|
||||
$lang['wiexcid'] = "channel exception";
|
||||
$lang['wiexciddesc'] = "A comma separated list of the channel-IDs that are not to participate in the Ranksystem.<br><br>Stay users in one of the listed channels, the time there will be completely ignored. There is neither the online time, yet the idle time counted.<br><br>Sense does this function only with the mode 'online time', cause here could be ignored AFK channels for example.<br>With the mode 'active time', this function is useless because as would be deducted the idle time in AFK rooms and thus not counted anyway.<br><br>Be a user in an excluded channel, it is noted for this period as 'excluded from the Ranksystem'. The user dows no longer appears in the list 'stats/list_rankup.php' unless excluded clients should not be displayed there (Stats Page - excepted client).";
|
||||
$lang['wiexgrp'] = "servergroup exception";
|
||||
$lang['wiexgrpdesc'] = "A comma seperated list of servergroup-IDs, which should not conside for the Ranksystem.<br>User in at least one of this servergroups IDs will be ignored for the rank up.";
|
||||
$lang['wiexuid'] = "client exception";
|
||||
$lang['wiexuiddesc'] = "A comma seperated list of unique Client-IDs, which should not conside for the Ranksystem.<br>User in this list will be ignored for the rank up.";
|
||||
$lang['wigrptime'] = "rank up definition";
|
||||
$lang['wigrptimedesc'] = "Define here after which time a user should get automatically a predefined servergroup.<br><br>time (seconds)=>servergroup ID<br><br>Important for this is the 'online time' or the 'active time' of an user, depending on setting of the mode.<br><br>Each entry have to separate from next with a comma.<br><br>The time must be entered cumulative<br><br>Example:<br>60=>9,120=>10,180=>11<br><br>On this a user get after 60 seconds the servergroup 9, in turn after 60 seconds the servergroup 10, and so on...";
|
||||
$lang['wihladm'] = "List Rankup (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "Core settings";
|
||||
$lang['wihldb'] = "Database settings";
|
||||
$lang['wihlmsg'] = "Message settings";
|
||||
$lang['wihlsty'] = "Stats page settings";
|
||||
$lang['wihlts'] = "TeamSpeak settings";
|
||||
$lang['wihlvs'] = "Various settings";
|
||||
$lang['wiignidle'] = "Ignore idle";
|
||||
$lang['wiignidledesc'] = "Define a period, up to which the idle time of an user will be ignored.<br><br>When a client does not do anything on the server (=idle), this time is noted by the Ranksystem. With this feature the idle time of an user will not be counted until the defined limit. Only when the defined limit is exceeded, it counts from that date for the Ranksystem as idle time.<br><br>This function plays only in conjunction with the mode 'active time' a role.<br><br>Meaning the function is e.g. to evaluate the time of listening in conversations as activity.<br><br>0 = disable the feature<br><br>Example:<br>Ignore idle = 600 (seconds)<br>A client has an idle of 8 minuntes<br>consequence:<br>8 minutes idle are ignored and he therefore receives this time as active time. If the idle time now increased to over 12 minutes so the time is over 10 minutes, and in this case 2 minutes would be counted as idle time.";
|
||||
$lang['wilog'] = "Logpath";
|
||||
$lang['wilogdesc'] = "Path of the log file of the Ranksystem.<br><br>Example:<br>/var/logs/ranksystem/<br><br>Be sure, the webuser has the write-permissions to the logpath.";
|
||||
$lang['wimsgmsg'] = "Message";
|
||||
$lang['wimsgmsgdesc'] = "Define a message, which will be send to an user, when he rises the next higher rank.<br><br>This message will be send via TS3 private message. So every know bb-code could be used, which also works for a normal private message.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Furthermore, the previously spent time can be expressed by arguments:<br>%1\$s - days<br>%2\$s - hours<br>%3\$s - minutes<br>%4\$s - seconds<br><br>Example:<br>Hey,\\nyou reached a higher rank, since you already connected for %1\$s days, %2\$s hours and %3\$s minutes to our TS3 server.[B]Keep it up![/B] ;-)";
|
||||
$lang['wilogout'] = "Logout";
|
||||
$lang['wimsgusr'] = "Rank up notification";
|
||||
$lang['wimsgusrdesc'] = "Inform an user with a private text message about his rank up.";
|
||||
$lang['wimsgmsgdesc'] = "Define a message, which will be send to an user, when he rises the next higher rank.<br><br>This message will be send via TS3 private message. So every know bb-code could be used, which also works for a normal private message.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Furthermore, the previously spent time can be expressed by arguments:<br>%1\$s - days<br>%2\$s - hours<br>%3\$s - minutes<br>%4\$s - seconds<br><br>Example:<br>Hey,\\nyou reached a higher rank, since you already connected for %1\$s days, %2\$s hours and %3\$s minutes to our TS3 server.[B]Keep it up![/B] ;-)";
|
||||
$lang['wimsgsn'] = "Server-News";
|
||||
$lang['wimsgsndesc'] = "Define a message, which will be shown on the /stats/ page as server news.<br><br>You can use default html functions to modify the layout<br><br>Example:<br><b> - <b>for bold</b><br><u> - <u>for underline</u><br><i> - <i>for italic</i><br><br> - for word-wrap (new line)";
|
||||
$lang['wilogout'] = "Logout";
|
||||
$lang['wimsgusr'] = "Rank up notification";
|
||||
$lang['wimsgusrdesc'] = "Inform an user with a private text message about his rank up.";
|
||||
$lang['winav1'] = "TeamSpeak";
|
||||
$lang['winav2'] = "Database";
|
||||
$lang['winav3'] = "Core";
|
||||
@@ -298,67 +303,67 @@ $lang['winav7'] = "Administrate";
|
||||
$lang['winav8'] = "Start / Stop Bot";
|
||||
$lang['winav9'] = "Update available!";
|
||||
$lang['winav10'] = "Please use the webinterface only via %s HTTPS%s An encryption is critical to ensure your privacy and security.%sTo be able to use HTTPS your webserver needs to support an SSL connection.";
|
||||
$lang['wiselcld'] = "select clients";
|
||||
$lang['wiselclddesc'] = "Select the clients by the last known username. For this you only have to start typing.<br>Multiple selections are comma separated, which does the system automatically.<br><br>With the selection you can choose with the next step an action.";
|
||||
$lang['wishcolas'] = "actual servergroup";
|
||||
$lang['wishcolasdesc'] = "Show column 'actual servergroup' in list_rankup.php";
|
||||
$lang['wishcolat'] = "active time";
|
||||
$lang['wishcolatdesc'] = "Show column 'sum. active time' in list_rankup.php";
|
||||
$lang['wishcolcld'] = "Client-name";
|
||||
$lang['wishcolclddesc'] = "Show column 'Client-name' in list_rankup.php";
|
||||
$lang['wishcoldbid'] = "database-ID";
|
||||
$lang['wishcoldbiddesc'] = "Show column 'Client-database-ID' in list_rankup.php";
|
||||
$lang['wishcolit'] = "idle time";
|
||||
$lang['wishcolitdesc'] = "Show column 'sum idle time' in list_rankup.php";
|
||||
$lang['wishcolls'] = "last seen";
|
||||
$lang['wishcollsdesc'] = "Show column 'last seen' in list_rankup.php";
|
||||
$lang['wishcolnx'] = "next rank up";
|
||||
$lang['wishcolnxdesc'] = "Show column 'next rank up' in list_rankup.php";
|
||||
$lang['wishcolot'] = "online time";
|
||||
$lang['wishcolotdesc'] = "Show column 'sum. online time' in list_rankup.php";
|
||||
$lang['wishcolrg'] = "rank";
|
||||
$lang['wishcolrgdesc'] = "Show column 'rank' in list_rankup.php";
|
||||
$lang['wishcolsg'] = "next servergroup";
|
||||
$lang['wishcolsgdesc'] = "Show column 'next servergroup' in list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc'] = "Show column 'unique Client-ID' in list_rankup.php";
|
||||
$lang['wishexcld'] = "excepted client";
|
||||
$lang['wishexclddesc'] = "Show clients in list_rankup.php,<br>which are excluded and therefore not participate in the Ranksystem.";
|
||||
$lang['wishexgrp'] = "excepted groups";
|
||||
$lang['wishexgrpdesc'] = "Show clients in list_rankup.php, which are in the list 'client exception' and shouldn't be conside for the Ranksystem.";
|
||||
$lang['wishhicld'] = "Clients in highest Level";
|
||||
$lang['wishhiclddesc'] = "Show clients in list_rankup.php, which reached the highest level in the Ranksystem.";
|
||||
$lang['wisupidle'] = "Mode";
|
||||
$lang['wisupidledesc'] = "There are two modes, as time can be counted and can then apply for a rank increase. 1) online time: Here the pure online time of the user is taken into account (see column 'sum. online time' in the 'stats/list_rankup.php') 2) active time: This will be deducted from the online time of a user, the inactive time (idle) (see column 'sum. active time' in the 'stats/list_rankup.php'). A change of mode with an already longer running database is not recommended, but may work.";
|
||||
$lang['wisvconf'] = "save";
|
||||
$lang['wisvsuc'] = "Changes successfully saved!";
|
||||
$lang['wisvres'] = "You need to restart the Ranksystem before the changes will take effect!";
|
||||
$lang['witime'] = "Timezone";
|
||||
$lang['witimedesc'] = "Select the timezone the server is hosted.";
|
||||
$lang['wits3dch'] = "Default Channel";
|
||||
$lang['wits3dchdesc'] = "The channel-ID, the bot should connect with.<br><br>The Bot will join this channel after connecting to the TeamSpeak server.";
|
||||
$lang['wits3host'] = "TS3 Hostaddress";
|
||||
$lang['wits3hostdesc'] = "TeamSpeak 3 Server address<br>(IP oder DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "With the Slowmode you can reduce \"spam\" of query commands to the TeamSpeak server. This prevent bans in case of flood.<br>TeamSpeak Query commands get delayed with this function.<br><br>!!! ALSO IT REDUCE THE CPU USAGE !!!<br><br>The activation is not recommended, if not required. The delay increases the duration of the Bot, which makes it imprecisely.";
|
||||
$lang['wits3qnm'] = "Botname";
|
||||
$lang['wits3qnm2'] = "2nd Botname";
|
||||
$lang['wits3qnm2desc'] = "A fallback Botname, if the first one is already in use.";
|
||||
$lang['wits3qnmdesc'] = "The name, with this the query-connection will be established.<br>You can name it free.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Password";
|
||||
$lang['wits3querpwdesc'] = "TeamSpeak 3 query password<br>Password for the query user.";
|
||||
$lang['wits3querusr'] = "TS3 Query-User";
|
||||
$lang['wits3querusrdesc'] = "TeamSpeak 3 query username<br>Default is serveradmin<br>Of course, you can also create an additional serverquery account only for the Ranksystem.<br>The needed permissions you find on:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Port";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 query port<br>Default is 10011 (TCP)<br>If its not default, you should find it in your 'ts3server.ini'.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Port";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 voice port<br>Default is 9987 (UDP)<br>This is the port, you uses also to connect with the TS3 Client.";
|
||||
$lang['wiupcheck'] = "Update info";
|
||||
$lang['wiupcheckdesc'] = "If the Update info is enable, the listed user gets a notification with a private text message, once an update is available.";
|
||||
$lang['wiuptime'] = "Interval";
|
||||
$lang['wiuptimedesc'] = "Enter here how much seconds have to gone till the Ranksystem should check for available updates.<br><br>Attention, for each check the listed user gets a notification. If no one of the listed users is online, the Ranksystem will try to notificate with the next interval.";
|
||||
$lang['wiupuid'] = "Recipient";
|
||||
$lang['wiupuiddesc'] = "A comma separate list of unique Client-IDs, which shoud be informed on the TeamSpeak via private message for available updates.";
|
||||
$lang['wivlang'] = "Language";
|
||||
$lang['wivlangdesc'] = "Choose a default language for the Ranksystem.<br><br>The language is also selectable on the websites for the users and will be stored for the session.";
|
||||
$lang['wiselcld'] = "select clients";
|
||||
$lang['wiselclddesc'] = "Select the clients by the last known username. For this you only have to start typing.<br>Multiple selections are comma separated, which does the system automatically.<br><br>With the selection you can choose with the next step an action.";
|
||||
$lang['wishcolas'] = "actual servergroup";
|
||||
$lang['wishcolasdesc'] = "Show column 'actual servergroup' in list_rankup.php";
|
||||
$lang['wishcolat'] = "active time";
|
||||
$lang['wishcolatdesc'] = "Show column 'sum. active time' in list_rankup.php";
|
||||
$lang['wishcolcld'] = "Client-name";
|
||||
$lang['wishcolclddesc'] = "Show column 'Client-name' in list_rankup.php";
|
||||
$lang['wishcoldbid'] = "database-ID";
|
||||
$lang['wishcoldbiddesc'] = "Show column 'Client-database-ID' in list_rankup.php";
|
||||
$lang['wishcolit'] = "idle time";
|
||||
$lang['wishcolitdesc'] = "Show column 'sum idle time' in list_rankup.php";
|
||||
$lang['wishcolls'] = "last seen";
|
||||
$lang['wishcollsdesc'] = "Show column 'last seen' in list_rankup.php";
|
||||
$lang['wishcolnx'] = "next rank up";
|
||||
$lang['wishcolnxdesc'] = "Show column 'next rank up' in list_rankup.php";
|
||||
$lang['wishcolot'] = "online time";
|
||||
$lang['wishcolotdesc'] = "Show column 'sum. online time' in list_rankup.php";
|
||||
$lang['wishcolrg'] = "rank";
|
||||
$lang['wishcolrgdesc'] = "Show column 'rank' in list_rankup.php";
|
||||
$lang['wishcolsg'] = "next servergroup";
|
||||
$lang['wishcolsgdesc'] = "Show column 'next servergroup' in list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc'] = "Show column 'unique Client-ID' in list_rankup.php";
|
||||
$lang['wishexcld'] = "excepted client";
|
||||
$lang['wishexclddesc'] = "Show clients in list_rankup.php,<br>which are excluded and therefore not participate in the Ranksystem.";
|
||||
$lang['wishexgrp'] = "excepted groups";
|
||||
$lang['wishexgrpdesc'] = "Show clients in list_rankup.php, which are in the list 'client exception' and shouldn't be conside for the Ranksystem.";
|
||||
$lang['wishhicld'] = "Clients in highest Level";
|
||||
$lang['wishhiclddesc'] = "Show clients in list_rankup.php, which reached the highest level in the Ranksystem.";
|
||||
$lang['wisupidle'] = "Mode";
|
||||
$lang['wisupidledesc'] = "There are two modes, as time can be counted and can then apply for a rank increase.<br><br>1) online time: Here the pure online time of the user is taken into account (see column 'sum. online time' in the 'stats/list_rankup.php')<br><br>2) active time: This will be deducted from the online time of a user, the inactive time (idle) (see column 'sum. active time' in the 'stats/list_rankup.php').<br><br>A change of mode with an already longer running database is not recommended, but may work.";
|
||||
$lang['wisvconf'] = "save";
|
||||
$lang['wisvsuc'] = "Changes successfully saved!";
|
||||
$lang['wisvres'] = "You need to restart the Ranksystem before the changes will take effect!";
|
||||
$lang['witime'] = "Timezone";
|
||||
$lang['witimedesc'] = "Select the timezone the server is hosted.";
|
||||
$lang['wits3dch'] = "Default Channel";
|
||||
$lang['wits3dchdesc'] = "The channel-ID, the bot should connect with.<br><br>The Bot will join this channel after connecting to the TeamSpeak server.";
|
||||
$lang['wits3host'] = "TS3 Hostaddress";
|
||||
$lang['wits3hostdesc'] = "TeamSpeak 3 Server address<br>(IP oder DNS)";
|
||||
$lang['wits3sm'] = "Slowmode";
|
||||
$lang['wits3smdesc'] = "With the Slowmode you can reduce \"spam\" of query commands to the TeamSpeak server. This prevent bans in case of flood.<br>TeamSpeak Query commands get delayed with this function.<br><br>!!! ALSO IT REDUCE THE CPU USAGE !!!<br><br>The activation is not recommended, if not required. The delay increases the duration of the Bot, which makes it imprecisely.";
|
||||
$lang['wits3qnm'] = "Botname";
|
||||
$lang['wits3qnm2'] = "2nd Botname";
|
||||
$lang['wits3qnm2desc'] = "A fallback Botname, if the first one is already in use.";
|
||||
$lang['wits3qnmdesc'] = "The name, with this the query-connection will be established.<br>You can name it free.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Password";
|
||||
$lang['wits3querpwdesc'] = "TeamSpeak 3 query password<br>Password for the query user.";
|
||||
$lang['wits3querusr'] = "TS3 Query-User";
|
||||
$lang['wits3querusrdesc'] = "TeamSpeak 3 query username<br>Default is serveradmin<br>Of course, you can also create an additional serverquery account only for the Ranksystem.<br>The needed permissions you find on:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Port";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 query port<br>Default is 10011 (TCP)<br>If its not default, you should find it in your 'ts3server.ini'.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Port";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 voice port<br>Default is 9987 (UDP)<br>This is the port, you uses also to connect with the TS3 Client.";
|
||||
$lang['wiupcheck'] = "Update info";
|
||||
$lang['wiupcheckdesc'] = "If the Update info is enable, the listed user gets a notification with a private text message, once an update is available.";
|
||||
$lang['wiuptime'] = "Interval";
|
||||
$lang['wiuptimedesc'] = "Enter here how much seconds have to gone till the Ranksystem should check for available updates.<br><br>Attention, for each check the listed user gets a notification. If no one of the listed users is online, the Ranksystem will try to notificate with the next interval.";
|
||||
$lang['wiupuid'] = "Recipient";
|
||||
$lang['wiupuiddesc'] = "A comma separate list of unique Client-IDs, which shoud be informed on the TeamSpeak via private message for available updates.";
|
||||
$lang['wivlang'] = "Language";
|
||||
$lang['wivlangdesc'] = "Choose a default language for the Ranksystem.<br><br>The language is also selectable on the websites for the users and will be stored for the session.";
|
||||
?>
|
||||
@@ -1,293 +1,298 @@
|
||||
<?PHP
|
||||
$lang = array();
|
||||
$lang['adduser'] = "Пользователь %s (Уникальный ID клиента: %s; ID в базе данных: %s) неизвестен -> добавлен к Ранг Системе.";
|
||||
$lang['changedbid'] = "Пользователь %s (Уникальный ID клиента: %s) получил новый TeamSpeak Client-database-ID (%s). Обновление старой Client-database-ID (%s) и сбрасываем ему старое время!";
|
||||
$lang['crawl'] = "Сканирование активности подключенных пользователей...";
|
||||
$lang['clean'] = "Сканирование пользователей, которых должен удалить...";
|
||||
$lang['cleanc'] = "Чистка пользователей";
|
||||
$lang['cleancdesc'] = "С включением этой функцией старые пользователи в Ranksystem будут удалены.<br><br>С этой целью, Ranksystem синхронизируется с базой данных TeamSpeak. Пользователи, которых не существует в базе данных TeamSpeak, будут удалены из Ranksystem.<br><br>Эта функция работает когда 'Slowmode' дезактивирован!<br><br><br>Для автоматического регулирования базы данных TeamSpeak 3 можете использоваться ClientCleaner:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "%s пользователя удаленны из базы данных Ranksystem, так как они больше не существуют в базе данных TeamSpeak.";
|
||||
$lang['cleanno'] = "Не найдены пользователи, которые подходили бы для удаления из базы данных.";
|
||||
$lang['cleanp'] = "Период чистки БД RankSystem";
|
||||
$lang['cleanpdesc'] = "Укажите время, которое должно пройти перед запуском 'чистка пользователей'.<br><br>Устанавливается в секундах.<br><br>Для больших баз данных рекомендуется использовать один раз в день.";
|
||||
$lang['cleanrs'] = "Пользователи в базе данных Ranksystem: %s";
|
||||
$lang['cleants'] = "Пользователи найдены в базе данных TeamSpeak: %s (at %s)";
|
||||
$lang['days'] = "%s <small>Дней</small>";
|
||||
$lang['dbconerr'] = "Ошибка подключения к базе данных: ";
|
||||
$lang['delcldgrpif'] = "Ошибка удаления пользователя из группы сервера: %s";
|
||||
$lang['delcldgrpsc'] = "Данные о сервер группах для пользователя %s успешно удалена.";
|
||||
$lang['delclientsif'] = "%s Клиент(ов) удалено из базы данных Ранг Системы!";
|
||||
$lang['delclientssc'] = "%s Клиент(ов) успешно удалено из базы данных Ранг Системы!";
|
||||
$lang['errlogin'] = "Логин или пароль введены неверно! Попробуйте снова...";
|
||||
$lang= array();
|
||||
$lang['adduser'] = "Пользователь %s (Уникальный ID клиента: %s; ID в базе данных: %s) неизвестен -> добавлен к Ранг Системе.";
|
||||
$lang['changedbid'] = "Пользователь %s (Уникальный ID клиента: %s) получил новый TeamSpeak Client-database-ID (%s). Обновление старой Client-database-ID (%s) и сбрасываем ему старое время!";
|
||||
$lang['crawl'] = "Сканирование активности подключенных пользователей...";
|
||||
$lang['clean'] = "Сканирование пользователей, которых должен удалить...";
|
||||
$lang['cleanc'] = "Чистка пользователей";
|
||||
$lang['cleancdesc'] = "С включением этой функцией старые пользователи в Ranksystem будут удалены.<br><br>С этой целью, Ranksystem синхронизируется с базой данных TeamSpeak. Пользователи, которых не существует в базе данных TeamSpeak, будут удалены из Ranksystem.<br><br>Эта функция работает когда 'Slowmode' дезактивирован!<br><br><br>Для автоматического регулирования базы данных TeamSpeak 3 можете использоваться ClientCleaner:<br>http://ts-n.net/clientcleaner.php";
|
||||
$lang['cleandel'] = "%s пользователя удаленны из базы данных Ranksystem, так как они больше не существуют в базе данных TeamSpeak.";
|
||||
$lang['cleanno'] = "Не найдены пользователи, которые подходили бы для удаления из базы данных.";
|
||||
$lang['cleanp'] = "Период чистки БД RankSystem";
|
||||
$lang['cleanpdesc'] = "Укажите время, которое должно пройти перед запуском 'чистка пользователей'.<br><br>Устанавливается в секундах.<br><br>Для больших баз данных рекомендуется использовать один раз в день.";
|
||||
$lang['cleanrs'] = "Пользователи в базе данных Ranksystem: %s";
|
||||
$lang['cleants'] = "Пользователи найдены в базе данных TeamSpeak: %s (at %s)";
|
||||
$lang['days'] = "%s <small>Дней</small>";
|
||||
$lang['dbconerr'] = "Ошибка подключения к базе данных: ";
|
||||
$lang['delcldgrpif'] = "Ошибка удаления пользователя из группы сервера: %s";
|
||||
$lang['delcldgrpsc'] = "Данные о сервер группах для пользователя %s успешно удалена.";
|
||||
$lang['delclientsif'] = "%s Клиент(ов) удалено из базы данных Ранг Системы!";
|
||||
$lang['delclientssc'] = "%s Клиент(ов) успешно удалено из базы данных Ранг Системы!";
|
||||
$lang['errlogin'] = "Логин или пароль введены неверно! Попробуйте снова...";
|
||||
$lang['errlogin2'] = "Brute force protection: Попробуйте повторить через %s секунд!";
|
||||
$lang['errlogin3'] = "Brute force protection: Слишком много попыток. Вы были забанены на 300 секунд!";
|
||||
$lang['error'] = "Ошибка ";
|
||||
$lang['errremgrp'] = "Ошибка удаления пользователя с уникальным идентификатором UID: %s из группы сервера ID: %s!";
|
||||
$lang['errremdb'] = "Ошибка удаления пользователя с уникальным идентификатором UID %s из базы данных Ранг Системы!";
|
||||
$lang['errsel'] = "Ошибка удаления пользователя с уникальным идентификатором UID: %s<br>параметр 'удаление клиентов': %s<br>По условию 'Суммарное время онлайна': %s";
|
||||
$lang['errukwn'] = "Произошла неизвестная ошибка!";
|
||||
$lang['errupcount'] = "Ошибка подсчета суммарного времени подключения %s пользователя с UCI %s";
|
||||
$lang['highest'] = "Достигнут высший ранг";
|
||||
$lang['errlogin3'] = "Brute force protection: От вас поступает слишком много запросов. Вы были забанены на 300 секунд!";
|
||||
$lang['error'] = "Ошибка ";
|
||||
$lang['errremgrp'] = "Ошибка удаления пользователя с уникальным идентификатором UID: %s из группы сервера ID: %s!";
|
||||
$lang['errremdb'] = "Ошибка удаления пользователя с уникальным идентификатором UID %s из базы данных Ранг Системы!";
|
||||
$lang['errsel'] = "Ошибка удаления пользователя с уникальным идентификатором UID: %s<br>параметр 'удаление клиентов': %s<br>По условию 'Суммарное время онлайна': %s";
|
||||
$lang['errukwn'] = "Произошла неизвестная ошибка!";
|
||||
$lang['errupcount'] = "Ошибка подсчета суммарного времени подключения %s пользователя с UCI %s";
|
||||
$lang['highest'] = "Достигнут высший ранг";
|
||||
$lang['install'] = "Установка";
|
||||
$lang['instdb'] = "Установка базы данных";
|
||||
$lang['instdbsuc'] = "База данных %s успешно создана.";
|
||||
$lang['isntwicfg'] = "Не получилось записать настройки базы данных! Пожалуйста, установите права на запись 'other/dbconfig.php' chmod 0777 и попробуйте снова.";
|
||||
$lang['instdb'] = "Установка базы данных";
|
||||
$lang['instdbsuc'] = "База данных %s успешно создана.";
|
||||
$lang['insterr1'] = "ATTENTION: You are trying to install the Ranksystem, but there is already existing a database with the name \"%s\".<br>Due installation this database will be dropped!<br>Be sure you want this. If not, please choose an other database name.";
|
||||
$lang['insterr2'] = "PDO is needed but seems not installed. Install <a href=\"http://php.net/manual/de/pdo.installation.php\" target=\"_blank\">PDO</a> and try it again!";
|
||||
$lang['insterr3'] = "PHP exec function need to be enabled but seems to be disabled. Please enable the PHP <a href=\http://php.net/manual/de/function.exec.php\" target=\"_blank\">exec</a> function and try it again!";
|
||||
$lang['insterr4'] = "Your PHP version (%s) is below 5.5.0. Update your PHP and try it again!";
|
||||
$lang['isntwicfg'] = "Не получилось записать настройки базы данных! Пожалуйста, установите права на запись 'other/dbconfig.php' chmod 0777 (on windows 'full access') и попробуйте снова.";
|
||||
$lang['isntwicfg2'] = "Конфигурирование веб-интерфейса";
|
||||
$lang['isntwichm'] = "Отсутствуют права на запись в папку \"%s\". Пожалуйста, установите на эту папку права chmod 0777 и повторите этот этап заново.";
|
||||
$lang['isntwidbhost'] = "Адрес:";
|
||||
$lang['isntwidbhostdesc'] = "Адрес сервера базы данных<br>(IP or DNS)";
|
||||
$lang['isntwidbmsg'] = "Ошибка базы данных: ";
|
||||
$lang['isntwidbname'] = "Имя:";
|
||||
$lang['isntwidbnamedesc'] = "Название базы данных";
|
||||
$lang['isntwidbpass'] = "Пароль:";
|
||||
$lang['isntwidbpassdesc'] = "Пароль для подключения к базе данных";
|
||||
$lang['isntwidbtype'] = "Тип базы данных:";
|
||||
$lang['isntwidbtypedesc'] = "Тип базы данных<br><br>Для корректной работы у вас должен быть установлен PDO-Драйвер.<br>Для получения дополнительной информации см. http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "Пользователь:";
|
||||
$lang['isntwidbusrdesc'] = "Пользователь с доступом к базе данных";
|
||||
$lang['isntwidel'] = "Пожалуйста, удалите файл 'install.php' Веб-Сервера в целях безопасности! После откройте %s для настройки Системы рангов(RankSystem)!";
|
||||
$lang['isntwiusr'] = "Пользователь Веб-Панели успешно создан.";
|
||||
$lang['isntwiusrcr'] = "Создать создать аккаунт Администратора";
|
||||
$lang['isntwiusrdesc'] = "Введите имя пользователя и пароль для доступа в Веб-Панель. С помощью Веб-Панели вы сможете настроить ранг систему.";
|
||||
$lang['isntwiusrh'] = "Доступ - Веб-Панель";
|
||||
$lang['listacsg'] = "Текущая сервер группа";
|
||||
$lang['listcldbid'] = "ID клиента в базе данных";
|
||||
$lang['listexgrp'] = "Не учитывается Ранг Системой (исключение по группам сервера).";
|
||||
$lang['listexuid'] = "Не учитывается Ранг Системой (исключение по клиентам).";
|
||||
$lang['listip'] = "IP-адрес";
|
||||
$lang['listnick'] = "Никнейм";
|
||||
$lang['listnxsg'] = "Следующая группа ранга";
|
||||
$lang['listnxup'] = "Следующий Ранг через";
|
||||
$lang['listrank'] = "Ранг";
|
||||
$lang['listseen'] = "Последняя активность";
|
||||
$lang['listsuma'] = "Сумм. время активности";
|
||||
$lang['listsumi'] = "Сумм. время простоя";
|
||||
$lang['listsumo'] = "Сумм. время подключения";
|
||||
$lang['listuid'] = "Уникальный ID клиента(UID)";
|
||||
$lang['isntwichm'] = "Отсутствуют права на запись в папку \"%s\". Пожалуйста, установите на эту папку права chmod 0777 (on windows 'full access') и повторите этот этап заново.";
|
||||
$lang['isntwidbhost'] = "Адрес:";
|
||||
$lang['isntwidbhostdesc'] = "Адрес сервера базы данных<br>(IP or DNS)";
|
||||
$lang['isntwidbmsg'] = "Ошибка базы данных: ";
|
||||
$lang['isntwidbname'] = "Имя:";
|
||||
$lang['isntwidbnamedesc'] = "Название базы данных";
|
||||
$lang['isntwidbpass'] = "Пароль:";
|
||||
$lang['isntwidbpassdesc'] = "Пароль для подключения к базе данных";
|
||||
$lang['isntwidbtype'] = "Тип базы данных:";
|
||||
$lang['isntwidbtypedesc'] = "Тип базы данных<br><br>Для корректной работы у вас должен быть установлен PDO-Драйвер.<br>Для получения дополнительной информации см. http://ts-n.net/ranksystem.php";
|
||||
$lang['isntwidbusr'] = "Пользователь:";
|
||||
$lang['isntwidbusrdesc'] = "Пользователь с доступом к базе данных";
|
||||
$lang['isntwidel'] = "Пожалуйста, удалите файл 'install.php' Веб-Сервера в целях безопасности! После откройте %s для настройки Системы рангов(RankSystem)!";
|
||||
$lang['isntwiusr'] = "Пользователь Веб-Панели успешно создан.";
|
||||
$lang['isntwiusrcr'] = "Создать создать аккаунт Администратора";
|
||||
$lang['isntwiusrdesc'] = "Введите имя пользователя и пароль для доступа в Веб-Панель. С помощью Веб-Панели вы сможете настроить ранг систему.";
|
||||
$lang['isntwiusrh'] = "Доступ - Веб-Панель";
|
||||
$lang['listacsg'] = "Текущая сервер группа";
|
||||
$lang['listcldbid'] = "ID клиента в базе данных";
|
||||
$lang['listexcept'] = "No, cause excepted";
|
||||
$lang['listip'] = "IP-адрес";
|
||||
$lang['listnick'] = "Никнейм";
|
||||
$lang['listnxsg'] = "Следующая группа ранга";
|
||||
$lang['listnxup'] = "Следующий Ранг через";
|
||||
$lang['listrank'] = "Ранг";
|
||||
$lang['listseen'] = "Последняя активность";
|
||||
$lang['listsuma'] = "Сумм. время активности";
|
||||
$lang['listsumi'] = "Сумм. время простоя";
|
||||
$lang['listsumo'] = "Сумм. время подключения";
|
||||
$lang['listuid'] = "Уникальный ID клиента(UID)";
|
||||
$lang['login'] = "Авторизоваться";
|
||||
$lang['nocount'] = "Пользователь %s (Уникальный Клиент ID: %s; Клиент ID %s) является query-пользователем -> не будет учитываться!";
|
||||
$lang['noentry'] = "Записей не найдено..";
|
||||
$lang['pass'] = "Пароль";
|
||||
$lang['queryname'] = "Первый никнейм для бота уже занят другим пользователем. Пробуем использовать второй никнейм...";
|
||||
$lang['sccrmcld'] = "Пользователь с уникальным ID %s успешно удален из базы данных Ранг Системы.";
|
||||
$lang['sccupcount'] = "Пользователь с уникальным ID %s успешно переписан с итоговым временем онлайн %s.";
|
||||
$lang['setontime'] = "Правка накопленного времени";
|
||||
$lang['setontimedesc'] = "Укажите новое время в секундах, которое нужно задать выбранным клиентам. <br><br>Указанное время подключения будет учтено Ранг Системой и пользователь будет награжден новым Рангом, если он достиг его.";
|
||||
$lang['sgrpadd'] = "Выдана сервер группа %s пользователю %s (Уникальный ID клиента: %s; ID в базе данных: %s).";
|
||||
$lang['sgrprerr'] = "Что-то пошло не так, проблема с сервер группой пользователя %s (Уникальный ID клиента:: %s; ID в базе данных %s)!";
|
||||
$lang['sgrprm'] = "С пользователя %s (Уникальный ID клиента: %s; ID в базе данных: %s) удалена сервер-группа %s.";
|
||||
$lang['stix0001'] = "Статистика сервера";
|
||||
$lang['stix0002'] = "Пользователей зарегистрировано в базе RankSystem";
|
||||
$lang['stix0003'] = "Посмотреть подробнее";
|
||||
$lang['stix0004'] = "Общий накопленный онлайн за всё время";
|
||||
$lang['stix0005'] = "Топ онлайна за всё время";
|
||||
$lang['stix0006'] = "Топ онлайна за месяц";
|
||||
$lang['stix0007'] = "Топ онлайна за неделю";
|
||||
$lang['stix0008'] = "Активность сервера";
|
||||
$lang['stix0009'] = "За последние 7 дней";
|
||||
$lang['stix0010'] = "За последние 30 дней";
|
||||
$lang['stix0011'] = "За последние 24 часа";
|
||||
$lang['stix0012'] = "Выберите период";
|
||||
$lang['stix0013'] = "За день";
|
||||
$lang['stix0014'] = "За неделю";
|
||||
$lang['stix0015'] = "За месяц";
|
||||
$lang['stix0016'] = "Соотнош. активн./AFK";
|
||||
$lang['stix0017'] = "Версии клиентов";
|
||||
$lang['stix0018'] = "Рейтинг стран";
|
||||
$lang['stix0019'] = "Популярные платформы";
|
||||
$lang['stix0020'] = "Текущая статистика";
|
||||
$lang['stix0023'] = "Статус сервера";
|
||||
$lang['stix0024'] = "Активен";
|
||||
$lang['stix0025'] = "Неактивен";
|
||||
$lang['stix0026'] = "Пользователей (В сети / Вмещается)";
|
||||
$lang['stix0027'] = "Количество каналов";
|
||||
$lang['stix0028'] = "Средний пинг на сервере";
|
||||
$lang['stix0029'] =" Всего байтов получено";
|
||||
$lang['stix0030'] = "Всего байтов отправлено";
|
||||
$lang['stix0031'] = "Сервер онлайн";
|
||||
$lang['stix0032'] = "Находится в оффлайне:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Дней, <span id=\"hours\">00</span> Часов, <span id=\"minutes\">00</span> Мин., <span id=\"seconds\">00</span> Сек.";
|
||||
$lang['stix0034'] = "Средняя потеря пакетов";
|
||||
$lang['stix0035'] = "Информация о сервере";
|
||||
$lang['stix0036'] = "Название сервера";
|
||||
$lang['stix0037'] = "Адрес сервера (IP : Порт)";
|
||||
$lang['stix0038'] = "Защищен паролем";
|
||||
$lang['stix0039'] = "Нет (Публичный сервер)";
|
||||
$lang['stix0040'] = "Да (Приватный сервер)";
|
||||
$lang['stix0041'] = "ID сервера";
|
||||
$lang['stix0042'] = "Серверная платформа";
|
||||
$lang['stix0043'] = "Версия сервера";
|
||||
$lang['stix0044'] = "Дата создания (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Видимость в глобал. списке";
|
||||
$lang['stix0046'] = "Отображается";
|
||||
$lang['stix0047'] = "Не отображается";
|
||||
$lang['stix0048'] = "Нет информации...";
|
||||
$lang['stix0049'] = "Общий накопленный онлайн за месяц";
|
||||
$lang['stix0050'] = "Общий накопленный онлайн за неделю";
|
||||
$lang['stix0051'] = "Ошибка при получении даты";
|
||||
$lang['stmy0001'] = "Моя статистика";
|
||||
$lang['stmy0002'] = "Ранг";
|
||||
$lang['stmy0003'] = "ID в базе данных:";
|
||||
$lang['stmy0004'] = "Уникальный ID(UID):";
|
||||
$lang['stmy0005'] = "Всего подключений к серверу:";
|
||||
$lang['stmy0006'] = "Занесён в базу статистики";
|
||||
$lang['stmy0007'] = "Проведенное время на сервере:";
|
||||
$lang['stmy0008'] = "Онлайн за 7 дней:";
|
||||
$lang['stmy0009'] = "Онлайн за 30 дней:";
|
||||
$lang['stmy0010'] = "Получено достижений:";
|
||||
$lang['stmy0011'] = "Достижение за онлайн на сервере";
|
||||
$lang['stmy0012'] = "Уровень: Легенда";
|
||||
$lang['stmy0013'] = "Вы провели в онлайне на сервере %s часа(ов).";
|
||||
$lang['stmy0014'] = "Полностью выполнена вся цепочка";
|
||||
$lang['stmy0015'] = "Уровень: Золото";
|
||||
$lang['stmy0016'] = "% завершено до получения уровня \"Легенда\"";
|
||||
$lang['stmy0017'] = "Уровень: Серебро";
|
||||
$lang['stmy0018'] = "% завершено до получения уровня \"Золото\"";
|
||||
$lang['stmy0019'] = "Уровень: Бронза";
|
||||
$lang['stmy0020'] = "% завершено до получения уровня \"Серебро\"";
|
||||
$lang['stmy0021'] = "Уровень: Без достижений";
|
||||
$lang['stmy0022'] = "% завершено до получения уровня \"Бронза\"";
|
||||
$lang['stmy0023'] = "Достижение за количество подключений";
|
||||
$lang['stmy0024'] = "Уровень: Легенда";
|
||||
$lang['stmy0025'] = "Всего ваших подключений к серверу: %s раз.";
|
||||
$lang['stmy0026'] = "Уровень: Золото";
|
||||
$lang['stmy0027'] = "Уровень: Серебро";
|
||||
$lang['stmy0028'] = "Уровень: Бронза";
|
||||
$lang['stmy0029'] = "Уровень: Без достижений";
|
||||
$lang['stmy0030'] = "Прогресс до следующего ранга на сервере";
|
||||
$lang['stnv0001'] = "Наши новости";
|
||||
$lang['stnv0002'] = "Закрыть";
|
||||
$lang['stnv0003'] = "Обновление информации о клиенте";
|
||||
$lang['stnv0004'] = "Используйте это, если хотите чтобы обновилась информация о вас. К примеру, вы зашли под другим аккаунтом на сервер TeamSpeak и хотите увидеть его статистику.";
|
||||
$lang['stnv0005'] = "Это работает только если вы подключены к серверу TeamSpeak в данный момент.";
|
||||
$lang['stnv0006'] = "Обновить";
|
||||
$lang['stnv0007'] = "Battle area - Содержимое";
|
||||
$lang['stnv0008'] = "Вы можете создать состязание между двумя пользователями или командами.";
|
||||
$lang['stnv0009'] = "Во время \"Битвы\" подсчитывается время, проведенное на сервере у обеих команд или игроков.";
|
||||
$lang['stnv0010'] = "Для победы необходимо набрать больше времени в онлайне, чем команда противника.";
|
||||
$lang['stnv0011'] = "(Продолжительность \"Битвы\" - 48 часов)";
|
||||
$lang['stnv0012'] = "Команда победителей получает приз, который пользователь может затем использовать.";
|
||||
$lang['stnv0013'] = "Полученный приз будет отображаться в вкладке<a href=\"my_stats.php\">Моя статистика</a>.";
|
||||
$lang['stnv0014'] = "(Это может быть множитель времени(2x) на 8 часов или же бонус, в виде прибавки к основному времени (4 часа), и т.д.";
|
||||
$lang['stnv0015'] = "Также, \"множители времени\" можно использовать для поднятия себя в рейтинге пользователей за неделю/месяц";
|
||||
$lang['stnv0016'] = "Недоступно";
|
||||
$lang['stnv0017'] = "Для доступа к этим данным необходимо, чтобы вы подключились к серверу TeamSpeak";
|
||||
$lang['stnv0018'] = "Пожалуйста, подключитесь к TeamSpeak серверу и обновите вашу сессию, путём нажатия синей кнопки в верхнем правом углу браузера.";
|
||||
$lang['stnv0019'] = "Статистика сервера - содержимое";
|
||||
$lang['stnv0020'] = "Эта страница содержит информацию о вашей статистике и активности на сервере.";
|
||||
$lang['stnv0021'] = "Большинство этой информации было собрано с момента начального старта системы RankSystem, никак не с момента первого запуска TeamSpeak сервера.";
|
||||
$lang['stnv0022'] = "Данная информация получена из базы данных RankSystem и может отличаться от той, которая хранится в базе данных TeamSpeak.";
|
||||
$lang['stnv0023'] = "К тому же, информация внутри диаграмм может расходиться с реальными цифрами из базы данных TeamSpeak 3. Это связано с тем, что старые версии RankSystem не собирали часть той информации, которая используется сейчас.";
|
||||
$lang['stnv0024'] = "RankSystem — статистика TeamSpeak 3 сервера";
|
||||
$lang['stnv0025'] = "Ограничение списка";
|
||||
$lang['stnv0026'] = "Все";
|
||||
$lang['stnv0027'] = "Информация на сайте может быть устаревшей! Кажется,\"система рангов\" больше не подключена к TeamSpeak 3 серверу. Потеряно соединение?";
|
||||
$lang['stnv0028'] = "(Вы не подключены к TS3!)";
|
||||
$lang['stnv0029'] = "Общая статистика";
|
||||
$lang['stnv0030'] = "О RankSystem";
|
||||
$lang['stnv0031'] = "Поиск также поддерживает шаблоны: никнейм пользователя, уникальный ID(UID) и ID клиента в базе данных.";
|
||||
$lang['stnv0032'] = "Вы также можете использовать фильтр запроса (смотрите ниже). Для этого введите его в поисковое поле.";
|
||||
$lang['stnv0033'] = "Также допустимы комбинации шаблонов и фильтров. Для этого введите первым фильтр, за ним без пробелов шаблон.";
|
||||
$lang['stnv0034'] = "Это позволяет комбинировать множество фильтров, вводить которые необходимо последовательно.";
|
||||
$lang['stnv0035'] = "<u>Пример:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Показывать только клиентов находящихся в исключении (клиентов, групп сервера или исключение канала).";
|
||||
$lang['stnv0037'] = "Показывать только клиентов не находящихся в исключении клиентов";
|
||||
$lang['stnv0038'] = "Показывать только клиентов находящихся в онлайне";
|
||||
$lang['stnv0039'] = "Показывать только клиентов не находящихся в онлайне";
|
||||
$lang['stnv0040'] = "Показывать только клиентов в указанных группах, она же - выборка юзеров по рангам<br>Замените <i>GROUPID</i> на желаемые ID группы ранга.";
|
||||
$lang['stnv0041'] = "Показать клиентов, удовлетворяющих поисковому запросу по дате последнего посещения сервера.<br>Замените <i>OPERATOR</i> на '<' или '>' или '=' или '!='.<br>Также замените <i>TIME</i> на желаемую дату поиска в формате 'Y-m-d H-i'(год-месяц-день час-минута) (пример: 2016-06-18 20-25).<br>Более подробный пример запроса: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Показывать только клиентов из указанной страны.<br>Замените <i>TS3-COUNTRY-CODE</i> на желаемый код страны.<br>Коды стран вы можете взять <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\">Здесь(Википедия)</a>";
|
||||
$lang['stri0001'] = "Информация о системе рангов";
|
||||
$lang['stri0002'] = "Что такое TSN Ranksystem?";
|
||||
$lang['stri0003'] = "Удобная система, позволяющая создать на сервере TeamSpeak 3 систему рангов-поощрений, основанную на времени, которое пользователи проводят на сервере. Ко всему прочему, она также занимается сбором информации о пользователях и последующим её отображением на сайте.";
|
||||
$lang['stri0004'] = "Кто является её разработчиком?";
|
||||
$lang['stri0005'] = "Когда была создана TSN Ranksystem?";
|
||||
$lang['stri0006'] = "Альфа-релиз: 05/10/2014.";
|
||||
$lang['stri0007'] = "Бета-релиз: 01/02/2015.";
|
||||
$lang['stri0008'] = "Вы можете найти новую версию на сайте: <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "Как создавалась TSN Ranksystem?";
|
||||
$lang['stri0010'] = "\"Система рангов\" разрабатывалась на языке";
|
||||
$lang['stri0011'] = "При создании использовался следующий набор инструментов:";
|
||||
$lang['stri0012'] = "Особая благодарность:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - За русскоязычный перевод текста.";
|
||||
$lang['stri0014'] = "Bejamin Frost - За помощь в создании дизайна сайта с помощью Bootstrap.";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - За перевод интерфейса на итальянский.";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - для инициирования перевода на арабский язык";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - для инициирования перевода румынский";
|
||||
$lang['sttw0001'] = "Рейтинг пользователей";
|
||||
$lang['sttw0002'] = "Лучшие за неделю";
|
||||
$lang['sttw0003'] = "Набрал %s часов онлайна";
|
||||
$lang['sttw0004'] = "Топ-10 в графике(Разрыв между участниками)";
|
||||
$lang['sttw0005'] = "Часов (Представляет собой 100 %)";
|
||||
$lang['sttw0006'] = "%s часов (%s%)";
|
||||
$lang['sttw0007'] = "Участники топ-10 в сравнении";
|
||||
$lang['sttw0008'] = "Топ-10 Vs остальные по времени онлайн";
|
||||
$lang['sttw0009'] = "Топ-10 Vs остальные по активности";
|
||||
$lang['sttw0010'] = "Tоп-10 Vs остальные по времени оффлайн";
|
||||
$lang['sttw0011'] = "Топ-10 в графике";
|
||||
$lang['sttw0012'] = "Остальные %s клиенты (в часах)";
|
||||
$lang['sttw0013'] = "С %s Часами аквтиности";
|
||||
$lang['sttm0001'] = "Лучшие за месяц";
|
||||
$lang['stta0001'] = "Лучшие за все время";
|
||||
$lang['upinf'] = "Доступна новая версия Ранг Системы; Сообщаю Клиентам на Сервере...";
|
||||
$lang['upmsg'] = "\nЭй, доступна новая версия [B]Ранг Системы[/B]!\n\nТекущая версия: %s\n[B]новая версия: %s[/B]\n\nПожалуйста, посетите наш сайт [URL]http://ts-n.net/ranksystem.php[/URL] для получения более подробной информации.";
|
||||
$lang['upsucc'] = "Обновление базы данных успешно выполнено.";
|
||||
$lang['upuser'] = "Пользователь %s (Никнейм: %s; UID в базе данных: %s) получает новое количество (сумм. время подключения) из %s (активное время онлайна %s).";
|
||||
$lang['upuserboost'] = "Пользователь %s (Никнейм: %s; UID в базе данных: %s) получает новое количество (сумм. время подключения) из %s (активное время онлайна %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "Пользователь с уникальным ID %s не был найден (не правильно указан Уникальный ID или пользователь в настоящий момент не подключен к серверу Teamspeak)!";
|
||||
$lang['upusrinf'] = "Пользователь %s был успешно информирован.";
|
||||
$lang['user'] = "Логин";
|
||||
$lang['wiaction'] = "Выполнить";
|
||||
$lang['wiboost'] = "Бустер онлайна";
|
||||
$lang['wiboostdesc'] = "Вы можете указать здесь ID групп сервера(Их необходимо создать на TeamSpeak сервере заранее), выступающие в роли множителя накапливаемого времени, которое получает пользователь за онлайн на сервере. Также вы должны указать на сколько должно умножаться время и период действия группы-множителя. Чем больше множитель времени, тем быстрее пользователь достигнет следующий ранг. По окончанию действия множителя, группа-множитель автоматически снимается с пользователя. Пример указания группы-множителя следующий: ID группы => множитель => время(В секундах). Если вы хотите сделать две такие группы, то просто разделите их между собой запятой.<br><br>Пример:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>Из примера выше следует, что группа с ID 12 дает множитель времени х2 на 6000 секунд, а группа 13 имеет множитель х3 на 2500 секунд. 14 группа соответственно, имеет множитель х5 на 600 секунд.";
|
||||
$lang['nocount'] = "Пользователь %s (Уникальный Клиент ID: %s; Клиент ID %s) является query-пользователем -> не будет учитываться!";
|
||||
$lang['noentry'] = "Записей не найдено..";
|
||||
$lang['pass'] = "Пароль";
|
||||
$lang['queryname'] = "Первый никнейм для бота уже занят другим пользователем. Пробуем использовать второй никнейм...";
|
||||
$lang['sccrmcld'] = "Пользователь с уникальным ID %s успешно удален из базы данных Ранг Системы.";
|
||||
$lang['sccupcount'] = "Пользователь с уникальным ID %s успешно переписан с итоговым временем онлайн %s.";
|
||||
$lang['setontime'] = "Правка накопленного времени";
|
||||
$lang['setontimedesc'] = "Укажите новое время в секундах, которое нужно задать выбранным клиентам. <br><br>Указанное время подключения будет учтено RankSystem и пользователь будет награжден новым Рангом, если он достиг его.";
|
||||
$lang['sgrpadd'] = "Выдана группа сервера №%s пользователю %s (Уникальный ID клиента: %s; ID в базе данных: %s).";
|
||||
$lang['sgrprerr'] = "Что-то пошло не так! Проблема с группой сервера %s у пользователя (UID клиента: %s; ID в базе данных %s)!";
|
||||
$lang['sgrprm'] = "С пользователя %s (Уникальный ID клиента: %s; ID в базе данных: %s) удалена сервер-группа %s.";
|
||||
$lang['stix0001'] = "Статистика сервера";
|
||||
$lang['stix0002'] = "Пользователей зарегистрировано в базе RankSystem";
|
||||
$lang['stix0003'] = "Посмотреть подробнее";
|
||||
$lang['stix0004'] = "Общий накопленный онлайн за всё время";
|
||||
$lang['stix0005'] = "Топ онлайна за всё время";
|
||||
$lang['stix0006'] = "Топ онлайна за месяц";
|
||||
$lang['stix0007'] = "Топ онлайна за неделю";
|
||||
$lang['stix0008'] = "Активность сервера";
|
||||
$lang['stix0009'] = "За последние 7 дней";
|
||||
$lang['stix0010'] = "За последние 30 дней";
|
||||
$lang['stix0011'] = "За последние 24 часа";
|
||||
$lang['stix0012'] = "Выберите период";
|
||||
$lang['stix0013'] = "За день";
|
||||
$lang['stix0014'] = "За неделю";
|
||||
$lang['stix0015'] = "За месяц";
|
||||
$lang['stix0016'] = "Соотнош. активн./AFK";
|
||||
$lang['stix0017'] = "Версии клиентов";
|
||||
$lang['stix0018'] = "Рейтинг стран";
|
||||
$lang['stix0019'] = "Популярные платформы";
|
||||
$lang['stix0020'] = "Текущая статистика";
|
||||
$lang['stix0023'] = "Статус сервера";
|
||||
$lang['stix0024'] = "Активен";
|
||||
$lang['stix0025'] = "Неактивен";
|
||||
$lang['stix0026'] = "Пользователей (В сети / Вмещается)";
|
||||
$lang['stix0027'] = "Количество каналов";
|
||||
$lang['stix0028'] = "Средний пинг на сервере";
|
||||
$lang['stix0029'] =" Всего байтов получено";
|
||||
$lang['stix0030'] = "Всего байтов отправлено";
|
||||
$lang['stix0031'] = "Сервер онлайн";
|
||||
$lang['stix0032'] = "Находится в оффлайне:";
|
||||
$lang['stix0033'] = "<span id=\"days\">00</span> Дней, <span id=\"hours\">00</span> Часов, <span id=\"minutes\">00</span> Мин., <span id=\"seconds\">00</span> Сек.";
|
||||
$lang['stix0034'] = "Средняя потеря пакетов";
|
||||
$lang['stix0035'] = "Информация о сервере";
|
||||
$lang['stix0036'] = "Название сервера";
|
||||
$lang['stix0037'] = "Адрес сервера (IP : Порт)";
|
||||
$lang['stix0038'] = "Защищен паролем";
|
||||
$lang['stix0039'] = "Нет (Публичный сервер)";
|
||||
$lang['stix0040'] = "Да (Приватный сервер)";
|
||||
$lang['stix0041'] = "ID сервера";
|
||||
$lang['stix0042'] = "Серверная платформа";
|
||||
$lang['stix0043'] = "Версия сервера";
|
||||
$lang['stix0044'] = "Дата создания (dd/mm/yyyy)";
|
||||
$lang['stix0045'] = "Видимость в глобал. списке";
|
||||
$lang['stix0046'] = "Отображается";
|
||||
$lang['stix0047'] = "Не отображается";
|
||||
$lang['stix0048'] = "Нет информации...";
|
||||
$lang['stix0049'] = "Общий накопленный онлайн за месяц";
|
||||
$lang['stix0050'] = "Общий накопленный онлайн за неделю";
|
||||
$lang['stix0051'] = "Ошибка при получении даты";
|
||||
$lang['stmy0001'] = "Моя статистика";
|
||||
$lang['stmy0002'] = "Ранг";
|
||||
$lang['stmy0003'] = "ID в базе данных:";
|
||||
$lang['stmy0004'] = "Уникальный ID(UID):";
|
||||
$lang['stmy0005'] = "Всего подключений к серверу:";
|
||||
$lang['stmy0006'] = "Занесён в базу статистики";
|
||||
$lang['stmy0007'] = "Проведенное время на сервере:";
|
||||
$lang['stmy0008'] = "Онлайн за 7 дней:";
|
||||
$lang['stmy0009'] = "Онлайн за 30 дней:";
|
||||
$lang['stmy0010'] = "Получено достижений:";
|
||||
$lang['stmy0011'] = "Достижение за онлайн на сервере";
|
||||
$lang['stmy0012'] = "Уровень: Легенда";
|
||||
$lang['stmy0013'] = "Вы провели в онлайне на сервере %s часа(ов).";
|
||||
$lang['stmy0014'] = "Полностью выполнена вся цепочка";
|
||||
$lang['stmy0015'] = "Уровень: Золото";
|
||||
$lang['stmy0016'] = "% завершено до получения уровня \"Легенда\"";
|
||||
$lang['stmy0017'] = "Уровень: Серебро";
|
||||
$lang['stmy0018'] = "% завершено до получения уровня \"Золото\"";
|
||||
$lang['stmy0019'] = "Уровень: Бронза";
|
||||
$lang['stmy0020'] = "% завершено до получения уровня \"Серебро\"";
|
||||
$lang['stmy0021'] = "Уровень: Без достижений";
|
||||
$lang['stmy0022'] = "% завершено до получения уровня \"Бронза\"";
|
||||
$lang['stmy0023'] = "Достижение за количество подключений";
|
||||
$lang['stmy0024'] = "Уровень: Легенда";
|
||||
$lang['stmy0025'] = "Всего ваших подключений к серверу: %s раз.";
|
||||
$lang['stmy0026'] = "Уровень: Золото";
|
||||
$lang['stmy0027'] = "Уровень: Серебро";
|
||||
$lang['stmy0028'] = "Уровень: Бронза";
|
||||
$lang['stmy0029'] = "Уровень: Без достижений";
|
||||
$lang['stmy0030'] = "Прогресс до следующего ранга на сервере";
|
||||
$lang['stnv0001'] = "Наши новости";
|
||||
$lang['stnv0002'] = "Закрыть";
|
||||
$lang['stnv0003'] = "Обновление информации о клиенте";
|
||||
$lang['stnv0004'] = "Используйте это, если хотите чтобы обновилась информация о вас. К примеру, вы зашли под другим аккаунтом на сервер TeamSpeak и хотите увидеть его статистику.";
|
||||
$lang['stnv0005'] = "Это работает только если вы подключены к серверу TeamSpeak в данный момент.";
|
||||
$lang['stnv0006'] = "Обновить";
|
||||
$lang['stnv0007'] = "Battle area - Содержимое";
|
||||
$lang['stnv0008'] = "Вы можете создать состязание между двумя пользователями или командами.";
|
||||
$lang['stnv0009'] = "Во время \"Битвы\" подсчитывается время, проведенное на сервере у обеих команд или игроков.";
|
||||
$lang['stnv0010'] = "Для победы необходимо набрать больше времени в онлайне, чем команда противника.";
|
||||
$lang['stnv0011'] = "(Продолжительность \"Битвы\" - 48 часов)";
|
||||
$lang['stnv0012'] = "Команда победителей получает приз, который пользователь может затем использовать.";
|
||||
$lang['stnv0013'] = "Полученный приз будет отображаться в вкладке<a href=\"my_stats.php\">Моя статистика</a>.";
|
||||
$lang['stnv0014'] = "(Это может быть множитель времени(2x) на 8 часов или же бонус, в виде прибавки к основному времени (4 часа), и т.д.";
|
||||
$lang['stnv0015'] = "Также, \"множители времени\" можно использовать для поднятия себя в рейтинге пользователей за неделю/месяц";
|
||||
$lang['stnv0016'] = "Недоступно";
|
||||
$lang['stnv0017'] = "Для доступа к этим данным необходимо, чтобы вы подключились к серверу TeamSpeak";
|
||||
$lang['stnv0018'] = "Пожалуйста, подключитесь к TeamSpeak серверу и обновите вашу сессию, путём нажатия синей кнопки в верхнем правом углу браузера.";
|
||||
$lang['stnv0019'] = "Статистика сервера - содержимое";
|
||||
$lang['stnv0020'] = "Эта страница содержит информацию о вашей статистике и активности на сервере.";
|
||||
$lang['stnv0021'] = "Большинство этой информации было собрано с момента начального старта системы RankSystem, никак не с момента первого запуска TeamSpeak сервера.";
|
||||
$lang['stnv0022'] = "Данная информация получена из базы данных RankSystem и может отличаться от той, которая хранится в базе данных TeamSpeak.";
|
||||
$lang['stnv0023'] = "К тому же, информация внутри диаграмм может расходиться с реальными цифрами из базы данных TeamSpeak 3. Это связано с тем, что старые версии RankSystem не собирали часть той информации, которая используется сейчас.";
|
||||
$lang['stnv0024'] = "RankSystem — статистика TeamSpeak 3 сервера";
|
||||
$lang['stnv0025'] = "Ограничение списка";
|
||||
$lang['stnv0026'] = "Все";
|
||||
$lang['stnv0027'] = "Информация на сайте может быть устаревшей! Кажется,\"RankSystem\" больше не подключена к TeamSpeak 3 серверу. Потеряно соединение?";
|
||||
$lang['stnv0028'] = "(Вы не подключены к TS3!)";
|
||||
$lang['stnv0029'] = "Общая статистика";
|
||||
$lang['stnv0030'] = "О RankSystem";
|
||||
$lang['stnv0031'] = "Поиск также поддерживает шаблоны: никнейм пользователя, уникальный ID(UID) и ID клиента в базе данных.";
|
||||
$lang['stnv0032'] = "Вы также можете использовать фильтр запроса (смотрите ниже). Для этого введите его в поисковое поле.";
|
||||
$lang['stnv0033'] = "Также допустимы комбинации шаблонов и фильтров. Для этого введите первым фильтр, за ним без пробелов шаблон.";
|
||||
$lang['stnv0034'] = "Это позволяет комбинировать множество фильтров, вводить которые необходимо последовательно.";
|
||||
$lang['stnv0035'] = "<u>Пример:</u><br>filter:nonexcepted:TeamSpeakUser";
|
||||
$lang['stnv0036'] = "Показывать только клиентов находящихся в исключении (клиентов, групп сервера или исключение канала).";
|
||||
$lang['stnv0037'] = "Показывать только клиентов не находящихся в исключении клиентов";
|
||||
$lang['stnv0038'] = "Показывать только клиентов находящихся в онлайне";
|
||||
$lang['stnv0039'] = "Показывать только клиентов не находящихся в онлайне";
|
||||
$lang['stnv0040'] = "Показывать только клиентов в указанных группах, она же - выборка юзеров по рангам<br>Замените <i>GROUPID</i> на желаемые ID группы ранга.";
|
||||
$lang['stnv0041'] = "Показать клиентов, удовлетворяющих поисковому запросу по дате последнего посещения сервера.<br>Замените <i>OPERATOR</i> на '<' или '>' или '=' или '!='.<br>Также замените <i>TIME</i> на желаемую дату поиска в формате 'Y-m-d H-i'(год-месяц-день час-минута) (пример: 2016-06-18 20-25).<br>Более подробный пример запроса: filter:lastseen:<:2016-06-18 20-25:";
|
||||
$lang['stnv0042'] = "Показывать только клиентов из указанной страны.<br>Замените <i>TS3-COUNTRY-CODE</i> на желаемый код страны.<br>Коды стран вы можете взять <a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\">Здесь(Википедия)</a>";
|
||||
$lang['stri0001'] = "Информация о системе рангов";
|
||||
$lang['stri0002'] = "Что такое TSN RankSystem?";
|
||||
$lang['stri0003'] = "Удобная система, позволяющая создать на сервере TeamSpeak 3 систему рангов-поощрений, основанную на времени, которое пользователи проводят на сервере. Ко всему прочему, она также занимается сбором информации о пользователях и последующим её отображением на сайте.";
|
||||
$lang['stri0004'] = "Кто является её разработчиком?";
|
||||
$lang['stri0005'] = "Когда была создана TSN Ranksystem?";
|
||||
$lang['stri0006'] = "Альфа-релиз: 05/10/2014.";
|
||||
$lang['stri0007'] = "Бета-релиз: 01/02/2015.";
|
||||
$lang['stri0008'] = "Вы можете найти новую версию на сайте: <a href=\"http://ts-n.net/ranksystem.php\" target=\"_blank\">Ranksystem Website</a>.";
|
||||
$lang['stri0009'] = "Как создавалась TSN Ranksystem?";
|
||||
$lang['stri0010'] = "\"RankSytem\" разрабатывалась на языке";
|
||||
$lang['stri0011'] = "При создании использовался следующий набор инструментов:";
|
||||
$lang['stri0012'] = "Особая благодарность:";
|
||||
$lang['stri0013'] = "<a href=\"http://nya-pw.ru/\" target=\"_blank\">sergey</a>, <a href=\"http://vk.com/akhachirov\" target=\"_blank\">Arselopster</a> & <a href=\"http://vk.com/zheez\" target=\"_blank\">DeviantUser</a> - За русскоязычный перевод текста.";
|
||||
$lang['stri0014'] = "Bejamin Frost - За помощь в создании дизайна сайта с помощью Bootstrap.";
|
||||
$lang['stri0015'] = "<a href=\"http://hydrake.eu/\" target=\"_blank\">ZanK</a> - За перевод интерфейса на итальянский язык.";
|
||||
$lang['stri0016'] = "<a href=\"http://iraqgaming.net/\" target=\"_blank\">DeStRoYzR</a> & <a href=\"http://www.sagamer.net/\" target=\"_blank\">Jehad</a> - За перевод интерфейса на арабский язык";
|
||||
$lang['stri0017'] = "<a href=\"http://whitecs.ro/\" target=\"_blank\">SakaLuX</a> - За перевод интерфейса на румынский язык.";
|
||||
$lang['sttw0001'] = "Рейтинг пользователей";
|
||||
$lang['sttw0002'] = "Лучшие за неделю";
|
||||
$lang['sttw0003'] = "Набрал %s часов онлайна";
|
||||
$lang['sttw0004'] = "Топ-10 в графике(Разрыв между участниками)";
|
||||
$lang['sttw0005'] = "Часов (Представляет собой 100 %)";
|
||||
$lang['sttw0006'] = "%s часов (%s%)";
|
||||
$lang['sttw0007'] = "Участники топ-10 в сравнении";
|
||||
$lang['sttw0008'] = "Топ-10 Vs остальные по времени онлайн";
|
||||
$lang['sttw0009'] = "Топ-10 Vs остальные по активности";
|
||||
$lang['sttw0010'] = "Tоп-10 Vs остальные по времени оффлайн";
|
||||
$lang['sttw0011'] = "Топ-10 в графике";
|
||||
$lang['sttw0012'] = "Остальные %s клиенты (в часах)";
|
||||
$lang['sttw0013'] = "С %s Часами аквтиности";
|
||||
$lang['sttm0001'] = "Лучшие за месяц";
|
||||
$lang['stta0001'] = "Лучшие за все время";
|
||||
$lang['upinf'] = "Доступна новая версия Ранг Системы; Сообщаю Клиентам на Сервере...";
|
||||
$lang['upmsg'] = "\nЭй, доступна новая версия [B]Ранг Системы[/B]!\n\nТекущая версия: %s\n[B]новая версия: %s[/B]\n\nПожалуйста, посетите наш сайт [URL]http://ts-n.net/ranksystem.php[/URL] для получения более подробной информации.";
|
||||
$lang['upsucc'] = "Обновление базы данных успешно выполнено.";
|
||||
$lang['upuser'] = "Пользователь %s (Никнейм: %s; UID в базе данных: %s) получает новое количество (сумм. время подключения) из %s (активное время онлайна %s).";
|
||||
$lang['upuserboost'] = "Пользователь %s (Никнейм: %s; UID в базе данных: %s) получает новое количество (сумм. время подключения) из %s (активное время онлайна %s) <b>[BOOST %sx]</b>.";
|
||||
$lang['upusrerr'] = "Пользователь с уникальным ID %s не был найден (не правильно указан Уникальный ID или пользователь в настоящий момент не подключен к серверу Teamspeak)!";
|
||||
$lang['upusrinf'] = "Пользователь %s был успешно информирован.";
|
||||
$lang['user'] = "Логин";
|
||||
$lang['wiaction'] = "Выполнить";
|
||||
$lang['wiboost'] = "Бустер онлайна";
|
||||
$lang['wiboostdesc'] = "Вы можете указать здесь ID групп сервера(Их необходимо создать на TeamSpeak сервере заранее), выступающие в роли множителя накапливаемого времени, которое получает пользователь за онлайн на сервере. Также вы должны указать на сколько должно умножаться время и период действия группы-множителя. Чем больше множитель времени, тем быстрее пользователь достигнет следующий ранг. По окончанию действия множителя, группа-множитель автоматически снимается с пользователя. Пример указания группы-множителя следующий: ID группы=> множитель=> время(В секундах). Если вы хотите сделать две такие группы, то просто разделите их между собой запятой.<br><br>Пример:<br>12=>2=>6000,13=>3=>2500,14=>5=>600<br><br>Из примера выше следует, что группа с ID 12 дает множитель времени х2 на 6000 секунд, а группа 13 имеет множитель х3 на 2500 секунд. 14 группа соответственно, имеет множитель х5 на 600 секунд.";
|
||||
$lang['wibot1'] = "RankSystem был выключен. Более подробную информацию смотрите в логе ниже!";
|
||||
$lang['wibot2'] = "RankSystem запущен. Более подробную информацию смотрите в логе ниже!";
|
||||
$lang['wibot3'] = "RankSystem перезагружается. Более подробную информацию смотрите в логе ниже!";
|
||||
$lang['wibot4'] = "Включить / Выключить бота RankSystem";
|
||||
$lang['wibot5'] = "Запустить";
|
||||
$lang['wibot6'] = "Остановить";
|
||||
$lang['wibot7'] = "Перезапуститб";
|
||||
$lang['wibot7'] = "Перезапустить";
|
||||
$lang['wibot8'] = "Лог RankSystem:";
|
||||
$lang['wibot9'] = "Заполните все обязательные поля перед запуском RankSystem!!";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Сбрасывает время онлайн пользователя, если его ID в базе данных клиента TeamSpeak изменился.<br><br>Пример:<br>Если пользователь удален из БД сервера TeamSpeak, то, новый ID в базе данных клиента будет записан со следующим подключением к серверу.";
|
||||
$lang['wiconferr'] = "Есть ошибка в конфигурации Ranksystem. Пожалуйста, зайдите в Веб-Панель и проверьте настройки раздела 'Настройка Ранг Системы'. Особенно тщательно проверьте 'Ранги'!";
|
||||
$lang['widaform'] = "Формат даты";
|
||||
$lang['widaformdesc'] = "Выберите формат показа даты.<br><br>Пример:<br>%a дней, %h часов, %i минут, %s секунд";
|
||||
$lang['widbcfgsuc'] = "Настройки Базы Данных успешно сохранены.";
|
||||
$lang['widbcfgerr'] = "Ошибка сохранения настроек в базе данных! Ошибка подключения, проверьте на правильность настройки 'other/dbconfig.php'";
|
||||
$lang['widelcld'] = "удаление пользователей";
|
||||
$lang['widelcldgrp'] = "Обновить группы";
|
||||
$lang['widelcldgrpdesc'] = "RankSystem хранит текущие группы рангов пользователей в своей базе данных и после того, как вы отредактируете этих пользователей, то пройдет некоторое время, прежде чем бот уберёт затронутых пользователей из их прежних групп ранга.<br>Однако, этой функцией вы можете принудительно запустить процесс обновления групп ранга у всех пользователей, которые в данный момент подключены к серверу.";
|
||||
$lang['widelclddesc'] = "Удаление выбранных клиентов из базы данных RankSystem.<br><br>Клиент непосредственно на сервере Teamspeak не будет удален.";
|
||||
$lang['widelsg'] = "Удалить их также из групп сервера";
|
||||
$lang['widelsgdesc'] = "Выберите, если клиенты должны также быть удалены из последней заработанной ими группы-ранга.";
|
||||
$lang['wideltime'] = "Время удаления";
|
||||
$lang['wideltimedesc'] = "Очистка базы данных Ранг Системы от старых клиентов.<br>Введите время в секундах, достигнув которого, пользователь не будет удален из БД RankSystem.<br><br>0 - Удаление всех пользователей из БД RankSystem<br><br>При этом база данных пользователей на сервере TeamSpeak затронута не будет!";
|
||||
$lang['wiexcid'] = "Исключения каналов";
|
||||
$lang['wiexciddesc'] = "Через запятую должен будет указан список каналов, которые должна будет игнорировать система рангов<br><br>Находясь в этих каналах, пользователям не будет начислять время за онлайн на сервере. <br><br>Данную функция можно использовать к примеру, для AFK каналов.<br>При режиме 'активное время', эта функция становится бесполезной, т.к. в канале юзеру перестает вовсе начисляться время бездействия<br><br>Пользователи находящиеся в таких каналах, помечаются на этот период как 'исключение из списков RankSystem'. К тому же, данные пользователи перестают отображаться в 'stats/list_rankup.php' и становятся доступны только с фильтром поиска или с включенным отображением \"исключенных клиентов\"(Страница статистики - \"исключенный клиент\").";
|
||||
$lang['wiexgrp'] = "Исключения сервер групп";
|
||||
$lang['wiexgrpdesc'] = "Укажите через запятую ID групп сервера, которые будут игнорироваться Ранг Системой.<br>Если пользователь находится хоты бы в одной из этих групп, то Ранг Система будет игнорировать его.(Также не будет начислять онлайн)";
|
||||
$lang['wiexuid'] = "Исключение для пользователей";
|
||||
$lang['wiexuiddesc'] = "Укажите через запятую уникальные идентификаторы клиентов (UID), которых будет игнорировать Ранг Система(RankSystem) и им не будет засчитываться время, проведенное на сервере.<br>";
|
||||
$lang['wigrptime'] = "Настройка рангов";
|
||||
$lang['wigrptimedesc'] = "Укажите через какой промежуток времени, будут выдаваться группы сервера.<br><br>Время (в секундах)=>номер группы сервера(ServerGroupID)<br><br>К тому же, от выбранного режима будет зависеть.<br><br>Каждый параметр должен разделяться запятой.<br><br>Так же время должно быть указано по 'нарастающей'<br><br>Пример:<br>60=>9,120=>10,180=>11<br><br>По истечению 60 секунд пользователь получает сервер группу под SGID 9, по истечению еще 120 секунд пользователь получает сервер группу SGID 10, и так далее...";
|
||||
$lang['wihladm'] = "Список пользователей (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "Настройка RankSystem";
|
||||
$lang['wihldb'] = "Настройки Базы Данных";
|
||||
$lang['wihlmsg'] = "Настройка оповещения";
|
||||
$lang['wihlsty'] = "Отображение пользователей на странице статистики";
|
||||
$lang['wihlts'] = "Настройка подключения к TeamSpeak";
|
||||
$lang['wihlvs'] = "Прочие настройки";
|
||||
$lang['wiignidle'] = "Игнорировать время бездействия";
|
||||
$lang['wiignidledesc'] = "Задать период, в течение которого время бездействия будет игнорироваться.<br><br>Время бездействия - если клиент не выполняет каких-либо действий на сервере (=idle/бездействует), также время учитывается системой рангов. Только когда установленный лимит будет достигнут, система начнет подсчитывать время бездействия.<br><br>Эта функция работает только при включенном режиме 'Подсчитывать активное время'(при высчитывании группы-ранга, когда время бездействия вычитается из \"активного\" времени).<br><br>Использование этой функции оправдано в том случае, если пользователь \"слушает\" говорящих людей и при этом ему зачисляется \"время бездействия\", которое обнуляется при любом его действии. <br><br>0 = отключить данную функцию<br><br>Пример:<br>Игнорировать бездействие = 600 (секунд)<br>Клиенту 8 минут простоя не будут засчитаны системой рангов и оно будет ему засчитано как \"активное время\". Если пользователь находился 12 минут в бездействии при \"игнорировании бездействия\" в 10 минут, то ему будет зачислены только 2 минуты простоя.";
|
||||
$lang['wilogout'] = "Выход";
|
||||
$lang['wilog'] = "Папка логирования работы RankSystem";
|
||||
$lang['wilogdesc'] = "Расположение логов Ranksystem на диске.<br><br>Пример:<br>/var/logs/ranksystem/<br><br>Убедитесь, что веб-пользователь имеет разрешение на редактирование этой папки/файлов(chmod).";
|
||||
$lang['wichdbid'] = "Client-database-ID reset";
|
||||
$lang['wichdbiddesc'] = "Сбрасывает время онлайн пользователя, если его ID в базе данных клиента TeamSpeak изменился.<br><br>Пример:<br>Если пользователь удален из БД сервера TeamSpeak, то, новый ID в базе данных клиента будет записан со следующим подключением к серверу.";
|
||||
$lang['wiconferr'] = "Есть ошибка в конфигурации Ranksystem. Пожалуйста, зайдите в Веб-Панель и проверьте настройки раздела 'Настройка Ранг Системы'. Особенно тщательно проверьте 'Ранги'!";
|
||||
$lang['widaform'] = "Формат даты";
|
||||
$lang['widaformdesc'] = "Выберите формат показа даты.<br><br>Пример:<br>%a дней, %h часов, %i минут, %s секунд";
|
||||
$lang['widbcfgsuc'] = "Настройки Базы Данных успешно сохранены.";
|
||||
$lang['widbcfgerr'] = "Ошибка сохранения настроек в базе данных! Ошибка подключения, проверьте на правильность настройки 'other/dbconfig.php'";
|
||||
$lang['widelcld'] = "удаление пользователей";
|
||||
$lang['widelcldgrp'] = "Обновить группы";
|
||||
$lang['widelcldgrpdesc'] = "RankSystem хранит текущие группы рангов пользователей в своей базе данных и после того, как вы отредактируете этих пользователей, то пройдет некоторое время, прежде чем бот уберёт затронутых пользователей из их прежних групп ранга.<br>Однако, этой функцией вы можете принудительно запустить процесс обновления групп ранга у всех пользователей, которые в данный момент подключены к серверу.";
|
||||
$lang['widelclddesc'] = "Удаление выбранных клиентов из базы данных RankSystem.<br><br>Клиент непосредственно на сервере Teamspeak не будет удален.";
|
||||
$lang['widelsg'] = "Удалить их также из групп сервера";
|
||||
$lang['widelsgdesc'] = "Выберите, если клиенты должны также быть удалены из последней заработанной ими группы-ранга.";
|
||||
$lang['wideltime'] = "Время удаления";
|
||||
$lang['wideltimedesc'] = "Очистка базы данных Ранг Системы от старых клиентов.<br>Введите время в секундах, достигнув которого, пользователь не будет удален из БД RankSystem.<br><br>0 - Удаление всех пользователей из БД RankSystem<br><br>При этом база данных пользователей на сервере TeamSpeak затронута не будет!";
|
||||
$lang['wiexcid'] = "Исключения каналов";
|
||||
$lang['wiexciddesc'] = "Через запятую должен будет указан список каналов, пользователей в которых должна будет игнорировать RankSystem<br><br>Находясь в этих каналах, пользователям не будет начислять время за онлайн на сервере. <br><br>Данную функция можно использовать к примеру, для AFK каналов.<br>При режиме 'активное время', эта функция становится бесполезной, т.к. в канале юзеру перестает вовсе начисляться время бездействия<br><br>Пользователи находящиеся в таких каналах, помечаются на этот период как 'исключение из списков RankSystem'. К тому же, данные пользователи перестают отображаться в 'stats/list_rankup.php' и становятся доступны только с фильтром поиска или с включенным отображением \"исключенных клиентов\"(Страница статистики - \"исключенный клиент\").";
|
||||
$lang['wiexgrp'] = "Исключения сервер групп";
|
||||
$lang['wiexgrpdesc'] = "Укажите через запятую ID групп сервера, пользователи в которых будут игнорироваться RankSystem.<br>Если пользователь находится хоты бы в одной из этих групп, то RankSystem будет игнорировать его.(Также не будет начислять онлайн)";
|
||||
$lang['wiexuid'] = "Исключение для пользователей";
|
||||
$lang['wiexuiddesc'] = "Укажите через запятую уникальные идентификаторы клиентов (UID), которых будет игнорировать RankSystem и им не будет засчитываться время, проведенное на сервере.<br>";
|
||||
$lang['wigrptime'] = "Настройка рангов";
|
||||
$lang['wigrptimedesc'] = "Укажите через какой промежуток времени, будут выдаваться группы сервера.<br><br>Время (в секундах)=>номер группы сервера(ServerGroupID)<br><br>К тому же, от выбранного режима будет зависеть.<br><br>Каждый параметр должен разделяться запятой.<br><br>Так же время должно быть указано по 'нарастающей'<br><br>Пример:<br>60=>9,120=>10,180=>11<br><br>По истечению 60 секунд пользователь получает сервер группу под SGID 9, по истечению еще 120 секунд пользователь получает сервер группу SGID 10, и так далее...";
|
||||
$lang['wihladm'] = "Список пользователей (Admin-Mode)";
|
||||
$lang['wihlcfg'] = "Настройка RankSystem";
|
||||
$lang['wihldb'] = "Настройки Базы Данных";
|
||||
$lang['wihlmsg'] = "Настройка оповещения";
|
||||
$lang['wihlsty'] = "Отображение пользователей на странице статистики";
|
||||
$lang['wihlts'] = "Настройка подключения к TeamSpeak";
|
||||
$lang['wihlvs'] = "Прочие настройки";
|
||||
$lang['wiignidle'] = "Игнорировать время бездействия";
|
||||
$lang['wiignidledesc'] = "Задать период, в течение которого время бездействия будет игнорироваться.<br><br>Время бездействия - если клиент не выполняет каких-либо действий на сервере (=idle/бездействует), это время также учитывается RankSystem. Только когда установленный лимит будет достигнут, RankSystem начнет подсчитывать время бездействия для пользователя.<br><br>Эта функция работает только при включенном режиме 'Подсчитывать активное время'(при высчитывании группы-ранга, когда время бездействия вычитается из \"активного\" времени).<br><br>Использование этой функции оправдано в том случае, если пользователь \"слушает\" говорящих людей и при этом ему зачисляется \"время бездействия\", которое обнуляется при любом его действии. <br><br>0= отключить данную функцию<br><br>Пример:<br>Игнорировать бездействие= 600 (секунд)<br>Клиенту 8 минут простоя не будут засчитаны системой рангов и оно будет ему засчитано как \"активное время\". Если пользователь находился 12 минут в бездействии при \"игнорировании бездействия\" в 10 минут, то ему будет зачислены только 2 минуты простоя.";
|
||||
$lang['wilogout'] = "Выход";
|
||||
$lang['wilog'] = "Папка логирования работы RankSystem";
|
||||
$lang['wilogdesc'] = "Расположение логов Ranksystem на диске.<br><br>Пример:<br>/var/logs/ranksystem/<br><br>Убедитесь, что веб-пользователь имеет разрешение на редактирование этой папки/файлов(chmod).";
|
||||
$lang['wimsgmsg'] = "Оповещение";
|
||||
$lang['wimsgmsgdesc'] = "Задать сообщение, которое будет отправлено пользователю, при достижении высшего ранга.<br><br>Данное сообщение отправляется посредством личных сообщений на TeamSpeak 3 сервере. Текст поддерживает использование bb-кодов программы Teamspeak.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Кроме того, также поддерживаются следующие аргументы в сообщении:<br>%1\$s - дни<br>%2\$s - часы<br>%3\$s - минут<br>%4\$s - секунды<br><br>Пример:<br>Привет,\\nты достиг высший ранг, за время онлайн на сервере в течение %1\$s дней, %2\$s часов и %3\$s минут на нашем сервере.[B]Продолжай в том же духе![/B] ;-)";
|
||||
$lang['wimsgusr'] = "Уведомление при повышении";
|
||||
$lang['wimsgusrdesc'] = "Сообщение пользователю о повышение ранга.";
|
||||
$lang['wimsgmsgdesc'] = "Задать сообщение, которое будет отправлено пользователю, при достижении высшего ранга.<br><br>Данное сообщение отправляется посредством личных сообщений на TeamSpeak 3 сервере. Текст поддерживает использование bb-кодов программы Teamspeak.<br>http://ts-n.net/lexicon.php?showid=97#lexindex<br><br>Кроме того, также поддерживаются следующие аргументы в сообщении:<br>%1\$s - дни<br>%2\$s - часы<br>%3\$s - минут<br>%4\$s - секунды<br><br>Пример:<br>Привет,\\nты достиг высший ранг, за время онлайн на сервере в течение %1\$s дней, %2\$s часов и %3\$s минут на нашем сервере.[B]Продолжай в том же духе![/B] ;-)";
|
||||
$lang['wimsgsn'] = "Server-News";
|
||||
$lang['wimsgsndesc'] = "Define a message, which will be shown on the /stats/ page as server news.<br><br>You can use default html functions to modify the layout<br><br>Example:<br><b> - <b>for bold</b><br><u> - <u>for underline</u><br><i> - <i>for italic</i><br><br> - for word-wrap (new line)";
|
||||
$lang['wimsgusr'] = "Уведомление при повышении";
|
||||
$lang['wimsgusrdesc'] = "Сообщение пользователю о повышение ранга.";
|
||||
$lang['winav1'] = "TeamSpeak";
|
||||
$lang['winav2'] = "База данных";
|
||||
$lang['winav3'] = "Система";
|
||||
@@ -298,67 +303,67 @@ $lang['winav7'] = "Администрирование";
|
||||
$lang['winav8'] = "Запустить / Остановить бота";
|
||||
$lang['winav9'] = "Доступно обновление!";
|
||||
$lang['winav10'] = "Соединение с данным сайтом не защищено с помощью %s HTTPS%sЭто может повлечь за собой проблемы для вашей приватности и безопасности! %sДля использования HTTPS ваш веб-сервер должен поддерживать SSL-соединение.";
|
||||
$lang['wiselcld'] = "Выбор клиентов";
|
||||
$lang['wiselclddesc'] = "Выберите клиентов, путём ввода их последнего имени. В процессе ввода вы увидите подсказку<br>Для выбора нескольких пользователей нужно поставить запятую, которая поставится автоматически, после завершения ввода первого пользователя<br><br>После завершения ввода пользователей, выберите необходимое для них действие в селекторах ниже.";
|
||||
$lang['wishcolas'] = "Текущая группа сервера";
|
||||
$lang['wishcolasdesc'] = "Показ колонки 'Текущая группа сервера' в stats/list_rankup.php";
|
||||
$lang['wishcolat'] = "Время активности";
|
||||
$lang['wishcolatdesc'] = "Показ колонки 'Суммарное время активности' в stats/list_rankup.php";
|
||||
$lang['wishcolcld'] = "Ник клиента";
|
||||
$lang['wishcolclddesc'] = "Показ колонки 'Ник клиента' в stats/list_rankup.php";
|
||||
$lang['wishcoldbid'] = "ID в Базе данных";
|
||||
$lang['wishcoldbiddesc'] = "Показ колонки 'ID в Базе данных' в stats/list_rankup.php";
|
||||
$lang['wishcolit'] = "Учитывать время простоя";
|
||||
$lang['wishcolitdesc'] = "Показ колонки 'суммарное время простоя' в stats/list_rankup.php";
|
||||
$lang['wishcolls'] = "Последний раз замечен";
|
||||
$lang['wishcollsdesc'] = "Показ колонки 'Последний раз замечен' в stats/list_rankup.php";
|
||||
$lang['wishcolnx'] = "Время до след. ранга";
|
||||
$lang['wishcolnxdesc'] = "Показ колонки 'Следующий Ранг' в stats/list_rankup.php";
|
||||
$lang['wishcolot'] = "Время подключения";
|
||||
$lang['wishcolotdesc'] = "Показ колонки 'суммарное время подключения' в stats/list_rankup.php";
|
||||
$lang['wishcolrg'] = "Ранг";
|
||||
$lang['wishcolrgdesc'] = "Показ колонки 'Ранг' в stats/list_rankup.php";
|
||||
$lang['wishcolsg'] = "Следующая сервер группа";
|
||||
$lang['wishcolsgdesc'] = "Показ колонки 'следующая сервер группа' в stats/list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc'] = "Показ колонки 'уникальный ID клиента'(UID) в stats/list_rankup.php";
|
||||
$lang['wishexcld'] = "Пользователи исключения";
|
||||
$lang['wishexclddesc'] = "Показывать пользователей в list_rankup.php,<br>которые исключены и не участвуют в системе рангов.";
|
||||
$lang['wishexgrp'] = "Группы исключения";
|
||||
$lang['wishexgrpdesc'] = "Показывать пользователей в list_rankup.php, которые находятся в списке 'исключение клиента' и не должны учитываться RankSystem.";
|
||||
$lang['wishhicld'] = "Пользователи с высшим рангом";
|
||||
$lang['wishhiclddesc'] = "Показывать пользователей в list_rankup.php, который достиг высшего уровня в Ranksystem.";
|
||||
$lang['wisupidle'] = "Режим";
|
||||
$lang['wisupidledesc'] = "Предоставлены два режима, от которых будет высчиваться ранг пользователей. 1) Время подключения(Общее время): Общее время подключения на сервере, складывается из \"Активного времени\" и \"времени бездействия\"(колонка 'Сумм. время подключения' в 'stats/list_rankup.php') 2) Активное время(Время активности): Время, которое пользователь не находился в бездействии. Значение этого времени высчитывается путем вычитания \"времени бездействия из\" из \"Общего времени подключения на сервере\" (Колонка 'Сумм. время активности' в 'stats/list_rankup.php'). Не рекомендуется смена режима при уже отработавшем долгий срок старом, но допустимо.";
|
||||
$lang['wisvconf'] = "Сохранить";
|
||||
$lang['wisvsuc'] = "Изменения успешно сохранены!";
|
||||
$lang['wisvres'] = "Для принятия внесенных правок вам необходимо перезагрузить RankSystem!";
|
||||
$lang['witime'] = "Часовой пояс";
|
||||
$lang['witimedesc'] = "Выбрать часовой пояс, в котором находится сервер.";
|
||||
$lang['wits3dch'] = "Канал по умолчанию";
|
||||
$lang['wits3dchdesc'] = "При подключении на сервер, бот будет пытаться войти в этот канал и останется там.";
|
||||
$lang['wits3host'] = "TS3 адрес хоста";
|
||||
$lang['wits3hostdesc'] = "Адрес TeamSpeak 3 Сервера<br>(IP или DNS)";
|
||||
$lang['wits3sm'] = "Замедленный режим";
|
||||
$lang['wits3smdesc'] = "Замедленный режим позволяет предотвратить флуд query-командами на сервер, из-за которого RankSystem может получить временный бан со стороны TeamSpeak 3 сервера.<br><br>!!! Также это снижает нагрузку на ЦП и уменьшает расход трафика !!!<br><br>Однако, не включайте эту функцию, если нет в ней нужды, потому как с ней не работает очистка базы от неактивных пользователей. К тому же, замедленный режим значительно увеличивает время обработки разного рода процессов.";
|
||||
$lang['wits3qnm'] = "Основн. ник бота";
|
||||
$lang['wits3qnm2'] = "Запас. ник бота";
|
||||
$lang['wits3qnm2desc'] = "Этот никнейм будет использоваться, если первый уже занят. Рекомендуется заполнить!";
|
||||
$lang['wits3qnmdesc'] = "Никнейм, с которым будет авторизовываться Ранг система на сервере.<br>Убедитесь, что оно не занято кем-то другим.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Пароль";
|
||||
$lang['wits3querpwdesc'] = "TeamSpeak 3 query-Пароль<br>Ваш пароль от query-пользователя.";
|
||||
$lang['wits3querusr'] = "TS3 Query-Логин";
|
||||
$lang['wits3querusrdesc'] = "TeamSpeak 3 query-Логин<br>По умолчанию: serveradmin<br>Конечно вы можете указать другой логин для Ranksystem.<br>Необходимые разрешения привилегий вы можете найти на:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Порт";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 query-Порт<br>По умолчанию: 10011 (TCP)<br>Если порт изменен, то укажите его согласно настройкам из 'ts3server.ini'.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Порт";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 voice-Порт<br>По умолчанию: 9987 (UDP)<br>Этот порт используется Teamspeak 3 клиентом для подключения к серверу.";
|
||||
$lang['wiupcheck'] = "Проверка обновлений";
|
||||
$lang['wiupcheckdesc'] = "Если проверка обновлений включена, то пользователь получит приватное сообщение, когда обновление доступно.";
|
||||
$lang['wiuptime'] = "Интервал проверки";
|
||||
$lang['wiuptimedesc'] = "Введите здесь через сколько секунд Ранг Система должна проверить наличие обновлений.<br>Внимание, после каждой проверки перечисленные пользователь получает уведомление. Если ни один из перечисленных пользователей не онлайн, Система Рангов будет пытаться уведомить пользователей при следующем сканировании.";
|
||||
$lang['wiupuid'] = "Получатель обновлений";
|
||||
$lang['wiupuiddesc'] = "Укажите через запятую уникальные ID(UID) клиентов, которые будут проинформированы о доступных обновлениях посредством приватного сообщения через TeamSpeak.";
|
||||
$lang['wivlang'] = "Язык";
|
||||
$lang['wivlangdesc'] = "Язык Ранг Системы<br><br>de - Deutsch<br>en - english<br>it - italiano<br>ru - Русский";
|
||||
$lang['wiselcld'] = "Выбор клиентов";
|
||||
$lang['wiselclddesc'] = "Выберите клиентов, путём ввода их последнего имени. В процессе ввода вы увидите подсказку<br>Для выбора нескольких пользователей нужно поставить запятую, которая поставится автоматически, после завершения ввода первого пользователя<br><br>После завершения ввода пользователей, выберите необходимое для них действие в селекторах ниже.";
|
||||
$lang['wishcolas'] = "Текущая группа сервера";
|
||||
$lang['wishcolasdesc'] = "Показ колонки 'Текущая группа сервера' в stats/list_rankup.php";
|
||||
$lang['wishcolat'] = "Время активности";
|
||||
$lang['wishcolatdesc'] = "Показ колонки 'Суммарное время активности' в stats/list_rankup.php";
|
||||
$lang['wishcolcld'] = "Ник клиента";
|
||||
$lang['wishcolclddesc'] = "Показ колонки 'Ник клиента' в stats/list_rankup.php";
|
||||
$lang['wishcoldbid'] = "ID в Базе данных";
|
||||
$lang['wishcoldbiddesc'] = "Показ колонки 'ID в Базе данных' в stats/list_rankup.php";
|
||||
$lang['wishcolit'] = "Учитывать время простоя";
|
||||
$lang['wishcolitdesc'] = "Показ колонки 'суммарное время простоя' в stats/list_rankup.php";
|
||||
$lang['wishcolls'] = "Последний раз замечен";
|
||||
$lang['wishcollsdesc'] = "Показ колонки 'Последний раз замечен' в stats/list_rankup.php";
|
||||
$lang['wishcolnx'] = "Время до след. ранга";
|
||||
$lang['wishcolnxdesc'] = "Показ колонки 'Следующий Ранг' в stats/list_rankup.php";
|
||||
$lang['wishcolot'] = "Время подключения";
|
||||
$lang['wishcolotdesc'] = "Показ колонки 'суммарное время подключения' в stats/list_rankup.php";
|
||||
$lang['wishcolrg'] = "Ранг";
|
||||
$lang['wishcolrgdesc'] = "Показ колонки 'Ранг' в stats/list_rankup.php";
|
||||
$lang['wishcolsg'] = "Следующая сервер группа";
|
||||
$lang['wishcolsgdesc'] = "Показ колонки 'следующая сервер группа' в stats/list_rankup.php";
|
||||
$lang['wishcoluuid'] = "Client-ID";
|
||||
$lang['wishcoluuiddesc'] = "Показ колонки 'уникальный ID клиента'(UID) в stats/list_rankup.php";
|
||||
$lang['wishexcld'] = "Пользователи исключения";
|
||||
$lang['wishexclddesc'] = "Показывать пользователей в list_rankup.php,<br>которые исключены и не участвуют в системе рангов.";
|
||||
$lang['wishexgrp'] = "Группы исключения";
|
||||
$lang['wishexgrpdesc'] = "Показывать пользователей в list_rankup.php, которые находятся в списке 'исключение клиента' и не должны учитываться RankSystem.";
|
||||
$lang['wishhicld'] = "Пользователи с высшим рангом";
|
||||
$lang['wishhiclddesc'] = "Показывать пользователей в list_rankup.php, который достиг высшего уровня в Ranksystem.";
|
||||
$lang['wisupidle'] = "Режим";
|
||||
$lang['wisupidledesc'] = "Предоставлены два режима, от которых будет высчиваться ранг пользователей.<br><br>1) Время подключения(Общее время): Общее время подключения на сервере, складывается из \"Активного времени\" и \"времени бездействия\"(колонка 'Сумм. время подключения' в 'stats/list_rankup.php')<br><br>2) Активное время(Время активности): Время, которое пользователь не находился в бездействии. Значение этого времени высчитывается путем вычитания \"времени бездействия из\" из \"Общего времени подключения на сервере\" (Колонка 'Сумм. время активности' в 'stats/list_rankup.php').<br><br>Не рекомендуется смена режима при уже отработавшем долгий срок старом режиме, но допустимо.";
|
||||
$lang['wisvconf'] = "Сохранить";
|
||||
$lang['wisvsuc'] = "Изменения успешно сохранены!";
|
||||
$lang['wisvres'] = "Для принятия внесенных правок вам необходимо перезагрузить RankSystem!";
|
||||
$lang['witime'] = "Часовой пояс";
|
||||
$lang['witimedesc'] = "Выбрать часовой пояс, в котором находится сервер.";
|
||||
$lang['wits3dch'] = "Канал по умолчанию";
|
||||
$lang['wits3dchdesc'] = "При подключении на сервер, бот будет пытаться войти в этот канал и останется там.";
|
||||
$lang['wits3host'] = "TS3 адрес";
|
||||
$lang['wits3hostdesc'] = "Адрес TeamSpeak 3 Сервера<br>(IP или DNS)";
|
||||
$lang['wits3sm'] = "Замедленный режим";
|
||||
$lang['wits3smdesc'] = "Замедленный режим позволяет предотвратить флуд query-командами на сервер, из-за которого RankSystem может получить временный бан со стороны TeamSpeak 3 сервера.<br><br>!!! Также это снижает нагрузку на ЦП и уменьшает расход трафика !!!<br><br>Однако, не включайте эту функцию, если нет в ней нужды, потому как с ней не работает очистка базы от неактивных пользователей. К тому же, замедленный режим значительно увеличивает время обработки разного рода процессов.";
|
||||
$lang['wits3qnm'] = "Основн. ник бота";
|
||||
$lang['wits3qnm2'] = "Запас. ник бота";
|
||||
$lang['wits3qnm2desc'] = "Этот никнейм будет использоваться, если первый уже занят. Рекомендуется заполнить!";
|
||||
$lang['wits3qnmdesc'] = "Никнейм, под которым будет авторизовываться RankSystem на сервере.<br>Убедитесь, что оно не занято кем-то другим.";
|
||||
$lang['wits3querpw'] = "TS3 Query-Пароль";
|
||||
$lang['wits3querpwdesc'] = "TeamSpeak 3 query-Пароль<br>Ваш пароль от query-пользователя.";
|
||||
$lang['wits3querusr'] = "TS3 Query-Логин";
|
||||
$lang['wits3querusrdesc'] = "TeamSpeak 3 query-Логин<br>По умолчанию: serveradmin<br>Конечно вы можете указать другой логин для Ranksystem.<br>Необходимые разрешения привилегий вы можете найти на:<br>http://ts-n.net/ranksystem.php";
|
||||
$lang['wits3query'] = "TS3 Query-Порт";
|
||||
$lang['wits3querydesc'] = "TeamSpeak 3 query-Порт<br>По умолчанию: 10011 (TCP)<br>Если порт изменен, то укажите его согласно настройкам из 'ts3server.ini'.";
|
||||
$lang['wits3voice'] = "TS3 Voice-Порт";
|
||||
$lang['wits3voicedesc'] = "TeamSpeak 3 voice-Порт<br>По умолчанию: 9987 (UDP)<br>Этот порт используется Teamspeak 3 клиентом для подключения к серверу.";
|
||||
$lang['wiupcheck'] = "Проверка обновлений";
|
||||
$lang['wiupcheckdesc'] = "Если проверка обновлений включена, то пользователь получит приватное сообщение, когда обновление доступно.";
|
||||
$lang['wiuptime'] = "Интервал проверки";
|
||||
$lang['wiuptimedesc'] = "Введите здесь промежуток в секундах, через который RankSystem должна проверять наличие обновлений RankSystem.<br>Внимание, после каждой проверки перечисленные пользователи получат уведомление о новой версии. Если ни один из перечисленных пользователей не онлайн, RankSystem будет пытаться уведомить пользователей при следующем сканировании.";
|
||||
$lang['wiupuid'] = "Получатель обновлений";
|
||||
$lang['wiupuiddesc'] = "Укажите через запятую уникальные ID(UID) клиентов, которые будут проинформированы о доступных обновлениях посредством приватного сообщения через TeamSpeak.";
|
||||
$lang['wivlang'] = "Язык";
|
||||
$lang['wivlangdesc'] = "Choose a default language for the Ranksystem.<br><br>The language is also selectable on the websites for the users and will be stored for the session.";
|
||||
?>
|
||||
@@ -1,4 +1,4 @@
|
||||
<?PHP
|
||||
<?PHP
|
||||
$nation = array();
|
||||
$nation['AD']='Андорра';
|
||||
$nation['AE']='Объединённые Арабские Эмираты (ОАЭ)';
|
||||
@@ -34,7 +34,7 @@ $nation['BS']='Багамы';
|
||||
$nation['BT']='Бутан';
|
||||
$nation['BV']='Остров Буве';
|
||||
$nation['BW']='Ботсвана';
|
||||
$nation['BY']='Белоруссия';
|
||||
$nation['BY']='Беларусь';
|
||||
$nation['BZ']='Белиз';
|
||||
$nation['CA']='Канада';
|
||||
$nation['CC']='Кокосовые острова';
|
||||
|
||||
@@ -115,6 +115,7 @@ if (isset($mysqlcon) && ($config = $mysqlcon->query("SELECT * FROM config"))) {
|
||||
$ignoreidle = $config[0]['ignoreidle'];
|
||||
$rankupmsg = $config[0]['rankupmsg'];
|
||||
$newversion = $config[0]['newversion'];
|
||||
$servernews = $config[0]['servernews'];
|
||||
}
|
||||
if(!isset($language) || $language == "en") {
|
||||
require_once(substr(dirname(__FILE__),0,-5).'languages/core_en.php');
|
||||
|
||||
@@ -3,8 +3,7 @@ if (isset($_POST['refresh'])) {
|
||||
$_SESSION = array();
|
||||
session_destroy();
|
||||
}
|
||||
function set_session_ts3($voiceport, $mysqlcon, $dbname)
|
||||
{
|
||||
function set_session_ts3($voiceport, $mysqlcon, $dbname, $language) {
|
||||
if (!empty($_SERVER['HTTP_CLIENT_IP']))
|
||||
$hpclientip = $_SERVER['HTTP_CLIENT_IP'];
|
||||
elseif(!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
|
||||
@@ -20,7 +19,7 @@ function set_session_ts3($voiceport, $mysqlcon, $dbname)
|
||||
else
|
||||
$hpclientip = 0;
|
||||
|
||||
$hpclientip = ip2long($hpclientip);
|
||||
$hpclientip = inet_pton($hpclientip);
|
||||
|
||||
$allclients = $mysqlcon->query("SELECT u.uuid,u.cldbid,u.name,u.ip,u.firstcon,s.total_connections FROM $dbname.user as u LEFT JOIN $dbname.stats_user as s ON u.uuid=s.uuid WHERE online='1';")->fetchAll();
|
||||
$_SESSION['connected'] = 0;
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
<strong>Message</strong><br>
|
||||
This is an example Message.<br>
|
||||
Change this Message by editing the file "server-news" on your webspace.
|
||||
@@ -18,7 +18,7 @@ if($language == "ar") {
|
||||
}
|
||||
|
||||
if(!isset($_SESSION['tsuid'])) {
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname);
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname, $language);
|
||||
}
|
||||
|
||||
function human_readable_size($bytes) {
|
||||
@@ -57,7 +57,7 @@ require_once('nav.php');
|
||||
<div class="col-lg-12">
|
||||
<h1 class="page-header">
|
||||
<?PHP echo $lang['stix0001']; ?>
|
||||
<a href="#filteroptions" data-toggle="modal" class="btn btn-primary">
|
||||
<a href="#infoModal" data-toggle="modal" class="btn btn-primary">
|
||||
<span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
@@ -6,7 +6,7 @@ require_once('../other/config.php');
|
||||
require_once('../other/session.php');
|
||||
|
||||
if(!isset($_SESSION['tsuid'])) {
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname);
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname, $language);
|
||||
}
|
||||
require_once('nav.php');
|
||||
?>
|
||||
@@ -54,7 +54,7 @@ require_once('nav.php');
|
||||
<p><a href="//fontawesome.io" target="_blank">Font Awesome 4.6.3</a> - Copyright © davegandy</p>
|
||||
<p><a href="//flag-icon-css.lip.is/" target="_blank">flag-icon-css</a> - Copyright © 2016 lipis</p>
|
||||
<p><a href="//jquery.com/plugins/project/ajaxqueue" target="_blank">Ajax Queue Plugin</a> - Copyright © 2013 Corey Frang</p>
|
||||
<p><a href="//planetteamspeak.com/" target="_blank">TeamSpeak 3 PHP Framework 1.1.23</a> - Copyright © 2010 Planet TeamSpeak</p>
|
||||
<p><a href="//planetteamspeak.com/" target="_blank">TeamSpeak 3 PHP Framework 1.1.24</a> - Copyright © 2010 Planet TeamSpeak</p>
|
||||
<p><a href="//getbootstrap.com/" target="_blank">Bootstrap 3.3.7</a> - Copyright © 2011-2016 Twitter, Inc.</p>
|
||||
<p><a href="//morrisjs.github.io/morris.js/" target="_blank">morris.js</a> - Copyright © 2013 Olly Smith</p>
|
||||
<p><a href="//raphaeljs.com" target="_blank">Raphaël 2.1.4 - JavaScript Vector Library</a> - Copyright © 2008-2012 Dmitry Baranovskiy</p>
|
||||
|
||||
@@ -23,7 +23,7 @@ function getclientip() {
|
||||
}
|
||||
|
||||
if(!isset($_SESSION['tsuid'])) {
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname);
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname, $language);
|
||||
}
|
||||
|
||||
if(isset($_POST['username'])) {
|
||||
@@ -46,7 +46,11 @@ if(isset($getstring) && strstr($getstring, 'filter:excepted:')) {
|
||||
}
|
||||
$filter .= " AND except='0'";
|
||||
} else {
|
||||
$searchstring = $getstring;
|
||||
if(isset($getstring)) {
|
||||
$searchstring = $getstring;
|
||||
} else {
|
||||
$searchstring = '';
|
||||
}
|
||||
if($showexcld == 0) {
|
||||
$filter .= " AND except='0'";
|
||||
}
|
||||
@@ -138,24 +142,24 @@ if(!isset($_GET["user"])) {
|
||||
$start = $seite * $user_pro_seite - $user_pro_seite;
|
||||
|
||||
if ($keysort == 'active' && $keyorder == 'asc') {
|
||||
$dbdata = $mysqlcon->prepare("SELECT uuid,cldbid,rank,count,name,idle,cldgroup,online,nextup,lastseen,ip,grpid FROM $dbname.user WHERE (uuid LIKE :searchvalue OR cldbid LIKE :searchvalue OR name LIKE :searchvalue)$filter ORDER BY (count - idle) LIMIT :start, :userproseite");
|
||||
$dbdata = $mysqlcon->prepare("SELECT uuid,cldbid,rank,count,name,idle,cldgroup,online,nextup,lastseen,ip,grpid,except FROM $dbname.user WHERE (uuid LIKE :searchvalue OR cldbid LIKE :searchvalue OR name LIKE :searchvalue)$filter ORDER BY (count - idle) LIMIT :start, :userproseite");
|
||||
$dbdata->bindValue(':searchvalue', '%'.$searchstring.'%', PDO::PARAM_STR);
|
||||
$dbdata->bindValue(':start', (int) $start, PDO::PARAM_INT);
|
||||
$dbdata->bindValue(':userproseite', (int) $user_pro_seite, PDO::PARAM_INT);
|
||||
$dbdata->execute();
|
||||
} elseif ($keysort == 'active' && $keyorder == 'desc') {
|
||||
$dbdata = $mysqlcon->prepare("SELECT uuid,cldbid,rank,count,name,idle,cldgroup,online,nextup,lastseen,ip,grpid FROM $dbname.user WHERE (uuid LIKE :searchvalue OR cldbid LIKE :searchvalue OR name LIKE :searchvalue)$filter ORDER BY (idle - count) LIMIT :start, :userproseite");
|
||||
$dbdata = $mysqlcon->prepare("SELECT uuid,cldbid,rank,count,name,idle,cldgroup,online,nextup,lastseen,ip,grpid,except FROM $dbname.user WHERE (uuid LIKE :searchvalue OR cldbid LIKE :searchvalue OR name LIKE :searchvalue)$filter ORDER BY (idle - count) LIMIT :start, :userproseite");
|
||||
$dbdata->bindValue(':searchvalue', '%'.$searchstring.'%', PDO::PARAM_STR);
|
||||
$dbdata->bindValue(':start', (int) $start, PDO::PARAM_INT);
|
||||
$dbdata->bindValue(':userproseite', (int) $user_pro_seite, PDO::PARAM_INT);
|
||||
$dbdata->execute();
|
||||
} elseif ($searchstring == '') {
|
||||
$dbdata = $mysqlcon->prepare("SELECT uuid,cldbid,rank,count,name,idle,cldgroup,online,nextup,lastseen,ip,grpid FROM $dbname.user WHERE 1=1$filter ORDER BY $keysort $keyorder LIMIT :start, :userproseite");
|
||||
$dbdata = $mysqlcon->prepare("SELECT uuid,cldbid,rank,count,name,idle,cldgroup,online,nextup,lastseen,ip,grpid,except FROM $dbname.user WHERE 1=1$filter ORDER BY $keysort $keyorder LIMIT :start, :userproseite");
|
||||
$dbdata->bindValue(':start', (int) $start, PDO::PARAM_INT);
|
||||
$dbdata->bindValue(':userproseite', (int) $user_pro_seite, PDO::PARAM_INT);
|
||||
$dbdata->execute();
|
||||
} else {
|
||||
$dbdata = $mysqlcon->prepare("SELECT uuid,cldbid,rank,count,name,idle,cldgroup,online,nextup,lastseen,ip,grpid FROM $dbname.user WHERE (uuid LIKE :searchvalue OR cldbid LIKE :searchvalue OR name LIKE :searchvalue)$filter ORDER BY $keysort $keyorder LIMIT :start, :userproseite");
|
||||
$dbdata = $mysqlcon->prepare("SELECT uuid,cldbid,rank,count,name,idle,cldgroup,online,nextup,lastseen,ip,grpid,except FROM $dbname.user WHERE (uuid LIKE :searchvalue OR cldbid LIKE :searchvalue OR name LIKE :searchvalue)$filter ORDER BY $keysort $keyorder LIMIT :start, :userproseite");
|
||||
$dbdata->bindValue(':searchvalue', '%'.$searchstring.'%', PDO::PARAM_STR);
|
||||
$dbdata->bindValue(':start', (int) $start, PDO::PARAM_INT);
|
||||
$dbdata->bindValue(':userproseite', (int) $user_pro_seite, PDO::PARAM_INT);
|
||||
@@ -208,7 +212,8 @@ foreach($uuids as $uuid) {
|
||||
"nextup" => $uuid['nextup'],
|
||||
"lastseen" => $uuid['lastseen'],
|
||||
"ip" => $uuid['ip'],
|
||||
"grpid" => $uuid['grpid']
|
||||
"grpid" => $uuid['grpid'],
|
||||
"except" => $uuid['except']
|
||||
);
|
||||
$uidarr[] = $uuid['uuid'];
|
||||
$countentries = $countentries + 1;
|
||||
@@ -289,10 +294,8 @@ if($adminlogin == 1) {
|
||||
ksort($grouptime);
|
||||
$countgrp = count($grouptime);
|
||||
if ($countentries > 0) {
|
||||
$countrank=($seite-1)*$user_pro_seite;
|
||||
$exceptgrp=0;
|
||||
$exceptcld=0;
|
||||
$highest=0;
|
||||
$countallsum=0;
|
||||
foreach ($uidarr as $uid) {
|
||||
$cldgroup = $sqlhis[$uid]['cldgroup'];
|
||||
@@ -301,6 +304,7 @@ if($adminlogin == 1) {
|
||||
$idle = $sqlhis[$uid]['idle'];
|
||||
$status = $sqlhis[$uid]['online'];
|
||||
$nextup = $sqlhis[$uid]['nextup'];
|
||||
$except = $sqlhis[$uid]['except'];
|
||||
$sgroups = explode(",", $cldgroup);
|
||||
$active = $count - $idle;
|
||||
if ($substridle == 1) {
|
||||
@@ -312,7 +316,7 @@ if($adminlogin == 1) {
|
||||
$countallsum++;
|
||||
foreach ($grouptime as $time => $groupid) {
|
||||
$grpcount++;
|
||||
if ($activetime < $time || $grpcount == $countgrp && $nextup == 0 && $showhighest == 1 || $grpcount == $countgrp && $nextup == 0 && $adminlogin == 1) {
|
||||
if ($activetime < $time || $grpcount == $countgrp && $nextup <= 0 && $showhighest == 1 || $grpcount == $countgrp && $nextup == 0 && $adminlogin == 1) {
|
||||
if($nextup == 0 && $grpcount == $countgrp) {
|
||||
$neededtime = 0;
|
||||
} elseif ($status == 1) {
|
||||
@@ -322,8 +326,11 @@ if($adminlogin == 1) {
|
||||
}
|
||||
echo '<tr>';
|
||||
if ($showcolrg == 1 || $adminlogin == 1) {
|
||||
$countrank++;
|
||||
echo '<td class="text-center">' , $sqlhis[$uid]['rank'] , '</td>';
|
||||
if($except == 1) {
|
||||
echo '<td class="text-center"></td>';
|
||||
} else {
|
||||
echo '<td class="text-center">' , $sqlhis[$uid]['rank'] , '</td>';
|
||||
}
|
||||
}
|
||||
if ($adminlogin == 1) {
|
||||
echo '<td class="text-center"><a href="http://www.tsviewer.com/index.php?page=search&action=ausgabe_user&nickname=' , $sqlhis[$uid]['name'] , '" target="_blank">' , $sqlhis[$uid]['name'] , '</a></td>';
|
||||
@@ -338,7 +345,7 @@ if($adminlogin == 1) {
|
||||
if ($showcoldbid == 1 || $adminlogin == 1)
|
||||
echo '<td class="text-center">' , $sqlhis[$uid]['cldbid'] , '</td>';
|
||||
if ($adminlogin == 1)
|
||||
echo '<td class="center"><a href="http://myip.ms/info/whois/' , long2ip($sqlhis[$uid]['ip']) , '" target="_blank">' , long2ip($sqlhis[$uid]['ip']) , '</a></td>';
|
||||
echo '<td class="center"><a href="http://myip.ms/info/whois/' , inet_ntop($sqlhis[$uid]['ip']) , '" target="_blank">' , inet_ntop($sqlhis[$uid]['ip']) , '</a></td>';
|
||||
if ($showcolls == 1 || $adminlogin == 1) {
|
||||
if ($status == 1) {
|
||||
echo '<td class="text-center text-success">' , date('Y-m-d H:i:s',$lastseen), '</td>';
|
||||
@@ -382,24 +389,23 @@ if($adminlogin == 1) {
|
||||
$dtF = new DateTime("@0");
|
||||
$dtT = new DateTime("@$neededtime");
|
||||
$timecount = $dtF->diff($dtT)->format($timeformat);
|
||||
if (!in_array($uid, $exceptuuid) && !array_intersect($sgroups, $exceptgroup) && $neededtime > 0) {
|
||||
if ($except != 1 && $neededtime > 0) {
|
||||
echo $timecount , '</td>';
|
||||
} elseif (!in_array($uid, $exceptuuid) && !array_intersect($sgroups, $exceptgroup)) {
|
||||
} elseif ($except != 1) {
|
||||
$timecount = 0;
|
||||
echo $timecount , '</td>';
|
||||
} elseif (in_array($uid, $exceptuuid)) {
|
||||
echo $lang['listexuid'] , '</td>';
|
||||
} elseif (array_intersect($sgroups, $exceptgroup)) {
|
||||
echo $lang['listexgrp'] , '</td>';
|
||||
} elseif ($except == 1) {
|
||||
echo '0</td>';
|
||||
} else {
|
||||
echo $lang['errukwn'], '</td>';
|
||||
}
|
||||
}
|
||||
if ($showcolsg == 1 || $adminlogin == 1) {
|
||||
if ($grpcount == $countgrp && $nextup == 0 && $showhighest == 1 || $grpcount == $countgrp && $nextup == 0 && $adminlogin == 1) {
|
||||
echo '<td class="text-center">',$lang['highest'],'</td>';
|
||||
$highest++;
|
||||
} elseif ($sqlhisgroup_file[$groupid]===true) {
|
||||
echo '<td class="text-center"><em>',$lang['highest'],'</em></td>';
|
||||
} elseif ($except == 1) {
|
||||
echo '<td class="text-center"><em>',$lang['listexcept'],'</em></td>';
|
||||
} elseif (isset($sqlhisgroup_file[$groupid]) && $sqlhisgroup_file[$groupid]===true) {
|
||||
echo '<td class="text-center"><img src="../icons/'.$groupid.'.png" alt="groupicon"> ' , $sqlhisgroup[$groupid] , '</td>';
|
||||
} else {
|
||||
echo '<td class="text-center">' , $sqlhisgroup[$groupid] , '</td>';
|
||||
@@ -407,8 +413,6 @@ if($adminlogin == 1) {
|
||||
}
|
||||
echo '</tr>';
|
||||
break;
|
||||
} elseif ($grpcount == $countgrp && $nextup == 0) {
|
||||
$highest++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ require_once('../other/config.php');
|
||||
require_once('../other/session.php');
|
||||
|
||||
if(!isset($_SESSION['tsuid'])) {
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname);
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname, $language);
|
||||
}
|
||||
|
||||
$getstring = $_SESSION['tsuid'];
|
||||
@@ -23,6 +23,7 @@ if ($substridle == 1) {
|
||||
}
|
||||
|
||||
krsort($grouptime);
|
||||
$grpcount = 0;
|
||||
|
||||
foreach ($grouptime as $time => $groupid) {
|
||||
$grpcount++;
|
||||
@@ -113,7 +114,9 @@ require_once('nav.php');
|
||||
<div class="row">
|
||||
<div class="col-xs-9 text-left">
|
||||
<div class="huge"><?PHP echo $_SESSION['tsname'] ?></div>
|
||||
<div><?PHP echo $lang['stmy0002'],' #',$dbdata_fetched[0]['rank']; ?></div>
|
||||
<div><?PHP if ($dbdata_fetched[0]['except'] != 1) {
|
||||
echo $lang['stmy0002'],' #',$dbdata_fetched[0]['rank'];
|
||||
} ?></div>
|
||||
</div>
|
||||
<div class="col-xs-3">
|
||||
<?PHP
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
<script src="../bootstrap/addons/morris/raphael.min.js"></script>
|
||||
<script src="../bootstrap/addons/morris/morris.min.js"></script>
|
||||
<script src="../bootstrap/addons/morris/morris-data.js"></script>
|
||||
<!--<script src="../bootstrap/addons/morris/morris-data.js"></script>-->
|
||||
</head>
|
||||
<body>
|
||||
<div id="myModal" class="modal fade">
|
||||
@@ -33,7 +33,7 @@
|
||||
<h4 class="modal-title"><?PHP echo $lang['stnv0001']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p><?PHP include('../server-news'); ?></p>
|
||||
<p><?PHP echo $servernews; ?></p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
@@ -61,7 +61,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="myModal3" class="modal fade">
|
||||
<div id="battlesystem" class="modal fade">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
|
||||
@@ -6,7 +6,7 @@ require_once('../other/config.php');
|
||||
require_once('../other/session.php');
|
||||
|
||||
if(!isset($_SESSION['tsuid'])) {
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname);
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname, $language);
|
||||
}
|
||||
|
||||
if ($substridle == 1) {
|
||||
|
||||
@@ -6,7 +6,7 @@ require_once('../other/config.php');
|
||||
require_once('../other/session.php');
|
||||
|
||||
if(!isset($_SESSION['tsuid'])) {
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname);
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname, $language);
|
||||
}
|
||||
|
||||
if ($substridle == 1) {
|
||||
|
||||
@@ -6,7 +6,7 @@ require_once('../other/config.php');
|
||||
require_once('../other/session.php');
|
||||
|
||||
if(!isset($_SESSION['tsuid'])) {
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname);
|
||||
set_session_ts3($ts['voice'], $mysqlcon, $dbname, $language);
|
||||
}
|
||||
|
||||
if ($substridle == 1) {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Abstract.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Abstract.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Blacklist.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Blacklist.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: FileTransfer.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: FileTransfer.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: ServerQuery.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: ServerQuery.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Event.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Event.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Reply.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Reply.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -194,7 +194,7 @@ class TeamSpeak3_Adapter_ServerQuery_Reply
|
||||
|
||||
foreach($nodes as $node)
|
||||
{
|
||||
if(array_key_exists($ident, $node))
|
||||
if(isset($node[$ident]))
|
||||
{
|
||||
$array[(is_object($node[$ident])) ? $node[$ident]->toString() : $node[$ident]] = $node;
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: TSDNS.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: TSDNS.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Update.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Update.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
<?PHP
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -19,8 +20,110 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
class TeamSpeak3_Exception extends Exception{ protected static $messages=array(); public function __construct($mesg,$code=0x00){parent::__construct($mesg,$code);if(array_key_exists((int)$code,self::$messages)){$this->message=$this->prepareCustomMessage(self::$messages[intval($code)]);}TeamSpeak3_Helper_Signal::getInstance()->emit("errorException",$this);} protected function prepareCustomMessage(TeamSpeak3_Helper_String$mesg){$args=array("code"=>$this->getCode(),"mesg"=>$this->getMessage(),"line"=>$this->getLine(),"file"=>$this->getFile(),);return $mesg->arg($args)->toString();} public static function registerCustomMessage($code,$mesg){if(array_key_exists((int)$code,self::$messages)){ throw new self("custom message for code 0x".strtoupper(dechex($code))." is already registered");}if(!is_string($mesg)){ throw new self("custom message for code 0x".strtoupper(dechex($code))." must be a string");}self::$messages[(int)$code]=new TeamSpeak3_Helper_String($mesg);} public static function unregisterCustomMessage($code){if(!array_key_exists((int)$code,self::$messages)){ throw new self("custom message for code 0x".strtoupper(dechex($code))." is not registered");}unset(self::$messages[intval($code)]);} public function getSender(){$trace=$this->getTrace();return (isset($trace[0]["class"]))?$trace[0]["class"]:"{main}";}}?>
|
||||
|
||||
/**
|
||||
* @class TeamSpeak3_Exception
|
||||
* @brief Enhanced exception class for TeamSpeak3 objects.
|
||||
*/
|
||||
class TeamSpeak3_Exception extends Exception
|
||||
{
|
||||
/**
|
||||
* Stores custom error messages.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $messages = array();
|
||||
|
||||
/**
|
||||
* The TeamSpeak3_Exception constructor.
|
||||
*
|
||||
* @param string $mesg
|
||||
* @param integer $code
|
||||
* @return TeamSpeak3_Exception
|
||||
*/
|
||||
public function __construct($mesg, $code = 0x00)
|
||||
{
|
||||
parent::__construct($mesg, $code);
|
||||
|
||||
if(array_key_exists((int) $code, self::$messages))
|
||||
{
|
||||
$this->message = $this->prepareCustomMessage(self::$messages[intval($code)]);
|
||||
}
|
||||
|
||||
TeamSpeak3_Helper_Signal::getInstance()->emit("errorException", $this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Prepares a custom error message by replacing pre-defined signs with given values.
|
||||
*
|
||||
* @param TeamSpeak3_Helper_String $mesg
|
||||
* @return TeamSpeak3_Helper_String
|
||||
*/
|
||||
protected function prepareCustomMessage(TeamSpeak3_Helper_String $mesg)
|
||||
{
|
||||
$args = array(
|
||||
"code" => $this->getCode(),
|
||||
"mesg" => $this->getMessage(),
|
||||
"line" => $this->getLine(),
|
||||
"file" => $this->getFile(),
|
||||
);
|
||||
|
||||
return $mesg->arg($args)->toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a custom error message to $code.
|
||||
*
|
||||
* @param integer $code
|
||||
* @param string $mesg
|
||||
* @throws TeamSpeak3_Exception
|
||||
* @return void
|
||||
*/
|
||||
public static function registerCustomMessage($code, $mesg)
|
||||
{
|
||||
if(array_key_exists((int) $code, self::$messages))
|
||||
{
|
||||
throw new self("custom message for code 0x" . strtoupper(dechex($code)) . " is already registered");
|
||||
}
|
||||
|
||||
if(!is_string($mesg))
|
||||
{
|
||||
throw new self("custom message for code 0x" . strtoupper(dechex($code)) . " must be a string");
|
||||
}
|
||||
|
||||
self::$messages[(int) $code] = new TeamSpeak3_Helper_String($mesg);
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters a custom error message from $code.
|
||||
*
|
||||
* @param integer $code
|
||||
* @throws TeamSpeak3_Exception
|
||||
* @return void
|
||||
*/
|
||||
public static function unregisterCustomMessage($code)
|
||||
{
|
||||
if(!array_key_exists((int) $code, self::$messages))
|
||||
{
|
||||
throw new self("custom message for code 0x" . strtoupper(dechex($code)) . " is not registered");
|
||||
}
|
||||
|
||||
unset(self::$messages[(int) $code]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the class from which the exception was thrown.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getSender()
|
||||
{
|
||||
$trace = $this->getTrace();
|
||||
|
||||
return (isset($trace[0]["class"])) ? $trace[0]["class"] : "{main}";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Char.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Char.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Convert.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Convert.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Crypt.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Crypt.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Profiler.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Profiler.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Timer.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Timer.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Signal.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Signal.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Handler.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Handler.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Interface.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Interface.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: String.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: String.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -51,7 +51,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
*/
|
||||
public function __construct($string)
|
||||
{
|
||||
$this->string = strval($string);
|
||||
$this->string = (string) $string;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -177,7 +177,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
* Returns true if the string contains $pattern.
|
||||
*
|
||||
* @param string $pattern
|
||||
* @param booean $regexp
|
||||
* @param boolean $regexp
|
||||
* @return boolean
|
||||
*/
|
||||
public function contains($pattern, $regexp = FALSE)
|
||||
@@ -270,7 +270,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
|
||||
$total = count($sections);
|
||||
$first = intval($first);
|
||||
$last = intval($last);
|
||||
$last = intval($last);
|
||||
|
||||
if($first > $total) return null;
|
||||
if($first > $last) $last = $first;
|
||||
@@ -491,7 +491,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
/**
|
||||
* Decodes the string with MIME base64 and returns the result as an TeamSpeak3_Helper_String
|
||||
*
|
||||
* @param string
|
||||
* @param string $base64
|
||||
* @return TeamSpeak3_Helper_String
|
||||
*/
|
||||
public static function fromBase64($base64)
|
||||
@@ -519,7 +519,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
/**
|
||||
* Returns the TeamSpeak3_Helper_String based on a given hex value.
|
||||
*
|
||||
* @param string
|
||||
* @param string $hex
|
||||
* @throws TeamSpeak3_Helper_Exception
|
||||
* @return TeamSpeak3_Helper_String
|
||||
*/
|
||||
@@ -550,7 +550,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
$utf8_accents = array(
|
||||
"à" => "a",
|
||||
"ô" => "o",
|
||||
"<EFBFBD>?" => "d",
|
||||
"ď" => "d",
|
||||
"ḟ" => "f",
|
||||
"ë" => "e",
|
||||
"š" => "s",
|
||||
@@ -560,9 +560,9 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
"ř" => "r",
|
||||
"ț" => "t",
|
||||
"ň" => "n",
|
||||
"<EFBFBD>?" => "a",
|
||||
"ā" => "a",
|
||||
"ķ" => "k",
|
||||
"<EFBFBD>?" => "s",
|
||||
"ŝ" => "s",
|
||||
"ỳ" => "y",
|
||||
"ņ" => "n",
|
||||
"ĺ" => "l",
|
||||
@@ -573,7 +573,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
"ě" => "e",
|
||||
"é" => "e",
|
||||
"ç" => "c",
|
||||
"<EFBFBD><EFBFBD>?" => "w",
|
||||
"ẁ" => "w",
|
||||
"ċ" => "c",
|
||||
"õ" => "o",
|
||||
"ṡ" => "s",
|
||||
@@ -591,7 +591,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
"ŵ" => "w",
|
||||
"ṫ" => "t",
|
||||
"ū" => "u",
|
||||
"<EFBFBD>?" => "c",
|
||||
"č" => "c",
|
||||
"ö" => "oe",
|
||||
"è" => "e",
|
||||
"ŷ" => "y",
|
||||
@@ -622,7 +622,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
"ñ" => "n",
|
||||
"ń" => "n",
|
||||
"ĥ" => "h",
|
||||
"<EFBFBD>?" => "g",
|
||||
"ĝ" => "g",
|
||||
"đ" => "d",
|
||||
"ĵ" => "j",
|
||||
"ÿ" => "y",
|
||||
@@ -639,8 +639,8 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
"ī" => "i",
|
||||
"ã" => "a",
|
||||
"ġ" => "g",
|
||||
"<EFBFBD><EFBFBD>?" => "m",
|
||||
"<EFBFBD>?" => "o",
|
||||
"ṁ" => "m",
|
||||
"ō" => "o",
|
||||
"ĩ" => "i",
|
||||
"ù" => "u",
|
||||
"į" => "i",
|
||||
@@ -700,7 +700,7 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
"È" => "E",
|
||||
"Ŷ" => "Y",
|
||||
"Ą" => "A",
|
||||
"<EFBFBD>?" => "L",
|
||||
"Ł" => "L",
|
||||
"Ų" => "U",
|
||||
"Ů" => "U",
|
||||
"Ş" => "S",
|
||||
@@ -712,12 +712,12 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
"Ḃ" => "B",
|
||||
"Å" => "A",
|
||||
"Ì" => "I",
|
||||
"<EFBFBD>?" => "I",
|
||||
"Ï" => "I",
|
||||
"Ḋ" => "D",
|
||||
"Ť" => "T",
|
||||
"Ŗ" => "R",
|
||||
"Ä" => "Ae",
|
||||
"<EFBFBD>?" => "I",
|
||||
"Í" => "I",
|
||||
"Ŕ" => "R",
|
||||
"Ê" => "E",
|
||||
"Ü" => "Ue",
|
||||
@@ -727,15 +727,15 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
"Ń" => "N",
|
||||
"Ĥ" => "H",
|
||||
"Ĝ" => "G",
|
||||
"<EFBFBD>?" => "D",
|
||||
"Đ" => "D",
|
||||
"Ĵ" => "J",
|
||||
"Ÿ" => "Y",
|
||||
"Ũ" => "U",
|
||||
"Ŭ" => "U",
|
||||
"Ư" => "U",
|
||||
"Ţ" => "T",
|
||||
"<EFBFBD>?" => "Y",
|
||||
"<EFBFBD>?" => "O",
|
||||
"Ý" => "Y",
|
||||
"Ő" => "O",
|
||||
"Â" => "A",
|
||||
"Ľ" => "L",
|
||||
"Ẅ" => "W",
|
||||
@@ -749,10 +749,10 @@ class TeamSpeak3_Helper_String implements ArrayAccess, Iterator, Countable
|
||||
"Ù" => "U",
|
||||
"Į" => "I",
|
||||
"Ź" => "Z",
|
||||
"<EFBFBD>?" => "A",
|
||||
"Á" => "A",
|
||||
"Û" => "U",
|
||||
"Þ" => "Th",
|
||||
"<EFBFBD>?" => "Dh",
|
||||
"Ð" => "Dh",
|
||||
"Æ" => "Ae",
|
||||
"Ĕ" => "E",
|
||||
"Œ" => "Oe",
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Uri.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Uri.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -155,7 +155,7 @@ class TeamSpeak3_Helper_Uri
|
||||
$this->query = (isset($matches[6])) ? $matches[6] : '';
|
||||
$this->fragment = (isset($matches[8])) ? $matches[8] : '';
|
||||
|
||||
$status = @preg_match("~^(([^:@]*)(:([^@]*))?@)?([^:]+)(:(.*))?$~", (isset($matches[3])) ? $matches[3] : "", $matches);
|
||||
$status = @preg_match("~^(([^:@]*)(:([^@]*))?@)?((?(?=[[])[[][^]]+[]]|[^:]+))(:(.*))?$~", (isset($matches[3])) ? $matches[3] : "", $matches);
|
||||
|
||||
if($status === FALSE)
|
||||
{
|
||||
@@ -166,7 +166,7 @@ class TeamSpeak3_Helper_Uri
|
||||
|
||||
$this->user = isset($matches[2]) ? $matches[2] : "";
|
||||
$this->pass = isset($matches[4]) ? $matches[4] : "";
|
||||
$this->host = isset($matches[5]) ? $matches[5] : "";
|
||||
$this->host = isset($matches[5]) === TRUE ? preg_replace('~^\[([^]]+)\]$~', '\1', $matches[5]) : "";
|
||||
$this->port = isset($matches[7]) ? $matches[7] : "";
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Abstract.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Abstract.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -229,7 +229,6 @@ abstract class TeamSpeak3_Node_Abstract implements RecursiveIterator, ArrayAcces
|
||||
|
||||
$props = $node->getInfo(FALSE);
|
||||
$props = array_intersect_key($props, $rules);
|
||||
$match = TRUE;
|
||||
|
||||
foreach($props as $key => $val)
|
||||
{
|
||||
@@ -403,7 +402,7 @@ abstract class TeamSpeak3_Node_Abstract implements RecursiveIterator, ArrayAcces
|
||||
*/
|
||||
protected function getStorage($key, $default = null)
|
||||
{
|
||||
return (array_key_exists($key, $this->storage) && !empty($this->storage[$key])) ? $this->storage[$key] : $default;
|
||||
return !empty($this->storage[$key]) ? $this->storage[$key] : $default;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Channel.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Channel.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -168,7 +168,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*
|
||||
* @param integer $cldbid
|
||||
* @param boolean $permsid
|
||||
* @return void
|
||||
* @return array
|
||||
*/
|
||||
public function clientPermList($cldbid, $permsid = FALSE)
|
||||
{
|
||||
@@ -186,7 +186,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function clientPermAssign($cldbid, $permid, $permvalue)
|
||||
{
|
||||
return $this->getParent()->channelClientPermAssign($this->getId(), $cldbid, $permid, $permvalue);
|
||||
$this->getParent()->channelClientPermAssign($this->getId(), $cldbid, $permid, $permvalue);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -196,7 +196,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function clientPermAssignByName($cldbid, $permname, $permvalue)
|
||||
{
|
||||
return $this->clientPermAssign($cldbid, $permname, $permvalue);
|
||||
$this->clientPermAssign($cldbid, $permname, $permvalue);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -208,7 +208,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function clientPermRemove($cldbid, $permid)
|
||||
{
|
||||
return $this->getParent()->channelClientPermRemove($this->getId(), $cldbid, $permid);
|
||||
$this->getParent()->channelClientPermRemove($this->getId(), $cldbid, $permid);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -218,7 +218,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function clientPermRemoveByName($cldbid, $permname)
|
||||
{
|
||||
return $this->clientPermRemove($cldbid, $permname);
|
||||
$this->clientPermRemove($cldbid, $permname);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -242,7 +242,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permAssign($permid, $permvalue)
|
||||
{
|
||||
return $this->getParent()->channelPermAssign($this->getId(), $permid, $permvalue);
|
||||
$this->getParent()->channelPermAssign($this->getId(), $permid, $permvalue);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -252,7 +252,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permAssignByName($permname, $permvalue)
|
||||
{
|
||||
return $this->permAssign($permname, $permvalue);
|
||||
$this->permAssign($permname, $permvalue);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -263,7 +263,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permRemove($permid)
|
||||
{
|
||||
return $this->getParent()->channelPermRemove($this->getId(), $permid);
|
||||
$this->getParent()->channelPermRemove($this->getId(), $permid);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -273,7 +273,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permRemoveByName($permname)
|
||||
{
|
||||
return $this->permRemove($permname);
|
||||
$this->permRemove($permname);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -282,7 +282,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
* @param string $cpw
|
||||
* @param string $path
|
||||
* @param boolean $recursive
|
||||
* @return void
|
||||
* @return array
|
||||
*/
|
||||
public function fileList($cpw = "", $path = "/", $recursive = FALSE)
|
||||
{
|
||||
@@ -314,7 +314,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function fileRename($cpw = "", $oldname = "/", $newname = "/", $tcid = null, $tcpw = null)
|
||||
{
|
||||
return $this->getParent()->channelFileRename($this->getId(), $cpw, $oldname, $newname, $tcid, $tcpw);
|
||||
$this->getParent()->channelFileRename($this->getId(), $cpw, $oldname, $newname, $tcid, $tcpw);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -326,7 +326,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function fileDelete($cpw = "", $name = "/")
|
||||
{
|
||||
return $this->getParent()->channelFileDelete($this->getId(), $cpw, $name);
|
||||
$this->getParent()->channelFileDelete($this->getId(), $cpw, $name);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -338,7 +338,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function dirCreate($cpw = "", $dirname = "/")
|
||||
{
|
||||
return $this->getParent()->channelDirCreate($this->getId(), $cpw, $dirname);
|
||||
$this->getParent()->channelDirCreate($this->getId(), $cpw, $dirname);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -401,7 +401,7 @@ class TeamSpeak3_Node_Channel extends TeamSpeak3_Node_Abstract
|
||||
if($this->iconIsLocal("channel_icon_id") || $this["channel_icon_id"] == 0) return;
|
||||
|
||||
$download = $this->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->iconGetName("channel_icon_id"));
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . $download["host"] . ":" . $download["port"]);
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . (strstr($download["host"], ":") !== FALSE ? "[" . $download["host"] . "]" : $download["host"]) . ":" . $download["port"]);
|
||||
|
||||
return $transfer->download($download["ftkey"], $download["size"]);
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Channelgroup.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Channelgroup.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -61,7 +61,7 @@ class TeamSpeak3_Node_Channelgroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function rename($name)
|
||||
{
|
||||
return $this->getParent()->channelGroupRename($this->getId(), $name);
|
||||
$this->getParent()->channelGroupRename($this->getId(), $name);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -112,7 +112,7 @@ class TeamSpeak3_Node_Channelgroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permAssign($permid, $permvalue)
|
||||
{
|
||||
return $this->getParent()->channelGroupPermAssign($this->getId(), $permid, $permvalue);
|
||||
$this->getParent()->channelGroupPermAssign($this->getId(), $permid, $permvalue);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -122,7 +122,7 @@ class TeamSpeak3_Node_Channelgroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permAssignByName($permname, $permvalue)
|
||||
{
|
||||
return $this->permAssign($permname, $permvalue);
|
||||
$this->permAssign($permname, $permvalue);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -134,7 +134,7 @@ class TeamSpeak3_Node_Channelgroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permRemove($permid)
|
||||
{
|
||||
return $this->getParent()->channelGroupPermRemove($this->getId(), $permid);
|
||||
$this->getParent()->channelGroupPermRemove($this->getId(), $permid);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -144,7 +144,7 @@ class TeamSpeak3_Node_Channelgroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permRemoveByName($permname)
|
||||
{
|
||||
return $this->permRemove($permname);
|
||||
$this->permRemove($permname);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -212,7 +212,7 @@ class TeamSpeak3_Node_Channelgroup extends TeamSpeak3_Node_Abstract
|
||||
if($this->iconIsLocal("iconid") || $this["iconid"] == 0) return;
|
||||
|
||||
$download = $this->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->iconGetName("iconid"));
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . $download["host"] . ":" . $download["port"]);
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . (strstr($download["host"], ":") !== FALSE ? "[" . $download["host"] . "]" : $download["host"]) . ":" . $download["port"]);
|
||||
|
||||
return $transfer->download($download["ftkey"], $download["size"]);
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Client.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Client.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -75,7 +75,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function modifyDb(array $properties)
|
||||
{
|
||||
return $this->getParent()->clientModifyDb($this["client_database_id"], $properties);
|
||||
$this->getParent()->clientModifyDb($this["client_database_id"], $properties);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -85,7 +85,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function deleteDb()
|
||||
{
|
||||
return $this->getParent()->clientDeleteDb($this["client_database_id"]);
|
||||
$this->getParent()->clientDeleteDb($this["client_database_id"]);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -118,7 +118,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function move($cid, $cpw = null)
|
||||
{
|
||||
return $this->getParent()->clientMove($this->getId(), $cid, $cpw);
|
||||
$this->getParent()->clientMove($this->getId(), $cid, $cpw);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -130,7 +130,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function kick($reasonid = TeamSpeak3::KICK_CHANNEL, $reasonmsg = null)
|
||||
{
|
||||
return $this->getParent()->clientKick($this->getId(), $reasonid, $reasonmsg);
|
||||
$this->getParent()->clientKick($this->getId(), $reasonid, $reasonmsg);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -141,7 +141,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function poke($msg)
|
||||
{
|
||||
return $this->getParent()->clientPoke($this->getId(), $msg);
|
||||
$this->getParent()->clientPoke($this->getId(), $msg);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -200,7 +200,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permAssign($permid, $permvalue, $permskip = FALSE)
|
||||
{
|
||||
return $this->getParent()->clientPermAssign($this["client_database_id"], $permid, $permvalue, $permskip);
|
||||
$this->getParent()->clientPermAssign($this["client_database_id"], $permid, $permvalue, $permskip);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -210,7 +210,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permAssignByName($permname, $permvalue, $permskip = FALSE)
|
||||
{
|
||||
return $this->permAssign($permname, $permvalue, $permskip);
|
||||
$this->permAssign($permname, $permvalue, $permskip);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -221,7 +221,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permRemove($permid)
|
||||
{
|
||||
return $this->getParent()->clientPermRemove($this["client_database_id"], $permid);
|
||||
$this->getParent()->clientPermRemove($this["client_database_id"], $permid);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -231,7 +231,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permRemoveByName($permname)
|
||||
{
|
||||
return $this->permRemove($permname);
|
||||
$this->permRemove($permname);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -243,7 +243,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function setChannelGroup($cid, $cgid)
|
||||
{
|
||||
return $this->getParent()->clientSetChannelGroup($this["client_database_id"], $cid, $cgid);
|
||||
$this->getParent()->clientSetChannelGroup($this["client_database_id"], $cid, $cgid);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -254,7 +254,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function addServerGroup($sgid)
|
||||
{
|
||||
return $this->getParent()->serverGroupClientAdd($sgid, $this["client_database_id"]);
|
||||
$this->getParent()->serverGroupClientAdd($sgid, $this["client_database_id"]);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -265,7 +265,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function remServerGroup($sgid)
|
||||
{
|
||||
return $this->getParent()->serverGroupClientDel($sgid, $this["client_database_id"]);
|
||||
$this->getParent()->serverGroupClientDel($sgid, $this["client_database_id"]);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -288,7 +288,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
if($this["client_flag_avatar"]->toString() == 0) return;
|
||||
|
||||
$download = $this->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->avatarGetName());
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . $download["host"] . ":" . $download["port"]);
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . (strstr($download["host"], ":") !== FALSE ? "[" . $download["host"] . "]" : $download["host"]) . ":" . $download["port"]);
|
||||
|
||||
return $transfer->download($download["ftkey"], $download["size"]);
|
||||
}
|
||||
@@ -340,7 +340,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
if($this->iconIsLocal("client_icon_id") || $this["client_icon_id"] == 0) return;
|
||||
|
||||
$download = $this->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->iconGetName("client_icon_id"));
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . $download["host"] . ":" . $download["port"]);
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . (strstr($download["host"], ":") !== FALSE ? "[" . $download["host"] . "]" : $download["host"]) . ":" . $download["port"]);
|
||||
|
||||
return $transfer->download($download["ftkey"], $download["size"]);
|
||||
}
|
||||
@@ -362,7 +362,7 @@ class TeamSpeak3_Node_Client extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
protected function fetchNodeInfo()
|
||||
{
|
||||
if($this["client_type"] == 1) return;
|
||||
if($this->offsetExists("client_type") && $this["client_type"] == 1) return;
|
||||
|
||||
$this->nodeInfo = array_merge($this->nodeInfo, $this->execute("clientinfo", array("clid" => $this->getId()))->toList());
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Host.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Host.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -125,7 +125,7 @@ class TeamSpeak3_Node_Host extends TeamSpeak3_Node_Abstract
|
||||
$this->version = $this->request("version")->toList();
|
||||
}
|
||||
|
||||
return ($ident && array_key_exists($ident, $this->version)) ? $this->version[$ident] : $this->version;
|
||||
return ($ident && isset($this->version[$ident])) ? $this->version[$ident] : $this->version;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -467,9 +467,9 @@ class TeamSpeak3_Node_Host extends TeamSpeak3_Node_Abstract
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function bindingList()
|
||||
public function bindingList($subsystem = "voice")
|
||||
{
|
||||
return $this->request("bindinglist")->toArray();
|
||||
return $this->execute("bindinglist", array("subsystem" => $subsystem))->toArray();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -906,7 +906,7 @@ class TeamSpeak3_Node_Host extends TeamSpeak3_Node_Abstract
|
||||
{
|
||||
$this->whoami();
|
||||
|
||||
$this->whoami[$ident] = (is_numeric($value)) ? intval($value) : TeamSpeak3_Helper_String::factory($value);
|
||||
$this->whoami[$ident] = (is_numeric($value)) ? (int) $value : TeamSpeak3_Helper_String::factory($value);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1176,7 +1176,16 @@ class TeamSpeak3_Node_Host extends TeamSpeak3_Node_Abstract
|
||||
$func = array_shift($server);
|
||||
$args = array_shift($server);
|
||||
|
||||
call_user_func_array(array($this, $func), $args);
|
||||
try
|
||||
{
|
||||
call_user_func_array(array($this, $func), $args);
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
$class = get_class($e);
|
||||
|
||||
throw new $class($e->getMessage(), $e->getCode());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Server.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Server.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -159,7 +159,7 @@ class TeamSpeak3_Node_Server extends TeamSpeak3_Node_Abstract
|
||||
$cid = $this->execute("channelcreate", $properties)->toList();
|
||||
$this->channelListReset();
|
||||
|
||||
if(!isset($properties["client_flag_permanent"]) && !isset($properties["client_flag_semi_permanent"]))
|
||||
if(!isset($properties["channel_flag_permanent"]) && !isset($properties["channel_flag_semi_permanent"]))
|
||||
{
|
||||
$this->getParent()->whoamiSet("client_channel_id", $cid["cid"]);
|
||||
}
|
||||
@@ -1753,7 +1753,7 @@ class TeamSpeak3_Node_Server extends TeamSpeak3_Node_Abstract
|
||||
if($this->iconIsLocal("virtualserver_icon_id") || $this["virtualserver_icon_id"] == 0) return;
|
||||
|
||||
$download = $this->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->iconGetName("virtualserver_icon_id"));
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . $download["host"] . ":" . $download["port"]);
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . (strstr($download["host"], ":") !== FALSE ? "[" . $download["host"] . "]" : $download["host"]) . ":" . $download["port"]);
|
||||
|
||||
return $transfer->download($download["ftkey"], $download["size"]);
|
||||
}
|
||||
@@ -1770,7 +1770,7 @@ class TeamSpeak3_Node_Server extends TeamSpeak3_Node_Abstract
|
||||
$size = strlen($data);
|
||||
|
||||
$upload = $this->transferInitUpload(rand(0x0000, 0xFFFF), 0, "/icon_" . $crc, $size);
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . $upload["host"] . ":" . $upload["port"]);
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . (strstr($upload["host"], ":") !== FALSE ? "[" . $upload["host"] . "]" : $upload["host"]) . ":" . $upload["port"]);
|
||||
|
||||
$transfer->upload($upload["ftkey"], $upload["seekpos"], $data);
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Servergroup.php 10/11/2013 11:35:21 scp@orilla $
|
||||
* $Id: Servergroup.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -61,7 +61,7 @@ class TeamSpeak3_Node_Servergroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function rename($name)
|
||||
{
|
||||
return $this->getParent()->serverGroupRename($this->getId(), $name);
|
||||
$this->getParent()->serverGroupRename($this->getId(), $name);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -114,7 +114,7 @@ class TeamSpeak3_Node_Servergroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permAssign($permid, $permvalue, $permnegated = FALSE, $permskip = FALSE)
|
||||
{
|
||||
return $this->getParent()->serverGroupPermAssign($this->getId(), $permid, $permvalue, $permnegated, $permskip);
|
||||
$this->getParent()->serverGroupPermAssign($this->getId(), $permid, $permvalue, $permnegated, $permskip);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -124,7 +124,7 @@ class TeamSpeak3_Node_Servergroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permAssignByName($permname, $permvalue, $permnegated = FALSE, $permskip = FALSE)
|
||||
{
|
||||
return $this->permAssign($permname, $permvalue, $permnegated, $permskip);
|
||||
$this->permAssign($permname, $permvalue, $permnegated, $permskip);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -136,7 +136,7 @@ class TeamSpeak3_Node_Servergroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permRemove($permid)
|
||||
{
|
||||
return $this->getParent()->serverGroupPermRemove($this->getId(), $permid);
|
||||
$this->getParent()->serverGroupPermRemove($this->getId(), $permid);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -146,7 +146,7 @@ class TeamSpeak3_Node_Servergroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function permRemoveByName($permname)
|
||||
{
|
||||
return $this->permRemove($permname);
|
||||
$this->permRemove($permname);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -168,7 +168,7 @@ class TeamSpeak3_Node_Servergroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function clientAdd($cldbid)
|
||||
{
|
||||
return $this->getParent()->serverGroupClientAdd($this->getId(), $cldbid);
|
||||
$this->getParent()->serverGroupClientAdd($this->getId(), $cldbid);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -179,7 +179,7 @@ class TeamSpeak3_Node_Servergroup extends TeamSpeak3_Node_Abstract
|
||||
*/
|
||||
public function clientDel($cldbid)
|
||||
{
|
||||
return $this->getParent()->serverGroupClientDel($this->getId(), $cldbid);
|
||||
$this->getParent()->serverGroupClientDel($this->getId(), $cldbid);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -236,7 +236,7 @@ class TeamSpeak3_Node_Servergroup extends TeamSpeak3_Node_Abstract
|
||||
if($this->iconIsLocal("iconid") || $this["iconid"] == 0) return;
|
||||
|
||||
$download = $this->getParent()->transferInitDownload(rand(0x0000, 0xFFFF), 0, $this->iconGetName("iconid"));
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . $download["host"] . ":" . $download["port"]);
|
||||
$transfer = TeamSpeak3::factory("filetransfer://" . (strstr($download["host"], ":") !== FALSE ? "[" . $download["host"] . "]" : $download["host"]) . ":" . $download["port"]);
|
||||
|
||||
return $transfer->download($download["ftkey"], $download["size"]);
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Abstract.php 10/11/2013 11:35:22 scp@orilla $
|
||||
* $Id: Abstract.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -186,7 +186,7 @@ abstract class TeamSpeak3_Transport_Abstract
|
||||
*/
|
||||
public function setAdapter(TeamSpeak3_Adapter_Abstract $adapter)
|
||||
{
|
||||
$this->adapter = $adapter;
|
||||
$this->adapter = get_class($adapter);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -208,7 +208,7 @@ abstract class TeamSpeak3_Transport_Abstract
|
||||
{
|
||||
if($this->adapter instanceof TeamSpeak3_Adapter_Abstract)
|
||||
{
|
||||
$string = TeamSpeak3_Helper_String::factory(get_class($this->adapter));
|
||||
$string = TeamSpeak3_Helper_String::factory($this->adapter);
|
||||
|
||||
return $string->substr($string->findLast("_"))->replace(array("_", " "), "")->toString();
|
||||
}
|
||||
@@ -253,7 +253,8 @@ abstract class TeamSpeak3_Transport_Abstract
|
||||
{
|
||||
if(!$this->isConnected() || $this->config["blocking"]) return;
|
||||
|
||||
do {
|
||||
do
|
||||
{
|
||||
$read = array($this->stream);
|
||||
$null = null;
|
||||
|
||||
@@ -263,6 +264,7 @@ abstract class TeamSpeak3_Transport_Abstract
|
||||
}
|
||||
|
||||
$time = $time+$this->config["timeout"];
|
||||
} while(@stream_select($read, $null, $null, $this->config["timeout"]) == 0);
|
||||
}
|
||||
while(@stream_select($read, $null, $null, $this->config["timeout"]) == 0);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: Exception.php 10/11/2013 11:35:22 scp@orilla $
|
||||
* $Id: Exception.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: TCP.php 10/11/2013 11:35:22 scp@orilla $
|
||||
* $Id: TCP.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -44,8 +44,8 @@ class TeamSpeak3_Transport_TCP extends TeamSpeak3_Transport_Abstract
|
||||
$host = strval($this->config["host"]);
|
||||
$port = strval($this->config["port"]);
|
||||
|
||||
$address = "tcp://" . $host . ":" . $port;
|
||||
$timeout = intval($this->config["timeout"]);
|
||||
$address = "tcp://" . (strstr($host, ":") !== FALSE ? "[" . $host . "]" : $host) . ":" . $port;
|
||||
$timeout = (int) $this->config["timeout"];
|
||||
|
||||
$this->stream = @stream_socket_client($address, $errno, $errstr, $timeout);
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* @file
|
||||
* TeamSpeak 3 PHP Framework
|
||||
*
|
||||
* $Id: UDP.php 10/11/2013 11:35:22 scp@orilla $
|
||||
* $Id: UDP.php 06/06/2016 22:27:13 scp@Svens-iMac $
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@@ -20,7 +20,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package TeamSpeak3
|
||||
* @version 1.1.23
|
||||
* @version 1.1.24
|
||||
* @author Sven 'ScP' Paulsen
|
||||
* @copyright Copyright (c) 2010 by Planet TeamSpeak. All rights reserved.
|
||||
*/
|
||||
@@ -44,8 +44,8 @@ class TeamSpeak3_Transport_UDP extends TeamSpeak3_Transport_Abstract
|
||||
$host = strval($this->config["host"]);
|
||||
$port = strval($this->config["port"]);
|
||||
|
||||
$address = "udp://" . $host . ":" . $port;
|
||||
$timeout = intval($this->config["timeout"]);
|
||||
$address = "udp://" . (strstr($host, ":") !== FALSE ? "[" . $host . "]" : $host) . ":" . $port;
|
||||
$timeout = (int) $this->config["timeout"];
|
||||
|
||||
$this->stream = @stream_socket_client($address, $errno, $errstr, $timeout);
|
||||
|
||||
|
||||
@@ -20,14 +20,19 @@ function getclientip() {
|
||||
return false;
|
||||
}
|
||||
|
||||
function getlog($logpath,$number_lines) {
|
||||
function getlog($logpath,$number_lines,$filters) {
|
||||
$lines=array();
|
||||
if(file_exists($logpath."ranksystem.log")) {
|
||||
$fp = fopen($logpath."ranksystem.log", "r");
|
||||
while(!feof($fp)) {
|
||||
$line = fgets($fp, 4096);
|
||||
array_push($lines, $line);
|
||||
if (count($lines)>$number_lines) array_shift($lines);
|
||||
foreach($filters as $filter) {
|
||||
if($filter != NULL && strstr($line, $filter)) {
|
||||
array_push($lines, $line);
|
||||
if (count($lines)>$number_lines) array_shift($lines);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose($fp);
|
||||
} else {
|
||||
@@ -55,6 +60,33 @@ if (isset($_POST['number'])) {
|
||||
$number_lines = 20;
|
||||
}
|
||||
}
|
||||
|
||||
$filters = '';
|
||||
if (isset($_POST['logfilter']) && in_array('critical', $_POST['logfilter'])) {
|
||||
$filters .= "CRITICAL,";
|
||||
}
|
||||
if (isset($_POST['logfilter']) && in_array('error', $_POST['logfilter'])) {
|
||||
$filters .= "ERROR,";
|
||||
}
|
||||
if (isset($_POST['logfilter']) && in_array('warning', $_POST['logfilter'])) {
|
||||
$filters .= "WARNING,";
|
||||
}
|
||||
if (isset($_POST['logfilter']) && in_array('notice', $_POST['logfilter'])) {
|
||||
$filters .= "NOTICE,";
|
||||
}
|
||||
if (isset($_POST['logfilter']) && in_array('info', $_POST['logfilter'])) {
|
||||
$filters .= "INFO,";
|
||||
}
|
||||
if (isset($_POST['logfilter']) && in_array('debug', $_POST['logfilter'])) {
|
||||
$filters .= "DEBUG,";
|
||||
}
|
||||
|
||||
if (!isset($_POST['logfilter'])) {
|
||||
$filters = "CRITICAL,ERROR,WARNING,NOTICE,INFO,DEBUG";
|
||||
}
|
||||
|
||||
$filters = explode(',', $filters);
|
||||
|
||||
if (isset($_POST['logout'])) {
|
||||
echo "logout";
|
||||
$_SESSION = array();
|
||||
@@ -77,7 +109,7 @@ if (!isset($_SESSION['username']) || $_SESSION['username'] != $webuser || $_SESS
|
||||
}
|
||||
|
||||
require_once('nav.php');
|
||||
$logoutput = getlog($logpath,$number_lines);
|
||||
$logoutput = getlog($logpath,$number_lines,$filters);
|
||||
|
||||
if (isset($_POST['start']) && $_SESSION['username'] == $webuser && $_SESSION['password'] == $webpass && $_SESSION['clientip'] == getclientip()) {
|
||||
if (substr(php_uname(), 0, 7) == "Windows") {
|
||||
@@ -89,7 +121,7 @@ if (isset($_POST['start']) && $_SESSION['username'] == $webuser && $_SESSION['pa
|
||||
$err_msg = $lang['wibot2'];
|
||||
$err_lvl = 1;
|
||||
usleep(80000);
|
||||
$logoutput = getlog($logpath,$number_lines);
|
||||
$logoutput = getlog($logpath,$number_lines,$filters);
|
||||
}
|
||||
|
||||
if (isset($_POST['stop']) && $_SESSION['username'] == $webuser && $_SESSION['password'] == $webpass && $_SESSION['clientip'] == getclientip()) {
|
||||
@@ -102,7 +134,7 @@ if (isset($_POST['stop']) && $_SESSION['username'] == $webuser && $_SESSION['pas
|
||||
$err_msg = $lang['wibot1'];
|
||||
$err_lvl = 1;
|
||||
usleep(80000);
|
||||
$logoutput = getlog($logpath,$number_lines);
|
||||
$logoutput = getlog($logpath,$number_lines,$filters);
|
||||
}
|
||||
|
||||
if (isset($_POST['restart']) && $_SESSION['username'] == $webuser && $_SESSION['password'] == $webpass && $_SESSION['clientip'] == getclientip()) {
|
||||
@@ -115,7 +147,7 @@ if (isset($_POST['restart']) && $_SESSION['username'] == $webuser && $_SESSION['
|
||||
$err_msg = $lang['wibot3'];
|
||||
$err_lvl = 1;
|
||||
usleep(80000);
|
||||
$logoutput = getlog($logpath,$number_lines);
|
||||
$logoutput = getlog($logpath,$number_lines,$filters);
|
||||
}
|
||||
|
||||
$disabled = '';
|
||||
@@ -170,13 +202,55 @@ if($ts['host'] == NULL || $ts['query'] == NULL || $ts['voice'] == NULL || $ts['u
|
||||
</form>
|
||||
<div class="row"> </div>
|
||||
<div class="row">
|
||||
<div class="col-lg-10">
|
||||
<div class="col-lg-4">
|
||||
<h4>
|
||||
<?PHP echo $lang['wibot8']; ?>
|
||||
</h4>
|
||||
</div>
|
||||
<form class="form-horizontal" name="logfilter" method="POST">
|
||||
<div class="col-lg-1">
|
||||
<div class="checkbox">
|
||||
<label><input id="switch-create-destroy" type="checkbox" name="logfilter[]" value="critical" data-switch-no-init onchange="this.form.submit();"
|
||||
<?PHP if(in_array('CRITICAL', $filters)) { echo "checked"; } ?>
|
||||
>Critical</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-1">
|
||||
<div class="checkbox">
|
||||
<label><input id="switch-create-destroy" type="checkbox" name="logfilter[]" value="error" data-switch-no-init onchange="this.form.submit();"
|
||||
<?PHP if(in_array('ERROR', $filters)) { echo "checked"; } ?>
|
||||
>Error</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-1">
|
||||
<div class="checkbox">
|
||||
<label><input id="switch-create-destroy" type="checkbox" name="logfilter[]" value="warning" data-switch-no-init onchange="this.form.submit();"
|
||||
<?PHP if(in_array('WARNING', $filters)) { echo "checked"; } ?>
|
||||
>Warning</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-1">
|
||||
<div class="checkbox">
|
||||
<label><input id="switch-create-destroy" type="checkbox" name="logfilter[]" value="notice" data-switch-no-init onchange="this.form.submit();"
|
||||
<?PHP if(in_array('NOTICE', $filters)) { echo "checked"; } ?>
|
||||
>Notice</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-1">
|
||||
<div class="checkbox">
|
||||
<label><input id="switch-create-destroy" type="checkbox" name="logfilter[]" value="info" data-switch-no-init onchange="this.form.submit();"
|
||||
<?PHP if(in_array('INFO', $filters)) { echo "checked"; } ?>
|
||||
>Info</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-1">
|
||||
<div class="checkbox">
|
||||
<label><input id="switch-create-destroy" type="checkbox" name="logfilter[]" value="debug" data-switch-no-init onchange="this.form.submit();"
|
||||
<?PHP if(in_array('DEBUG', $filters)) { echo "checked"; } ?>
|
||||
>Debug</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2">
|
||||
<form class="form-horizontal" name="lines" method="POST">
|
||||
<div class="col-sm-8 pull-right">
|
||||
<select class="selectpicker show-tick form-control" id="number" name="number" onchange="this.form.submit();">
|
||||
<?PHP
|
||||
@@ -189,8 +263,8 @@ if($ts['host'] == NULL || $ts['query'] == NULL || $ts['voice'] == NULL || $ts['u
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
|
||||
@@ -79,7 +79,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wisupidledesc"><?php echo $lang['wisupidle']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wisupidledesc"><?php echo $lang['wisupidle']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<select class="selectpicker show-tick form-control" id="basic" name="substridle">
|
||||
<?PHP
|
||||
@@ -92,21 +92,21 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiexuiddesc"><?php echo $lang['wiexuid']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiexuiddesc"><?php echo $lang['wiexuid']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<textarea class="form-control" data-pattern="^([A-Za-z0-9\\\/\+]{27}=,)*([A-Za-z0-9\\\/\+]{27}=)$" data-error="Check all unique IDs are correct and your list do not ends with a comma!" rows="1" name="exceptuuid"><?php echo $config[0]['exceptuuid']; ?></textarea>
|
||||
<div class="help-block with-errors"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiexgrpdesc"><?php echo $lang['wiexgrp']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiexgrpdesc"><?php echo $lang['wiexgrp']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<textarea class="form-control" data-pattern="^([0-9]+,)*[0-9]+$" data-error="Only use digits separated with a comma! Also must the first and last value be digit!" rows="1" name="exceptgroup"><?php echo $config[0]['exceptgroup']; ?></textarea>
|
||||
<div class="help-block with-errors"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiexciddesc"><?php echo $lang['wiexcid']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiexciddesc"><?php echo $lang['wiexcid']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<textarea class="form-control" data-pattern="^([0-9]+,)*[0-9]+$" data-error="Only use digits separated with a comma! Also must the first and last value be digit!" rows="1" name="exceptcid"><?php echo $config[0]['exceptcid']; ?></textarea>
|
||||
<div class="help-block with-errors"></div>
|
||||
@@ -116,7 +116,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="form-group required-field-block">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wigrptimedesc"><?php echo $lang['wigrptime']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wigrptimedesc"><?php echo $lang['wigrptime']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<textarea class="form-control" data-pattern="^([0-9]+=>[0-9]+,)*[0-9]+=>[0-9]+$" data-error="Wrong definition, please look at description for more details. No comma at ending!" rows="5" name="grouptime" required><?php echo $config[0]['grouptime']; ?></textarea>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
@@ -126,7 +126,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
<div class="col-md-6 ">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiignidledesc"><?php echo $lang['wiignidle']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiignidledesc"><?php echo $lang['wiignidle']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" class="form-control" name="ignoreidle" value="<?php echo $ignoreidle; ?>">
|
||||
<script>
|
||||
@@ -140,7 +140,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wichdbiddesc"><?php echo $lang['wichdbid']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wichdbiddesc"><?php echo $lang['wichdbid']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-lg-8">
|
||||
<?PHP if ($resetbydbchange == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="resetbydbchange" value="',$resetbydbchange,'">';
|
||||
@@ -153,7 +153,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#cleancdesc"><?php echo $lang['cleanc']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#cleancdesc"><?php echo $lang['cleanc']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($cleanclients == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="cleanclients" value="',$cleanclients,'">';
|
||||
@@ -164,7 +164,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#cleanpdesc"><?php echo $lang['cleanp']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#cleanpdesc"><?php echo $lang['cleanp']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" class="form-control" name="cleanperiod" value="<?php echo $cleanperiod; ?>">
|
||||
<script>
|
||||
@@ -180,9 +180,10 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiboostdesc"><?php echo $lang['wiboost']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiboostdesc"><?php echo $lang['wiboost']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<textarea class="form-control" data-pattern="^([0-9]+=>[1-9][0-9]{0,9}=>[0-9]+,)*[0-9]+=>[1-9][0-9]{0,9}=>[0-9]+$" data-error="Wrong definition, please look at description for more details. No comma at ending! rows="5" name="boost"><?php echo $config[0]['boost']; ?></textarea>
|
||||
<textarea class="form-control" data-pattern="^([1-9][0-9]{0,9}=>[1-9][0-9]{0,9}=>[1-9][0-9]{0,9},)*[1-9][0-9]{0,9}=>[1-9][0-9]{0,9}=>[1-9][0-9]{0,9}$" data-error="Wrong definition, please look at description for more details. No comma at ending!" rows="5" name="boost"><?php echo $config[0]['boost']; ?></textarea>
|
||||
<div class="help-block with-errors"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -92,7 +92,7 @@ $db[\'dbname\']="'.$_POST['dbname'].'";
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbtypedesc"><?php echo $lang['isntwidbtype']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbtypedesc"><?php echo $lang['isntwidbtype']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<select class="selectpicker show-tick form-control" id="basic" name="dbtype" required>
|
||||
<option disabled value=""> -- select database -- </option>
|
||||
@@ -114,14 +114,14 @@ $db[\'dbname\']="'.$_POST['dbname'].'";
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbhostdesc"><?php echo $lang['isntwidbhost']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbhostdesc"><?php echo $lang['isntwidbhost']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="dbhost" value="<?php echo $db['host']; ?>" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbnamedesc"><?php echo $lang['isntwidbname']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbnamedesc"><?php echo $lang['isntwidbname']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="dbname" value="<?php echo $dbname; ?>" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
@@ -133,14 +133,14 @@ $db[\'dbname\']="'.$_POST['dbname'].'";
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbusrdesc"><?php echo $lang['isntwidbusr']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbusrdesc"><?php echo $lang['isntwidbusr']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="dbuser" value="<?php echo $db['user']; ?>" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbpassdesc"><?php echo $lang['isntwidbpass']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#isntwidbpassdesc"><?php echo $lang['isntwidbpass']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="password" class="form-control" name="dbpass" value="<?php echo $db['pass']; ?>" data-toggle="password" data-placement="before" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
|
||||
@@ -57,7 +57,7 @@ function getclientip() {
|
||||
}
|
||||
|
||||
if(($last_access = $mysqlcon->query("SELECT last_access,count_access FROM $dbname.config")) === false) {
|
||||
$sqlmsg .= print_r($mysqlcon->errorInfo());
|
||||
$err_msg .= print_r($mysqlcon->errorInfo());
|
||||
}
|
||||
$last_access = $last_access->fetchAll();
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?PHP
|
||||
<?PHP
|
||||
session_start();
|
||||
|
||||
require_once('../other/config.php');
|
||||
@@ -44,8 +44,9 @@ require_once('nav.php');
|
||||
|
||||
if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['password'] == $webpass && $_SESSION['clientip'] == getclientip()) {
|
||||
$rankupmsg = addslashes($_POST['rankupmsg']);
|
||||
$servernews = addslashes($_POST['servernews']);
|
||||
if (isset($_POST['msgtouser'])) $msgtouser = 1; else $msgtouser = 0;
|
||||
if ($mysqlcon->exec("UPDATE $dbname.config set msgtouser='$msgtouser',rankupmsg='$rankupmsg'") === false) {
|
||||
if ($mysqlcon->exec("UPDATE $dbname.config set msgtouser='$msgtouser',rankupmsg='$rankupmsg',servernews='$servernews'") === false) {
|
||||
$err_msg = print_r($mysqlcon->errorInfo());
|
||||
$err_lvl = 3;
|
||||
} else {
|
||||
@@ -53,6 +54,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
$err_lvl = NULL;
|
||||
}
|
||||
$rankupmsg = $_POST['rankupmsg'];
|
||||
$servernews = $_POST['servernews'];
|
||||
}
|
||||
?>
|
||||
<div id="page-wrapper">
|
||||
@@ -67,13 +69,23 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
<form class="form-horizontal" name="update" method="POST">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<div class="col-md-6">
|
||||
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wimsgsndesc"><?php echo $lang['wimsgsn']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<textarea class="form-control" rows="15" name="servernews"><?php echo $servernews; ?></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wimsgusrdesc"><?php echo $lang['wimsgusr']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wimsgusrdesc"><?php echo $lang['wimsgusr']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($msgtouser == 1) {
|
||||
echo '<input id="switch-animate" type="checkbox" checked data-size="mini" name="msgtouser" value="',$msgtouser,'">';
|
||||
@@ -83,7 +95,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wimsgmsgdesc"><?php echo $lang['wimsgmsg']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wimsgmsgdesc"><?php echo $lang['wimsgmsg']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<textarea class="form-control" rows="5" name="rankupmsg"><?php echo $rankupmsg; ?></textarea>
|
||||
</div>
|
||||
@@ -135,6 +147,21 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><div class="modal fade" id="wimsgsndesc" tabindex="-1">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><?php echo $lang['wimsgsn']; ?></h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<?php echo $lang['wimsgsndesc']; ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><?PHP echo $lang['stnv0002']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,4 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
@@ -50,11 +50,14 @@
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top">
|
||||
<div class="navbar-header">
|
||||
<a class="navbar-brand" href="index.php">TSN Ranksystem - Webinterface <?PHP echo $currvers;?></a>
|
||||
<?PHP if(isset($_SESSION['newversion']) && version_compare(substr($_SESSION['newversion'], 0, 5), substr($currvers, 0, 5), '>') && $_SESSION['newversion'] != '') {
|
||||
echo '<a class="navbar-brand" href="http://ts-n.net/ranksystem.php" target="_blank">'.$lang['winav9'].' ['.$_SESSION['newversion'].']</a>';
|
||||
} ?>
|
||||
</div>
|
||||
<?PHP if(basename($_SERVER['SCRIPT_NAME']) == "stats.php") { ?>
|
||||
<ul class="nav navbar-left top-nav">
|
||||
<li class="navbar-form navbar-right">
|
||||
<button onclick="window.location.href='../stats/list_rankup.php?admin=true'; return false;" class="btn btn-primary" name="restart">
|
||||
<button onclick="window.open('../stats/list_rankup.php?admin=true','_blank'); return false;" class="btn btn-primary" name="adminlist">
|
||||
<i class="fa fa-fw fa-list"></i> <?PHP echo $lang['wihladm']; ?>
|
||||
</button>
|
||||
</li>
|
||||
@@ -126,10 +129,6 @@
|
||||
</div>
|
||||
</nav>
|
||||
<?PHP
|
||||
if(isset($_SESSION['newversion']) && version_compare(substr($_SESSION['newversion'], 0, 5), substr($currvers, 0, 5), '>') && $_SESSION['newversion'] != '') {
|
||||
$err_msg = '<a href="http://ts-n.net/ranksystem.php" target="_blank"><span class="ifcolor">'.$lang['winav9'].'</span></a>'; $err_lvl = 1;
|
||||
}
|
||||
|
||||
if(!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != "on") {
|
||||
$host = "<a href=\"https://".$_SERVER['HTTP_HOST'].rtrim(dirname($_SERVER['PHP_SELF']), '/\\')."\">";
|
||||
$err_msg = sprintf($lang['winav10'], $host,'</a>!<br>', '<br>'); $err_lvl = 2;
|
||||
|
||||
@@ -75,7 +75,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#witimedesc"><?php echo $lang['witime']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#witimedesc"><?php echo $lang['witime']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<select class="selectpicker show-tick form-control" data-live-search="true" name="timezone">
|
||||
<?PHP
|
||||
@@ -92,20 +92,20 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#widaformdesc"><?php echo $lang['widaform']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#widaformdesc"><?php echo $lang['widaform']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" class="form-control" name="dateformat" value="<?php echo $timeformat; ?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wivlangdesc"><?php echo $lang['wilog']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wilogdesc"><?php echo $lang['wilog']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="logpath" value="<?php echo $logpath; ?>" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wivlangdesc"><?php echo $lang['wivlang']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wivlangdesc"><?php echo $lang['wivlang']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<select class="selectpicker show-tick form-control" name="languagedb">
|
||||
<?PHP
|
||||
@@ -113,6 +113,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
echo '<option data-subtext="Deutsch" value="de"'.($language === 'de' ? ' selected="selected"' : '').'>DE</option>';
|
||||
echo '<option data-subtext="english" value="en"'.($language === 'en' ? ' selected="selected"' : '').'>EN</option>';
|
||||
echo '<option data-subtext="italiano" value="it"'.($language === 'it' ? ' selected="selected"' : '').'>IT</option>';
|
||||
echo '<option data-subtext="românesc" value="ro"'.($language === 'ro' ? ' selected="selected"' : '').'>RO</option>';
|
||||
echo '<option data-subtext="русский" value="ru"'.($language === 'ru' ? ' selected="selected"' : '').'>RU</option>';
|
||||
?>
|
||||
</select>
|
||||
@@ -123,7 +124,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiupcheckdesc"><?php echo $lang['wiupcheck']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiupcheckdesc"><?php echo $lang['wiupcheck']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($update == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="upcheck" value="',$update,'">';
|
||||
@@ -133,7 +134,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiuptimedesc"><?php echo $lang['wiuptime']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiuptimedesc"><?php echo $lang['wiuptime']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" class="form-control" name="updateinfotime" value="<?php echo $updateinfotime; ?>">
|
||||
<script>
|
||||
@@ -147,7 +148,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiupuiddesc"><?php echo $lang['wiupuid']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wiupuiddesc"><?php echo $lang['wiupuid']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<textarea class="form-control" data-pattern="^([A-Za-z0-9\\\/\+]{27}=,)*([A-Za-z0-9\\\/\+]{27}=)$" data-error="Check all unique IDs are correct and your list do not ends with a comma!" rows="1" name="uniqueid"><?php echo $config[0]['uniqueid']; ?></textarea>
|
||||
<div class="help-block with-errors"></div>
|
||||
|
||||
@@ -82,7 +82,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishexclddesc"><?php echo $lang['wishexcld']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishexclddesc"><?php echo $lang['wishexcld']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showexcld == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showexcld" value="',$showexcld,'">';
|
||||
@@ -94,7 +94,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolrgdesc"><?php echo $lang['wishcolrg']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolrgdesc"><?php echo $lang['wishcolrg']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcolrg == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcolrg" value="',$showcolrg,'">';
|
||||
@@ -104,7 +104,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolclddesc"><?php echo $lang['wishcolcld']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolclddesc"><?php echo $lang['wishcolcld']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcolcld == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcolcld" value="',$showcolcld,'">';
|
||||
@@ -114,7 +114,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcoluuiddesc"><?php echo $lang['wishcoluuid']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcoluuiddesc"><?php echo $lang['wishcoluuid']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcoluuid == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcoluuid" value="',$showcoluuid,'">';
|
||||
@@ -124,7 +124,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcoldbiddesc"><?php echo $lang['wishcoldbid']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcoldbiddesc"><?php echo $lang['wishcoldbid']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcoldbid == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcoldbid" value="',$showcoldbid,'">';
|
||||
@@ -134,7 +134,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcollsdesc"><?php echo $lang['wishcolls']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcollsdesc"><?php echo $lang['wishcolls']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcolls == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcolls" value="',$showcolls,'">';
|
||||
@@ -144,7 +144,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolotdesc"><?php echo $lang['wishcolot']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolotdesc"><?php echo $lang['wishcolot']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcolot == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcolot" value="',$showcolot,'">';
|
||||
@@ -154,7 +154,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolitdesc"><?php echo $lang['wishcolit']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolitdesc"><?php echo $lang['wishcolit']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcolit == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcolit" value="',$showcolit,'">';
|
||||
@@ -164,7 +164,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolatdesc"><?php echo $lang['wishcolat']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolatdesc"><?php echo $lang['wishcolat']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcolat == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcolat" value="',$showcolat,'">';
|
||||
@@ -174,7 +174,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolasdesc"><?php echo $lang['wishcolas']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolasdesc"><?php echo $lang['wishcolas']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcolas == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcolas" value="',$showcolas,'">';
|
||||
@@ -184,7 +184,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolnxdesc"><?php echo $lang['wishcolnx']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolnxdesc"><?php echo $lang['wishcolnx']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcolnx == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcolnx" value="',$showcolnx,'">';
|
||||
@@ -194,7 +194,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolsgdesc"><?php echo $lang['wishcolsg']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishcolsgdesc"><?php echo $lang['wishcolsg']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showcolsg == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showcolsg" value="',$showcolsg,'">';
|
||||
@@ -207,7 +207,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishhiclddesc"><?php echo $lang['wishhicld']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wishhiclddesc"><?php echo $lang['wishhicld']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<?PHP if ($showhighest == 1) {
|
||||
echo '<input class="switch-animate" type="checkbox" checked data-size="mini" name="showhighest" value="',$showhighest,'">';
|
||||
|
||||
@@ -82,14 +82,14 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3hostdesc"><?php echo $lang['wits3host']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3hostdesc"><?php echo $lang['wits3host']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="tshost" value="<?php echo $ts['host']; ?>" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3querydesc"><?php echo $lang['wits3query']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3querydesc"><?php echo $lang['wits3query']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block-spin">
|
||||
<input type="text" class="form-control" name="tsquery" value="<?php echo $ts['query']; ?>" required>
|
||||
<script>
|
||||
@@ -104,7 +104,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3voicedesc"><?php echo $lang['wits3voice']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3voicedesc"><?php echo $lang['wits3voice']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block-spin">
|
||||
<input type="text" class="form-control" name="tsvoice" value="<?php echo $ts['voice']; ?>" required>
|
||||
<script>
|
||||
@@ -124,14 +124,14 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3querusrdesc"><?php echo $lang['wits3querusr']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3querusrdesc"><?php echo $lang['wits3querusr']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="tsuser" value="<?php echo $ts['user']; ?>" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3querpwdesc"><?php echo $lang['wits3querpw']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3querpwdesc"><?php echo $lang['wits3querpw']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="password" class="form-control" name="tspass" id="tspass" value="<?php echo $ts['pass']; ?>" data-toggle="password" data-placement="before" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
@@ -144,14 +144,14 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3qnmdesc"><?php echo $lang['wits3qnm']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3qnmdesc"><?php echo $lang['wits3qnm']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="queryname" value="<?php echo $queryname; ?>" maxlength="30" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3qnm2desc"><?php echo $lang['wits3qnm2']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3qnm2desc"><?php echo $lang['wits3qnm2']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8 required-field-block">
|
||||
<input type="text" class="form-control" name="queryname2" value="<?php echo $queryname2; ?>" maxlength="30" required>
|
||||
<div class="required-icon"><div class="text">*</div></div>
|
||||
@@ -161,7 +161,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3dchdesc"><?php echo $lang['wits3dch']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3dchdesc"><?php echo $lang['wits3dch']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<input type="text" class="form-control" name="defchid" value="<?php echo $defchid; ?>">
|
||||
<script>
|
||||
@@ -176,7 +176,7 @@ if (isset($_POST['update']) && $_SESSION['username'] == $webuser && $_SESSION['p
|
||||
</div>
|
||||
<div class="row"> </div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3smdesc"><?php echo $lang['wits3sm']; ?></label>
|
||||
<label class="col-sm-4 control-label" data-toggle="modal" data-target="#wits3smdesc"><?php echo $lang['wits3sm']; ?><i class="help-hover glyphicon glyphicon-question-sign"></i></label>
|
||||
<div class="col-sm-8">
|
||||
<select class="selectpicker show-tick form-control" id="basic" name="slowmode">
|
||||
<?PHP
|
||||
|
||||
15
worker.php
15
worker.php
@@ -4,12 +4,17 @@ require_once(__DIR__.'/other/config.php');
|
||||
$GLOBALS['exec'] = FALSE;
|
||||
if($logpath == NULL) { $logpath = "./logs/"; }
|
||||
$GLOBALS['logfile'] = $logpath.'ranksystem.log';
|
||||
$GLOBALS['pidfile'] = __DIR__.'/logs/pid';
|
||||
|
||||
if (substr(php_uname(), 0, 7) == "Windows") {
|
||||
$GLOBALS['pidfile'] = __DIR__.'\logs\pid';
|
||||
} else {
|
||||
$GLOBALS['pidfile'] = __DIR__.'/logs/pid';
|
||||
}
|
||||
|
||||
function checkProcess($pid = null) {
|
||||
if (substr(php_uname(), 0, 7) == "Windows") {
|
||||
if(!empty($pid)) {
|
||||
exec("wmic process where 'Name='php.exe' and processid='".$pid."'' get processid 2>nul", $result);
|
||||
exec("wmic process where \"Name=\"php.exe\" and processid=\"".$pid."\"\" get processid 2>nul", $result);
|
||||
if(isset($result[1]) && is_numeric($result[1])) {
|
||||
return TRUE;
|
||||
} else {
|
||||
@@ -18,7 +23,7 @@ function checkProcess($pid = null) {
|
||||
} else {
|
||||
if (file_exists($GLOBALS['pidfile'])) {
|
||||
preg_match_all('!\d+!', file_get_contents($GLOBALS['pidfile']), $pid);
|
||||
exec("wmic process where 'Name='php.exe' and processid='".$pid[0][0]."'' get processid", $result);
|
||||
exec("wmic process where \"Name=\"php.exe\" and processid=\"".$pid[0][0]."\"\" get processid", $result);
|
||||
if(isset($result[1]) && is_numeric($result[1])) {
|
||||
return TRUE;
|
||||
} else {
|
||||
@@ -58,8 +63,8 @@ function start() {
|
||||
if (checkProcess() == FALSE) {
|
||||
echo "Starting the Ranksystem Bot.";
|
||||
$WshShell = new COM("WScript.Shell");
|
||||
$oExec = $WshShell->Run("cmd /C php ".__DIR__."\jobs\bot.php >/dev/null 2>&1", 0, false);
|
||||
exec("wmic process where 'Name='php.exe' and commandline LIKE '%jobs\\\\bot.php%'' get processid", $pid);
|
||||
$oExec = $WshShell->Run("cmd /C php ".__DIR__."\jobs\bot.php", 0, false);
|
||||
exec("wmic process WHERE \"Name=\"php.exe\" AND CommandLine LIKE \"%bot.php%\"\" get ProcessId", $pid);
|
||||
if(isset($pid[1]) && is_numeric($pid[1])) {
|
||||
exec("echo ".$pid[1]." > ".$GLOBALS['pidfile']);
|
||||
echo " [OK]\n";
|
||||
|
||||
Reference in New Issue
Block a user