diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-09-19 13:48:36 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-09-19 13:52:01 -0400 |
commit | 9a9b25346dbf380e955ffa815bbe6f6d4ac9c5a6 (patch) | |
tree | 1592645ed7fb6682e2c0e95833ac32a86ed12dd0 | |
parent | 07693b60f48b7d62ef6d9b4052a175cb79b2b758 (diff) |
i18n
-rw-r--r-- | IkiWiki/Plugin/progress.pm | 4 |
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 |