<?php
// Language class
// Date: 2012-06-12

class Language
{

  public $Texts = array();
  protected $Config;
  
  function __construct()
  {
    $this->Config = new Config();
    include($this->Config->Web['Language'].'_lang.php');
    $this->Texts = $Texts;

  }

//Generate and show this page
  public function Get($key) {
	return $this->Texts[$key];
  }  


}
?>
