12 lines
117 B
PHP
12 lines
117 B
PHP
|
<?php
|
||
|
|
||
|
function t($itstr,$enstr) {
|
||
|
global $english;
|
||
|
if (!$english)
|
||
|
return($itstr);
|
||
|
else
|
||
|
return($enstr);
|
||
|
}
|
||
|
|
||
|
?>
|