Details |
Last modification |
View Log
Rev |
Author |
Line No. |
Line |
1533 |
richard |
1 |
<?php
|
|
|
2 |
// setup locale and translation
|
|
|
3 |
setlocale(LC_ALL, $locale);
|
|
|
4 |
require "lang/$language.php";
|
|
|
5 |
|
|
|
6 |
function T($str)
|
|
|
7 |
{
|
|
|
8 |
global $L;
|
|
|
9 |
if (isset($L[$str]))
|
|
|
10 |
return $L[$str];
|
|
|
11 |
else
|
|
|
12 |
return $str;
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
?>
|