]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/pomo/entry.php
WordPress 4.6.3-scripts
[autoinstalls/wordpress.git] / wp-includes / pomo / entry.php
index ca706fca16c4022d37ff4b166acb1807f90a25b5..788092ba4b5f4fdce639459e31952d700fbd77d1 100644 (file)
@@ -2,12 +2,12 @@
 /**
  * Contains Translation_Entry class
  *
- * @version $Id: entry.php 718 2012-10-31 00:32:02Z nbachiyski $
+ * @version $Id: entry.php 1157 2015-11-20 04:30:11Z dd32 $
  * @package pomo
  * @subpackage entry
  */
 
-if ( !class_exists( 'Translation_Entry' ) ):
+if ( ! class_exists( 'Translation_Entry', false ) ):
 /**
  * Translation_Entry class encapsulates a translatable string
  */
@@ -49,7 +49,7 @@ class Translation_Entry {
                foreach ($args as $varname => $value) {
                        $this->$varname = $value;
                }
-               if (isset($args['plural'])) $this->is_plural = true;
+               if (isset($args['plural']) && $args['plural']) $this->is_plural = true;
                if (!is_array($this->translations)) $this->translations = array();
                if (!is_array($this->references)) $this->references = array();
                if (!is_array($this->flags)) $this->flags = array();
@@ -68,9 +68,14 @@ class Translation_Entry {
         * @return string|bool the key or false if the entry is empty
         */
        function key() {
-               if (is_null($this->singular)) return false;
-               // prepend context and EOT, like in MO files
-               return is_null($this->context)? $this->singular : $this->context.chr(4).$this->singular;
+               if ( null === $this->singular || '' === $this->singular ) return false;
+
+               // Prepend context and EOT, like in MO files
+               $key = !$this->context? $this->singular : $this->context.chr(4).$this->singular;
+               // Standardize on \n line endings
+               $key = str_replace( array( "\r\n", "\r" ), "\n", $key );
+
+               return $key;
        }
 
        /**