public function __construct($Identifier, $Args = array(), $Translated = false)
 {
     $this->Identifier = $Identifier;
     if (isset(self::$TextGathering)) {
         RD_Util::WriteLn(self::$TextGathering, $Identifier);
     }
     if ($Args === true) {
         $Args = array();
         $Translated = true;
     }
     $this->Args = $Args;
     $this->Translated = $Translated;
     self::$TextObjects[] = $this;
 }