Blame | Last modification | View Log
<?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;
}
?>