moodle/iplookup/ipatlas/translate.inc
moodler f4fb66d7d9 Added new structure for iplookups (ie called from logs).
ipatlas is now just a plugin, and we can add other plugins
to the same job better.
2005-07-18 08:06:16 +00:00

14 lines
225 B
PHP

<?php
function t($phrase) {
global $language;
if($language == "en") {
return $phrase;
} else {
include_once("languages/messages.$language.inc");
$phrase = lookup($phrase, $language);
return $phrase;
}
}
?>