@fabrixxm fix for po2php, manually patched
This commit is contained in:
parent
d0a86d933f
commit
5903ea38f3
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ function po2php_run($argv, $argc) {
|
||||||
if ($l[0]=="#") $l="";
|
if ($l[0]=="#") $l="";
|
||||||
if (substr($l,0,15)=='"Plural-Forms: '){
|
if (substr($l,0,15)=='"Plural-Forms: '){
|
||||||
$match=Array();
|
$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]);
|
$cond = str_replace('n','$n',$match[2]);
|
||||||
$out .= 'function string_plural_select($n){'."\n";
|
$out .= 'function string_plural_select($n){'."\n";
|
||||||
$out .= ' return '.$cond.';'."\n";
|
$out .= ' return '.$cond.';'."\n";
|
||||||
|
|
Loading…
Reference in a new issue