summaryrefslogtreecommitdiff
path: root/bin/exportgettext.sh
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-12-03 15:37:31 +0000
committerthomascube <thomas@roundcube.net>2011-12-03 15:37:31 +0000
commit84ff800248b585ca37b0a286f563110c14bc4ad9 (patch)
treec0343bff5582c5bdd6562bda3a2130be9d2c3308 /bin/exportgettext.sh
parent2c3655b7f666d1e9d8edb14b7f5146b3f2046e0b (diff)
Fix gettext exporter
Diffstat (limited to 'bin/exportgettext.sh')
-rwxr-xr-xbin/exportgettext.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/exportgettext.sh b/bin/exportgettext.sh
index e345445a5..f59474ec0 100755
--- a/bin/exportgettext.sh
+++ b/bin/exportgettext.sh
@@ -27,8 +27,8 @@ if ($argc < 2) {
}
$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 @@ function convert_dir($indir, $outdir)
{
global $layout;
- $outdir = unslashify($outdir);
if (!is_dir($outdir)) // attempt to create destination dir
mkdir($outdir, 0777, true);
@@ -115,6 +114,7 @@ function convert_file($fn, $outfn)
$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 @@ function convert_file($fn, $outfn)
#: %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 @@ msgstr ""
"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 @@ EOF;
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";