X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/98a4d31e52bd56c908617df281730bd4ba58d110..48ab98cb1779cf2088c1351ac3dd3d0da6fb31d3:/wp-includes/pomo/entry.php diff --git a/wp-includes/pomo/entry.php b/wp-includes/pomo/entry.php index feb5b34c..097e92ca 100644 --- a/wp-includes/pomo/entry.php +++ b/wp-includes/pomo/entry.php @@ -2,12 +2,12 @@ /** * Contains Translation_Entry class * - * @version $Id: entry.php 115 2009-05-11 18:56:15Z nbachiyski $ + * @version $Id: entry.php 718 2012-10-31 00:32:02Z nbachiyski $ * @package pomo * @subpackage entry */ - +if ( !class_exists( 'Translation_Entry' ) ): /** * Translation_Entry class encapsulates a translatable string */ @@ -46,7 +46,6 @@ class Translation_Entry { return; } // get member variable values from args hash - $object_varnames = array_keys(get_object_vars($this)); foreach ($args as $varname => $value) { $this->$varname = $value; } @@ -66,5 +65,14 @@ class Translation_Entry { // prepend context and EOT, like in MO files return is_null($this->context)? $this->singular : $this->context.chr(4).$this->singular; } + + function merge_with(&$other) { + $this->flags = array_unique( array_merge( $this->flags, $other->flags ) ); + $this->references = array_unique( array_merge( $this->references, $other->references ) ); + if ( $this->extracted_comments != $other->extracted_comments ) { + $this->extracted_comments .= $other->extracted_comments; + } + + } } -?> +endif; \ No newline at end of file