From: Friendika Date: Wed, 11 May 2011 05:22:05 +0000 (-0700) Subject: @fabrixxm fix for po2php, manually patched X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5903ea38f34bef5d47d1ba76f26c802b3112de70;p=friendica.git @fabrixxm fix for po2php, manually patched --- diff --git a/util/po2php.php b/util/po2php.php index 34e99d1ab7..239eafb5f3 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -35,7 +35,7 @@ function po2php_run($argv, $argc) { if ($l[0]=="#") $l=""; if (substr($l,0,15)=='"Plural-Forms: '){ $match=Array(); - preg_match("|nplurals=([0-9]*); *plural=(.*);|", $l, $match); + preg_match("|nplurals=([0-9]*); *plural=(.*)[;\\\\]|", $l, $match); $cond = str_replace('n','$n',$match[2]); $out .= 'function string_plural_select($n){'."\n"; $out .= ' return '.$cond.';'."\n";