Index: trunk/phase3/maintenance/language/languages.inc |
— | — | @@ -53,6 +53,7 @@ |
54 | 54 | 'preferences-summary', |
55 | 55 | 'specialpages-summary', |
56 | 56 | 'whatlinkshere-summary', |
| 57 | + 'whatlinkshere-barrow', |
57 | 58 | 'variantname-zh-cn', |
58 | 59 | 'variantname-zh-tw', |
59 | 60 | 'variantname-zh-hk', |
Index: trunk/phase3/includes/SpecialWhatlinkshere.php |
— | — | @@ -59,7 +59,7 @@ |
60 | 60 | |
61 | 61 | $isredir = ' (' . wfMsg( 'isredirect' ) . ")\n"; |
62 | 62 | |
63 | | - $wgOut->addHTML('< '.$this->skin->makeLinkObj($this->target, '', 'redirect=no' )."<br />\n"); |
| 63 | + $wgOut->addHTML( wfMsg( 'whatlinkshere-barrow' ) . ' ' .$this->skin->makeLinkObj($this->target, '', 'redirect=no' )."<br />\n"); |
64 | 64 | |
65 | 65 | $this->showIndirectLinks( 0, $this->target, $this->limit, $this->from, $this->dir ); |
66 | 66 | } |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1594,6 +1594,7 @@ |
1595 | 1595 | # |
1596 | 1596 | 'whatlinkshere' => 'What links here', |
1597 | 1597 | 'whatlinkshere-summary' => '', |
| 1598 | +'whatlinkshere-barrow' => '<', |
1598 | 1599 | 'notargettitle' => 'No target', |
1599 | 1600 | 'notargettext' => 'You have not specified a target page or user |
1600 | 1601 | to perform this function on.', |