po: clarify error messages

Signed-off-by: intrigeri <intrigeri@boum.org>
master
intrigeri 2008-11-10 13:22:50 +01:00
parent 6fc898df75
commit 00732f19b9
1 changed files with 4 additions and 4 deletions

View File

@ -385,9 +385,9 @@ sub filter (@) { #{{{
'file_in_name' => \@masters, 'file_in_name' => \@masters,
'file_in_charset' => 'utf-8', 'file_in_charset' => 'utf-8',
'file_out_charset' => 'utf-8', 'file_out_charset' => 'utf-8',
) or error("[po/filter:$infile]: failed to translate"); ) or error("[po/filter:$page]: failed to translate");
$doc->write($outfile) or error("[po/filter:$infile] could not write $outfile"); $doc->write($outfile) or error("[po/filter:$page] could not write $outfile");
$content = readfile($outfile) or error("[po/filter:$infile] could not read $outfile"); $content = readfile($outfile) or error("[po/filter:$page] could not read $outfile");
# Unlinking should happen automatically, thanks to File::Temp, # Unlinking should happen automatically, thanks to File::Temp,
# but it does not work here, probably because of the way writefile() # but it does not work here, probably because of the way writefile()
@ -429,7 +429,7 @@ sub percenttranslated ($) { #{{{
'file_in_name' => \@masters, 'file_in_name' => \@masters,
'file_in_charset' => 'utf-8', 'file_in_charset' => 'utf-8',
'file_out_charset' => 'utf-8', 'file_out_charset' => 'utf-8',
) or error("[po/percenttranslated:$file]: failed to translate"); ) or error("[po/percenttranslated:$page]: failed to translate");
my ($percent,$hit,$queries) = $doc->stats(); my ($percent,$hit,$queries) = $doc->stats();
return $percent; return $percent;
} #}}} } #}}}