]> sipb.mit.edu Git - ikiwiki.git/commitdiff
i18n
authorJoey Hess <joey@kodama.kitenet.net>
Fri, 19 Sep 2008 17:48:36 +0000 (13:48 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Fri, 19 Sep 2008 17:52:01 +0000 (13:52 -0400)
IkiWiki/Plugin/progress.pm

index 6cb21a916e477248b018d171ee419e935f91f1df..2c015284e6fd4188f704c1bfceaaf7247c271443 100644 (file)
@@ -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