diff options
Diffstat (limited to 'tools/extract2gettext.php')
-rw-r--r-- | tools/extract2gettext.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/extract2gettext.php b/tools/extract2gettext.php index 8eff15de0..1cbdb3a17 100644 --- a/tools/extract2gettext.php +++ b/tools/extract2gettext.php @@ -87,7 +87,8 @@ foreach ($strings as $domain => $strs) { $f[] = '# This file is distributed under the same license as'; $f[] = '# the content of the corresponding web page(s).'; $f[] = '#'; - $f[] = sprintf('# Generated by extract2gettext.php on %s', $cur_date = date('Y-m-d H:i:sO')); + $cur_date = date('Y-m-d H:i:sO'); + $f[] = '# Generated by extract2gettext.php'; $f[] = sprintf('# Domain: %s', $domain); $f[] = '#'; $f[] = '# include translation strings from:'; |