repo.or.cz
/
moodle-linuxchix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Automatic installer.php lang files by installer_builder (20070726)
[moodle-linuxchix.git]
/
iplookup
/
ipatlas
/
translate.inc
blob
7b9197190fe316fabb13cf5c22e071fccf19badc
1
<?php
2
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
}
12
}
13
14
?>