@@ -, +, @@ --- misc/translator/tmpl_process3.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/misc/translator/tmpl_process3.pl +++ a/misc/translator/tmpl_process3.pl @@ -379,7 +379,7 @@ if ($action eq 'create') { open(my $infh, '<', $tmpfile2); open(my $outfh, '>', $str_file); while (<$infh>) { - print $outfh; + print $outfh $_; last if /^\n/s; } close $infh; --