diff options
-rwxr-xr-x | bin/exportgettext.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/exportgettext.sh b/bin/exportgettext.sh index b1649ef0d..67fa7ad10 100755 --- a/bin/exportgettext.sh +++ b/bin/exportgettext.sh @@ -226,8 +226,9 @@ function gettext_quote($str) { $out = ""; $lines = explode("\n", wordwrap(stripslashes($str))); - foreach ($lines as $line) - $out .= '"' . addcslashes($line, '"') . "\"\n"; + $last = count($lines) - 1; + foreach ($lines as $i => $line) + $out .= '"' . addcslashes($line, '"') . ($i < $last ? ' ' : '') . "\"\n"; return rtrim($out); } |