Started work on Address

This commit is contained in:
Frank Schubert
2021-06-15 22:16:57 +02:00
parent 27a4ce998c
commit badcdcb329
26 changed files with 637 additions and 2180 deletions

View File

@@ -211,3 +211,12 @@ class mfLayout {
return $this->inline->cycle[$this->inline->cyclecount++];
}
}
function __($string) {
$lang = [];
include(BASEDIR."/lang/de.php");
if(array_key_exists($string, $lang['de'])) {
return $lang['de'][$string];
}
return $string;
}