Class Call:
include_once("core/messages/LANGUAGE.php");
$language = new LANGUAGE();
$this->tongue = array( 'en' => 'English', 'de' => 'Deutsch', );
The two-character key of this array must match the method names within classes such as MESSAGES and ERRORS. For example, each of those classes has methods called 'en' and 'de' that hold message strings and their translations.
Methods: