We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dee5de commit fcb8f3bCopy full SHA for fcb8f3b
1 file changed
src/Loader/PoLoader.php
@@ -30,8 +30,7 @@ public function loadString(string $string, Translations $translations = null): T
30
) {
31
if (substr(trim($nextLine), 0, 1) === '"') { // Normal multiline
32
$line = substr($line, 0, -1).substr(trim($nextLine), 1);
33
- }
34
- if (substr(trim($nextLine), 0, 4) === '#~ "') { // Disabled multiline
+ } elseif (substr(trim($nextLine), 0, 4) === '#~ "') { // Disabled multiline
35
$line = substr($line, 0, -1).substr(trim($nextLine), 4);
36
}
37
$nextLine = next($lines);
0 commit comments