blob: 8b717b3ef1fc704868f62e714794652457f8483c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?
function locale_init() {
global $languages, $user;
return ($user->id && $user->language) ? $user->language : key($languages);
}
function t($string) {
return locale($string);
}
?>
|