: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* This is a modified version of the POMO library included with WordPress. The WordPress copyright has been included
WordPress - Web publishing software
Copyright 2011-2020 by the contributors
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
This program incorporates work covered by the following copyright and
b2 is (c) 2001, 2002 Michel Valdrighi - https://cafelog.com
Wherever third party code has been used, credit has been given in the code's
b2 is released under the GPL
WordPress - Web publishing software
Copyright 2003-2010 by the contributors
WordPress is released under the GPL
* Class for working with PO files
* @version $Id: po.php 1158 2015-11-20 04:31:23Z dd32 $
require_once __DIR__ . '/translations.php';
if ( ! defined( 'WF_PO_MAX_LINE_LEN' ) ) {
define( 'WF_PO_MAX_LINE_LEN', 79 );
ini_set( 'auto_detect_line_endings', 1 );
* Routines for working with PO files
if ( ! class_exists( 'wfPO', false ) ) :
class wfPO extends wfGettext_Translations {
var $comments_before_headers = '';
* Exports headers to a PO entry
* @return string msgid/msgstr PO entry for this PO file headers, doesn't contain newline at the end
function export_headers() {
foreach ( $this->headers as $header => $value ) {
$header_string .= "$header: $value\n";
$poified = wfPO::poify( $header_string );
if ( $this->comments_before_headers ) {
$before_headers = $this->prepend_each_line( rtrim( $this->comments_before_headers ) . "\n", '# ' );
return rtrim( "{$before_headers}msgid \"\"\nmsgstr $poified" );
* Exports all entries to PO format
* @return string sequence of mgsgid/msgstr PO strings, doesn't containt newline at the end
function export_entries() {
return implode( "\n\n", array_map( array('wfPO', 'export_entry' ), $this->entries ) );
* Exports the whole PO file as a string
* @param bool $include_headers whether to include the headers in the export
* @return string ready for inclusion in PO file string for headers and all the enrtries
function export( $include_headers = true ) {
if ( $include_headers ) {
$res .= $this->export_headers();
$res .= $this->export_entries();
* Same as {@link export}, but writes the result to a file
* @param string $filename Where to write the PO string.
* @param bool $include_headers Whether to include the headers in the export.
* @return bool true on success, false on error
function export_to_file( $filename, $include_headers = true ) {
$fh = fopen( $filename, 'w' );
$export = $this->export( $include_headers );
$res = fwrite( $fh, $export );
* 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
* @param string $text Text to include as a comment.
function set_comment_before_headers( $text ) {
$this->comments_before_headers = $text;
* Formats a string in PO-style
* @param string $string the string to format
* @return string the poified string
public static function poify( $string ) {
"$slash" => "$slash$slash",
"$quote" => "$slash$quote",
$string = str_replace( array_keys( $replaces ), array_values( $replaces ), $string );
$po = $quote . implode( "${slash}n$quote$newline$quote", explode( $newline, $string ) ) . $quote;
// Add empty string on first line for readbility.
if ( false !== strpos( $string, $newline ) &&
( substr_count( $string, $newline ) > 1 || substr( $string, -strlen( $newline ) ) !== $newline ) ) {
$po = "$quote$quote$newline$po";
$po = str_replace( "$newline$quote$quote", '', $po );
* Gives back the original string from a PO-formatted string
* @param string $string PO-formatted string
* @return string enascaped string
public static function unpoify( $string ) {
$lines = array_map( 'trim', explode( "\n", $string ) );
$lines = array_map( array('wfPO', 'trim_quotes' ), $lines );
$previous_is_backslash = false;
foreach ( $lines as $line ) {
preg_match_all( '/./u', $line, $chars );
foreach ( $chars as $char ) {
if ( ! $previous_is_backslash ) {
$previous_is_backslash = true;
$previous_is_backslash = false;
$unpoified .= isset( $escapes[ $char ] ) ? $escapes[ $char ] : $char;
// Standardise the line endings on imported content, technically PO files shouldn't contain \r.
$unpoified = str_replace( array( "\r\n", "\r" ), "\n", $unpoified );
* Inserts $with in the beginning of every new line of $string and
* returns the modified string
* @param string $string prepend lines in this string
* @param string $with prepend lines with this string
public static function prepend_each_line( $string, $with ) {
$lines = explode( "\n", $string );
if ( "\n" === substr( $string, -1 ) && '' === end( $lines ) ) {
* Last line might be empty because $string was terminated
* with a newline, remove it from the $lines array,
* we'll restore state by re-terminating the string at the end.
foreach ( $lines as &$line ) {
return implode( "\n", $lines ) . $append;
* Prepare a text as a comment -- wraps the lines and prepends #
* and a special character to each line
* @param string $text the comment text
* @param string $char character to denote a special PO comment,
* like :, default is a space
public static function comment_block( $text, $char = ' ' ) {
$text = wordwrap( $text, WF_PO_MAX_LINE_LEN - 3 );
return wfPO::prepend_each_line( $text, "#$char " );
* Builds a string from the entry for inclusion in PO file
* @param wfTranslation_Entry $entry the entry to convert to po string (passed by reference).
* @return string|false PO-style formatted string for the entry or
* false if the entry is empty
public static function export_entry( &$entry ) {
if ( null === $entry->singular || '' === $entry->singular ) {
if ( ! empty( $entry->translator_comments ) ) {
$po[] = wfPO::comment_block( $entry->translator_comments );
if ( ! empty( $entry->extracted_comments ) ) {
$po[] = wfPO::comment_block( $entry->extracted_comments, '.' );
if ( ! empty( $entry->references ) ) {
$po[] = wfPO::comment_block( implode( ' ', $entry->references ), ':' );
if ( ! empty( $entry->flags ) ) {
$po[] = wfPO::comment_block( implode( ', ', $entry->flags ), ',' );
$po[] = 'msgctxt ' . wfPO::poify( $entry->context );
$po[] = 'msgid ' . wfPO::poify( $entry->singular );
if ( ! $entry->is_plural ) {
$translation = empty( $entry->translations ) ? '' : $entry->translations[0];
$translation = wfPO::match_begin_and_end_newlines( $translation, $entry->singular );
$po[] = 'msgstr ' . wfPO::poify( $translation );
$po[] = 'msgid_plural ' . wfPO::poify( $entry->plural );
$translations = empty( $entry->translations ) ? array( '', '' ) : $entry->translations;
foreach ( $translations as $i => $translation ) {
$translation = wfPO::match_begin_and_end_newlines( $translation, $entry->plural );
$po[] = "msgstr[$i] " . wfPO::poify( $translation );
return implode( "\n", $po );
public static function match_begin_and_end_newlines( $translation, $original ) {
if ( '' === $translation ) {
$original_begin = "\n" === substr( $original, 0, 1 );
$original_end = "\n" === substr( $original, -1 );
$translation_begin = "\n" === substr( $translation, 0, 1 );
$translation_end = "\n" === substr( $translation, -1 );
if ( ! $translation_begin ) {
$translation = "\n" . $translation;
} elseif ( $translation_begin ) {
$translation = ltrim( $translation, "\n" );
if ( ! $translation_end ) {
} elseif ( $translation_end ) {
$translation = rtrim( $translation, "\n" );
* @param string $filename
function import_from_file( $filename ) {
$f = fopen( $filename, 'r' );
$res = $this->read_entry( $f, $lineno );
if ( '' === $res['entry']->singular ) {
$this->set_headers( $this->make_headers( $res['entry']->translations[0] ) );
$this->add_entry( $res['entry'] );
wfPO::read_line( $f, 'clear' );
if ( ! $this->headers && ! $this->entries ) {
* Helper function for read_entry
protected static function is_final( $context ) {
return ( 'msgstr' === $context ) || ( 'msgstr_plural' === $context );
* @return null|false|array
function read_entry( $f, $lineno = 0 ) {
$entry = new wfTranslation_Entry();
// Where were we in the last step.
// Can be: comment, msgctxt, msgid, msgid_plural, msgstr, msgstr_plural.
$line = wfPO::read_line( $f );
if ( self::is_final( $context ) ) {
} elseif ( ! $context ) { // We haven't read a line and EOF came.
if ( preg_match( '/^#/', $line, $m ) ) {
// The comment is the start of a new entry.
if ( self::is_final( $context ) ) {
wfPO::read_line( $f, 'put-back' );
// Comments have to be at the beginning.
if ( $context && 'comment' !== $context ) {
$this->add_comment_to_entry( $entry, $line );
} elseif ( preg_match( '/^msgctxt\s+(".*")/', $line, $m ) ) {
if ( self::is_final( $context ) ) {
wfPO::read_line( $f, 'put-back' );
if ( $context && 'comment' !== $context ) {
$entry->context .= wfPO::unpoify( $m[1] );
} elseif ( preg_match( '/^msgid\s+(".*")/', $line, $m ) ) {
if ( self::is_final( $context ) ) {
wfPO::read_line( $f, 'put-back' );
if ( $context && 'msgctxt' !== $context && 'comment' !== $context ) {
$entry->singular .= wfPO::unpoify( $m[1] );
} elseif ( preg_match( '/^msgid_plural\s+(".*")/', $line, $m ) ) {
if ( 'msgid' !== $context ) {
$context = 'msgid_plural';
$entry->is_plural = true;
$entry->plural .= wfPO::unpoify( $m[1] );
} elseif ( preg_match( '/^msgstr\s+(".*")/', $line, $m ) ) {
if ( 'msgid' !== $context ) {
$entry->translations = array( wfPO::unpoify( $m[1] ) );
} elseif ( preg_match( '/^msgstr\[(\d+)\]\s+(".*")/', $line, $m ) ) {
if ( 'msgid_plural' !== $context && 'msgstr_plural' !== $context ) {
$context = 'msgstr_plural';
$entry->translations[ $m[1] ] = wfPO::unpoify( $m[2] );
} elseif ( preg_match( '/^".*"$/', $line ) ) {
$unpoified = wfPO::unpoify( $line );
$entry->singular .= $unpoified;
$entry->context .= $unpoified;
$entry->plural .= $unpoified;
$entry->translations[0] .= $unpoified;
$entry->translations[ $msgstr_index ] .= $unpoified;
$have_translations = false;
foreach ( $entry->translations as $t ) {
if ( $t || ( '0' === $t ) ) {
$have_translations = true;
if ( false === $have_translations ) {
$entry->translations = array();