From 84ff800248b585ca37b0a286f563110c14bc4ad9 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Sat, 03 Dec 2011 10:37:31 -0500
Subject: [PATCH] Fix gettext exporter
---
bin/exportgettext.sh | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/bin/exportgettext.sh b/bin/exportgettext.sh
index e345445..f59474e 100755
--- a/bin/exportgettext.sh
+++ b/bin/exportgettext.sh
@@ -27,8 +27,8 @@
}
$srcdir = unslashify(realpath($argv[1]));
-$destdir = slashify($argv[2]);
-$layout = 'launchpad' # or 'narro';
+$destdir = unslashify($argv[2]);
+$layout = 'launchpad'; # or 'narro';
// converting roundcube localization dir
@@ -83,7 +83,6 @@
{
global $layout;
- $outdir = unslashify($outdir);
if (!is_dir($outdir)) // attempt to create destination dir
mkdir($outdir, 0777, true);
@@ -115,6 +114,7 @@
$basename = basename($fn);
$srcname = str_replace(INSTALL_PATH, '', $fn);
+ $product = preg_match('!plugins/(\w+)!', $srcname, $m) ? 'roundcube-plugin-' . $m[1] : 'roundcubemail';
$lang = preg_match('!/([a-z]{2}(_[A-Z]{2})?)[./]!', $outfn, $m) ? $m[1] : '';
$labels = $messages = $seen = array();
@@ -147,7 +147,7 @@
#: %s
msgid ""
msgstr ""
-"Project-Id-Version: roundcubemail\\n"
+"Project-Id-Version: %s\\n"
"Report-Msgid-Bugs-To: \\n"
"POT-Creation-Date: %s\\n"
"PO-Revision-Date: %s\\n"
@@ -158,7 +158,7 @@
"Content-Transfer-Encoding: 8bit\\n"
EOF;
- $out = sprintf($header, $srcname, date('c'), date('c'), $lang);
+ $out = sprintf($header, $srcname, $product, date('c'), date('c'), $lang);
$out .= "\n";
$messages = array();
@@ -187,7 +187,7 @@
function gettext_quote($str)
{
$out = "";
- $lines = explode("\n", $str);
+ $lines = explode("\n", stripslashes($str));
$suffix = count($lines) > 1 ? '\n' : '';
foreach ($lines as $line)
$out .= '"' . addcslashes($line, '"') . $suffix . "\"\n";
--
Gitblit v1.9.1