diff --git a/src/Core/Console/PoToPhp.php b/src/Core/Console/PoToPhp.php index 0a7224503a..1cfc1ec7fd 100644 --- a/src/Core/Console/PoToPhp.php +++ b/src/Core/Console/PoToPhp.php @@ -98,7 +98,7 @@ HELP; $out .= '}}' . "\n"; } - if ($k != "" && substr($l, 0, 7) == 'msgstr ') { + if ($k != '' && substr($l, 0, 7) == 'msgstr ') { if ($ink) { $ink = false; $out .= '$a->strings["' . $k . '"] = '; @@ -114,6 +114,7 @@ HELP; $inv = true; } + if ($k != "" && substr($l, 0, 7) == 'msgstr[') { if ($ink) { $ink = false; @@ -125,9 +126,10 @@ HELP; } if (!$arr) { - $arr = True; + $arr = true; $out .= "[\n"; } + $match = []; preg_match("|\[([0-9]*)\] (.*)|", $l, $match); $out .= "\t" @@ -152,9 +154,11 @@ HELP; $inv = false; $out .= '"' . $v . '"'; } + if ($k != "") { $out .= ($arr) ? "];\n" : ";\n"; } + $arr = false; $k = str_replace("msgid ", "", $l); if ($k != '""') {