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