aboutsummaryrefslogtreecommitdiffstats
path: root/util/po2php.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-10 22:22:05 -0700
committerFriendika <info@friendika.com>2011-05-10 22:22:05 -0700
commit5903ea38f34bef5d47d1ba76f26c802b3112de70 (patch)
tree13694859c04ff633755d34594ae2d473a93f939f /util/po2php.php
parentd0a86d933f99832ffa2f081a619308e173911f8a (diff)
downloadvolse-hubzilla-5903ea38f34bef5d47d1ba76f26c802b3112de70.tar.gz
volse-hubzilla-5903ea38f34bef5d47d1ba76f26c802b3112de70.tar.bz2
volse-hubzilla-5903ea38f34bef5d47d1ba76f26c802b3112de70.zip
@fabrixxm fix for po2php, manually patched
Diffstat (limited to 'util/po2php.php')
-rw-r--r--util/po2php.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/po2php.php b/util/po2php.php
index 34e99d1ab..239eafb5f 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";