Using supplangs
This commit is contained in:
parent
0aad540f3d
commit
677f3bbd6d
1 changed files with 4 additions and 13 deletions
|
@ -5,7 +5,8 @@ if (!defined('N')) {
|
|||
exit(0);
|
||||
}
|
||||
|
||||
require('lib/fnum.php');
|
||||
require 'lib/fnum.php';
|
||||
require 'lib/supplangs.php';
|
||||
|
||||
echo('</nav>
|
||||
<div class="scrwide">
|
||||
|
@ -36,17 +37,6 @@ $now=time();
|
|||
$tdstart=gmmktime(0,0,0,gmdate('n',$now),gmdate('j',$now),gmdate('Y',$now));
|
||||
$limit=$tdstart-(30*24*60*60);
|
||||
$res=mysqli_query($link,'SELECT * FROM ZStats WHERE TS >= '.$limit.' ORDER BY TS DESC') or muorimeglio(__LINE__.': '.mysqli_error($link),true);
|
||||
$hlmap=array(
|
||||
'ca'=>_('Catalan'),
|
||||
'de'=>_('German'),
|
||||
'en'=>_('English'),
|
||||
'es'=>_('Spanish'),
|
||||
'fr'=>_('French'),
|
||||
'gl'=>_('Galician'),
|
||||
'it'=>_('Italian'),
|
||||
'pt_BR'=>_('Português (BR)'),
|
||||
'uk'=>_('Ukrainian')
|
||||
);
|
||||
$hpmap=array(
|
||||
'home'=>_('Guide'),
|
||||
'instances'=>_('Instances'),
|
||||
|
@ -62,7 +52,8 @@ while ($row=mysqli_fetch_assoc($res)) {
|
|||
$buf=array();
|
||||
foreach($hl as $key=>$val) {
|
||||
$val=explode(':',$val);
|
||||
$buf[$hlmap[$val[0]]]=$val[1];
|
||||
if (array_key_exists($val[0],$supplangs))// needed when you (temporarily) subtract a lang code from $supplangs in lib/supplangs.php
|
||||
$buf[$supplangs[$val[0]]['trname']]=$val[1];
|
||||
}
|
||||
arsort($buf);
|
||||
$hl='';
|
||||
|
|
Loading…
Reference in a new issue