From 90a9febb6cf6a42c9da1c16c2da6f8cbde1921b7 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Sun, 29 Jul 2018 12:05:53 +0200 Subject: Workaround on possible error --- util/php2po.php | 7 +++++-- 1 file 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)) { -- cgit v1.2.3