. if (!defined('EG')) die('Direct access not allowed!'); //generic strings class Lang_Eng_Generic { //English to English public $translations = array( 'edit' => 'edit', 'delete' => 'delete', 'move up' => 'move up', 'move down' => 'move down', 'associate' => 'associate', ); public function gtext($string) { if (array_key_exists($string,$this->translations)) { return $this->translations[$string]; } return $string; } }