X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/343117daf26da5c7d8851901211fc60b03781575..97e3263ad11885c112767393cd6659c85810947a:/IkiWiki/Plugin/progress.pm diff --git a/IkiWiki/Plugin/progress.pm b/IkiWiki/Plugin/progress.pm index 6cb21a916..2c015284e 100644 --- a/IkiWiki/Plugin/progress.pm +++ b/IkiWiki/Plugin/progress.pm @@ -30,7 +30,7 @@ sub preprocess (@) { #{{{ $fill = $params{percent}; ($fill) = $fill =~ m/($percentage_pattern)/; # fill is untainted now if (! defined $fill || ! length $fill || $fill > 100 || $fill < 0) { - error("illegal percent value $params{percent}"); + error(sprintf(gettext("illegal percent value %s"), $params{percent})); } elsif ($fill !~ /%$/) { $fill.="%"; @@ -57,7 +57,7 @@ sub preprocess (@) { #{{{ } } else { - error("need either `percent` or `totalpages` and `donepages` parameters"); + error(gettext("need either `percent` or `totalpages` and `donepages` parameters")); } return <