Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 1532 → Rev 1533

/web/acc/manager/stats/localize.php
0,0 → 1,15
<?php
// setup locale and translation
setlocale(LC_ALL, $locale);
require "lang/$language.php";
 
function T($str)
{
global $L;
if (isset($L[$str]))
return $L[$str];
else
return $str;
}
 
?>