Automatic installer.php lang files by installer_builder (20070726)
[moodle-linuxchix.git] / iplookup / ipatlas / translate.inc
blob7b9197190fe316fabb13cf5c22e071fccf19badc
1 <?php
3 function t($phrase) {
4   global $language;
5   if($language == "en") {
6     return $phrase;
7   } else {
8   include_once("languages/messages.$language.inc");
9   $phrase = lookup($phrase, $language);
10   return $phrase;
11   }