]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/pomo/po.php
Wordpress 3.3-scripts
[autoinstalls/wordpress.git] / wp-includes / pomo / po.php
index fb0d8e408c6fce3bc73b9fd145455b6d128f1dff..8320bc1e1d9a90ef47157a7476c71cb760b2113f 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * Class for working with PO files
  *
 /**
  * Class for working with PO files
  *
- * @version $Id: po.php 283 2009-09-23 16:21:51Z nbachiyski $
+ * @version $Id: po.php 589 2010-12-18 01:40:57Z nbachiyski $
  * @package pomo
  * @subpackage po
  */
  * @package pomo
  * @subpackage po
  */
@@ -19,6 +19,7 @@ ini_set('auto_detect_line_endings', 1);
 if ( !class_exists( 'PO' ) ):
 class PO extends Gettext_Translations {
        
 if ( !class_exists( 'PO' ) ):
 class PO extends Gettext_Translations {
        
+       var $comments_before_headers = '';
 
        /**
         * Exports headers to a PO entry
 
        /**
         * Exports headers to a PO entry
@@ -31,7 +32,11 @@ class PO extends Gettext_Translations {
                        $header_string.= "$header: $value\n";
                }
                $poified = PO::poify($header_string);
                        $header_string.= "$header: $value\n";
                }
                $poified = PO::poify($header_string);
-               return rtrim("msgid \"\"\nmsgstr $poified");
+               if ($this->comments_before_headers)
+                       $before_headers = $this->prepend_each_line(rtrim($this->comments_before_headers)."\n", '# ');
+               else
+                       $before_headers = '';
+               return rtrim("{$before_headers}msgid \"\"\nmsgstr $poified");
        }
 
        /**
        }
 
        /**
@@ -75,6 +80,15 @@ class PO extends Gettext_Translations {
                if (false === $res) return false;
                return fclose($fh);
        }
                if (false === $res) return false;
                return fclose($fh);
        }
+       
+       /**
+        * Text to include as a comment before the start of the PO contents
+        * 
+        * Doesn't need to include # in the beginning of lines, these are added automatically
+        */
+       function set_comment_before_headers( $text ) {
+               $this->comments_before_headers = $text;
+       }
 
        /**
         * Formats a string in PO-style
 
        /**
         * Formats a string in PO-style