aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2018-07-23 19:55:00 +0200
committerMario <mario@mariovavti.com>2018-07-23 19:55:00 +0200
commit84e57d040b6b7df4b7673d3f6f4974225117e3a4 (patch)
tree7122899e4ff88bd4af2e253a736351cb43240ae2 /util
parent6be66d6df9c35adb48148b791730ec9c6c533988 (diff)
parent3342fc2244ceef4b9ff9fd7cc691fbc586f51704 (diff)
downloadvolse-hubzilla-84e57d040b6b7df4b7673d3f6f4974225117e3a4.tar.gz
volse-hubzilla-84e57d040b6b7df4b7673d3f6f4974225117e3a4.tar.bz2
volse-hubzilla-84e57d040b6b7df4b7673d3f6f4974225117e3a4.zip
Merge branch 'patch-2' into 'dev'
Escape internal quotes in translation on export See merge request hubzilla/core!1237
Diffstat (limited to 'util')
-rw-r--r--util/php2po.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/php2po.php b/util/php2po.php
index c47dcac1b..c165006a1 100644
--- a/util/php2po.php
+++ b/util/php2po.php
@@ -32,17 +32,17 @@
if ($k!="" && substr($l,0,7)=="msgstr "){
$ink = False;
- $v = '""';
+ $v = '';
//echo "DBG: k:'$k'\n";
if (isset(App::$strings[$k])) {
- $v= '"'.App::$strings[$k].'"';
+ $v= App::$strings[$k];
//echo "DBG\n";
//var_dump($k, $v, App::$strings[$k], $v);
//echo "/DBG\n";
}
//echo "DBG: v:'$v'\n";
- $l = "msgstr ".$v."\n";
+ $l = "msgstr \"".str_replace('"','\"',$v)."\"\n";
}
if (substr($l,0,6)=="msgid_" || substr($l,0,7)=="msgstr[" )$ink = False;;