X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/48ab98cb1779cf2088c1351ac3dd3d0da6fb31d3..8d3bb1a5dcfdea9857d3c88c3751f09593e34dc8:/wp-includes/pomo/mo.php diff --git a/wp-includes/pomo/mo.php b/wp-includes/pomo/mo.php index 407c5a83..6bc44d61 100644 --- a/wp-includes/pomo/mo.php +++ b/wp-includes/pomo/mo.php @@ -2,7 +2,7 @@ /** * Class for working with MO files * - * @version $Id: mo.php 718 2012-10-31 00:32:02Z nbachiyski $ + * @version $Id: mo.php 1157 2015-11-20 04:30:11Z dd32 $ * @package pomo * @subpackage mo */ @@ -10,7 +10,7 @@ require_once dirname(__FILE__) . '/translations.php'; require_once dirname(__FILE__) . '/streams.php'; -if ( !class_exists( 'MO' ) ): +if ( ! class_exists( 'MO', false ) ): class MO extends Gettext_Translations { var $_nplurals = 2; @@ -27,6 +27,10 @@ class MO extends Gettext_Translations { return $this->import_from_reader($reader); } + /** + * @param string $filename + * @return bool + */ function export_to_file($filename) { $fh = fopen($filename, 'wb'); if ( !$fh ) return false; @@ -35,6 +39,9 @@ class MO extends Gettext_Translations { return $res; } + /** + * @return string|false + */ function export() { $tmp_fh = fopen("php://temp", 'r+'); if ( !$tmp_fh ) return false; @@ -43,6 +50,10 @@ class MO extends Gettext_Translations { return stream_get_contents( $tmp_fh ); } + /** + * @param Translation_Entry $entry + * @return bool + */ function is_entry_good_for_export( $entry ) { if ( empty( $entry->translations ) ) { return false; @@ -55,6 +66,10 @@ class MO extends Gettext_Translations { return true; } + /** + * @param resource $fh + * @return true + */ function export_to_file_handle($fh) { $entries = array_filter( $this->entries, array( $this, 'is_entry_good_for_export' ) ); ksort($entries); @@ -101,19 +116,30 @@ class MO extends Gettext_Translations { return true; } + /** + * @param Translation_Entry $entry + * @return string + */ function export_original($entry) { //TODO: warnings for control characters $exported = $entry->singular; if ($entry->is_plural) $exported .= chr(0).$entry->plural; - if (!is_null($entry->context)) $exported = $entry->context . chr(4) . $exported; + if ($entry->context) $exported = $entry->context . chr(4) . $exported; return $exported; } + /** + * @param Translation_Entry $entry + * @return string + */ function export_translations($entry) { //TODO: warnings for control characters - return implode(chr(0), $entry->translations); + return $entry->is_plural ? implode(chr(0), $entry->translations) : $entry->translations[0]; } + /** + * @return string + */ function export_headers() { $exported = ''; foreach($this->headers as $header => $value) { @@ -122,6 +148,10 @@ class MO extends Gettext_Translations { return $exported; } + /** + * @param int $magic + * @return string|false + */ function get_byteorder($magic) { // The magic is 0x950412de @@ -139,6 +169,9 @@ class MO extends Gettext_Translations { } } + /** + * @param POMO_FileReader $reader + */ function import_from_reader($reader) { $endian_string = MO::get_byteorder($reader->readint32()); if (false === $endian_string) { @@ -251,10 +284,17 @@ class MO extends Gettext_Translations { return $entry; } + /** + * @param int $count + * @return string + */ function select_plural_form($count) { return $this->gettext_select_plural_form($count); } + /** + * @return int + */ function get_plural_forms_count() { return $this->_nplurals; }