summaryrefslogtreecommitdiff
path: root/includes/SpecialWhatlinkshere.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialWhatlinkshere.php')
-rw-r--r--includes/SpecialWhatlinkshere.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/SpecialWhatlinkshere.php b/includes/SpecialWhatlinkshere.php
index cedf6049..a95530fe 100644
--- a/includes/SpecialWhatlinkshere.php
+++ b/includes/SpecialWhatlinkshere.php
@@ -59,7 +59,7 @@ class WhatLinksHerePage {
$isredir = ' (' . wfMsg( 'isredirect' ) . ")\n";
- $wgOut->addHTML('&lt; '.$this->skin->makeLinkObj($this->target, '', 'redirect=no' )."<br />\n");
+ $wgOut->addHTML( wfMsg( 'whatlinkshere-barrow' ) . ' ' .$this->skin->makeLinkObj($this->target, '', 'redirect=no' )."<br />\n");
$this->showIndirectLinks( 0, $this->target, $this->limit, $this->from, $this->dir );
}
@@ -128,7 +128,7 @@ class WhatLinksHerePage {
if ( !$dbr->numRows( $plRes ) && !$dbr->numRows( $tlRes ) ) {
if ( 0 == $level ) {
- $wgOut->addWikiText( wfMsg( 'nolinkshere' ) );
+ $wgOut->addWikiText( wfMsg( 'nolinkshere', $this->target->getPrefixedText() ) );
}
return;
}
@@ -187,7 +187,7 @@ class WhatLinksHerePage {
}
if ( 0 == $level ) {
- $wgOut->addWikiText( wfMsg( 'linkshere' ) );
+ $wgOut->addWikiText( wfMsg( 'linkshere', $this->target->getPrefixedText() ) );
}
$isredir = wfMsg( 'isredirect' );
$istemplate = wfMsg( 'istemplate' );