aboutsummaryrefslogtreecommitdiffstats
path: root/util/php2po.php
diff options
context:
space:
mode:
Diffstat (limited to 'util/php2po.php')
-rw-r--r--util/php2po.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/util/php2po.php b/util/php2po.php
index 99578a12d..17feafa5d 100644
--- a/util/php2po.php
+++ b/util/php2po.php
@@ -26,7 +26,8 @@
$out = "";
$infile = file($pofile);
- $k="";
+ $k = "";
+ $c = "";
$ink = False;
foreach ($infile as $l) {
@@ -39,8 +40,10 @@
$v = App::$strings[$k];
} else {
$k = "__ctx:".$c."__ ".$k;
- if (isset(App::$strings[$k]))
+ if (isset(App::$strings[$k])) {
$v = App::$strings[$k];
+ $c = "";
+ }
}
if (!empty($v)) {
if (is_array($v)) {