GNU MO file reader and writer.
Author: Michael Wallner (mike@php.net)
Inheritance: extends TGettext
Beispiel #1
0
 /**
  * toMO
  *
  * @access  protected
  * @return  object  File_Gettext_MO
  */
 function toMO()
 {
     include_once dirname(__FILE__) . '/MO.php';
     $MO = new TGettext_MO();
     $MO->fromArray($this->toArray());
     return $MO;
 }