From bec6d3656080ad4520ab10a0d7f19202e8e60c2e Mon Sep 17 00:00:00 2001 From: David Martinez Date: Wed, 7 Aug 2019 00:22:13 +0200 Subject: [PATCH] Added \r to \Gettext\Generators\Po::convertString(), related with #218 --- src/Generators/Po.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Generators/Po.php b/src/Generators/Po.php index 136ea5c7..d059361e 100644 --- a/src/Generators/Po.php +++ b/src/Generators/Po.php @@ -136,6 +136,7 @@ public static function convertString($value) "\x00" => '', '\\' => '\\\\', "\t" => '\t', + "\r" => '\r', "\n" => '\n', '"' => '\\"', ]