X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/dae0f48e91304afcb6ebe0936360e51b22a56548..a6e1274f468477cceb9b118aa5b49bd74e9385c4:/IkiWiki/Plugin/brokenlinks.pm?ds=sidebyside diff --git a/IkiWiki/Plugin/brokenlinks.pm b/IkiWiki/Plugin/brokenlinks.pm index 225d8d829..e79ce1d81 100644 --- a/IkiWiki/Plugin/brokenlinks.pm +++ b/IkiWiki/Plugin/brokenlinks.pm @@ -27,13 +27,13 @@ sub preprocess (@) { #{{{ next if length $bestlink; push @broken, htmllink($page, $params{destpage}, $link, 1). - " in ". + " from ". htmllink($params{page}, $params{destpage}, $page, 1); } } } - return "There are no broken links!" unless @broken; + return gettext("There are no broken links!") unless @broken; my %seen; return "\n"; } # }}}