comparison vendor/symfony/translation/Dumper/PoFileDumper.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents 129ea1e6d783
children
comparison
equal deleted inserted replaced
17:129ea1e6d783 18:af1871eacc83
38 $output .= "\n"; 38 $output .= "\n";
39 } else { 39 } else {
40 $newLine = true; 40 $newLine = true;
41 } 41 }
42 $output .= sprintf('msgid "%s"'."\n", $this->escape($source)); 42 $output .= sprintf('msgid "%s"'."\n", $this->escape($source));
43 $output .= sprintf('msgstr "%s"', $this->escape($target)); 43 $output .= sprintf('msgstr "%s"'."\n", $this->escape($target));
44 } 44 }
45 45
46 return $output; 46 return $output;
47 } 47 }
48 48