]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Setup.pm
web commit by http://id.inelegant.org/
[ikiwiki.git] / IkiWiki / Setup.pm
index 2b4c76bd0b228539cb94feb69fba97435fff9833..2d6e1d1cffe082315e3f64493c570e86c7d39649 100644 (file)
@@ -10,7 +10,9 @@ package IkiWiki;
 sub setup () { # {{{
        my $setup=possibly_foolish_untaint($config{setup});
        delete $config{setup};
-       open (IN, $setup) || error("read $setup: $!\n");
+       #translators: The first parameter is a filename, and the second
+       #translators: is a (probably not translated) error message.
+       open (IN, $setup) || error(sprintf(gettext("cannot read %s: %s"), $setup, $!));
        my $code;
        {
                local $/=undef;