aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-19 13:48:36 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-19 13:52:01 -0400
commit9a9b25346dbf380e955ffa815bbe6f6d4ac9c5a6 (patch)
tree1592645ed7fb6682e2c0e95833ac32a86ed12dd0 /IkiWiki
parent07693b60f48b7d62ef6d9b4052a175cb79b2b758 (diff)
downloadikiwiki-9a9b25346dbf380e955ffa815bbe6f6d4ac9c5a6.tar
ikiwiki-9a9b25346dbf380e955ffa815bbe6f6d4ac9c5a6.tar.gz
i18n
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/progress.pm4
1 files changed, 2 insertions, 2 deletions
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 <<EODIV