aboutsummaryrefslogtreecommitdiffstats
path: root/tools/extract2gettext.php
diff options
context:
space:
mode:
Diffstat (limited to 'tools/extract2gettext.php')
-rw-r--r--tools/extract2gettext.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/extract2gettext.php b/tools/extract2gettext.php
index 1cbdb3a17..55f841a0f 100644
--- a/tools/extract2gettext.php
+++ b/tools/extract2gettext.php
@@ -113,7 +113,7 @@ foreach ($strings as $domain => $strs) {
foreach ($strs as $str => $info) {
$str = str_replace(array("\'", '"'), array("'", '\"'), $str);
- $f[] = sprintf('msgctxt "%s"', $info[0]);
+ $f[] = sprintf('#: "%s"', $info[0]); // location of string in the source (#: reference...)
$f[] = 'msgid "' . $str . '"';
$f[] = 'msgstr ""';
$f[] = '';