diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-09-29 17:06:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-09-29 17:06:56 -0400 |
commit | 6b01fca2539c847c315bd3a346023ef02affc0ab (patch) | |
tree | c56e56090b8c002767c6827c934e38a9b73e5a21 | |
parent | 71affd80d70c0e45c804e72915b23217539d0c26 (diff) |
use gettext
-rw-r--r-- | IkiWiki/Render.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index ceb7c842c..bc997ffb0 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -250,7 +250,7 @@ sub refresh () { #{{{ my $test=$config{srcdir}; while (length $test) { if (-l $test && ! $config{allow_symlinks_before_srcdir}) { - error("symlink found in srcdir path ($test) -- set allow_symlinks_before_srcdir to allow this"); + error(sprintf(gettext("symlink found in srcdir path (%s) -- set allow_symlinks_before_srcdir to allow this")), $test); } unless ($test=~s/\/+$//) { $test=dirname($test); |