Index: trunk/phase3/includes/SpecialWhatlinkshere.php |
— | — | @@ -73,7 +73,7 @@ |
74 | 74 | * @private |
75 | 75 | */ |
76 | 76 | function showIndirectLinks( $level, $target, $limit, $from = 0, $back = 0 ) { |
77 | | - global $wgOut, $wgLang; |
| 77 | + global $wgOut; |
78 | 78 | $fname = 'WhatLinksHerePage::showIndirectLinks'; |
79 | 79 | $dbr = wfGetDB( DB_READ ); |
80 | 80 | $options = array(); |
— | — | @@ -194,7 +194,7 @@ |
195 | 195 | |
196 | 196 | if ( $level == 0 ) { |
197 | 197 | $wgOut->addHTML( $this->whatlinkshereForm( $options ) ); |
198 | | - $wgOut->addWikiText( wfMsgExt( 'linkshere', array( 'parsemag' ), $this->target->getPrefixedText(), $wgLang->formatNum( count( $rows ) ) ) ); |
| 198 | + $wgOut->addWikiText( wfMsg( 'linkshere', $this->target->getPrefixedText() ) ); |
199 | 199 | } |
200 | 200 | $isredir = wfMsg( 'isredirect' ); |
201 | 201 | $istemplate = wfMsg( 'istemplate' ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1931,7 +1931,7 @@ |
1932 | 1932 | 'notargettext' => 'You have not specified a target page or user |
1933 | 1933 | to perform this function on.', |
1934 | 1934 | 'linklistsub' => '(List of links)', |
1935 | | -'linkshere' => "The following {{PLURAL:$2|page links|$2 pages link}} to '''[[:$1]]''':", |
| 1935 | +'linkshere' => "The following pages link to '''[[:$1]]''':", |
1936 | 1936 | 'nolinkshere' => "No pages link to '''[[:$1]]'''.", |
1937 | 1937 | 'nolinkshere-ns' => "No pages link to '''[[:$1]]''' in the chosen namespace.", |
1938 | 1938 | 'isredirect' => 'redirect page', |
Index: trunk/phase3/languages/messages/MessagesDe.php |
— | — | @@ -1530,7 +1530,7 @@ |
1531 | 1531 | 'notargettitle' => 'Keine Seite angegeben', |
1532 | 1532 | 'notargettext' => 'Sie haben nicht angegeben, auf welche Seite diese Funktion angewendet werden soll.', |
1533 | 1533 | 'linklistsub' => '(Linkliste)', |
1534 | | -'linkshere' => "Die {{PLURAL:$2|folgende Seite verlinkt|folgenden $2 Seiten verlinken}} auf '''„[[:$1]]“''':", |
| 1534 | +'linkshere' => "Die folgenden Seiten verlinken auf '''„[[:$1]]“''':", |
1535 | 1535 | 'nolinkshere' => "Keine Seite verlinkt auf '''„[[:$1]]“'''.", |
1536 | 1536 | 'nolinkshere-ns' => "Keine Seite verlinkt auf '''„[[:$1]]“''' im gewählten Namensraum.", |
1537 | 1537 | 'isredirect' => 'Weiterleitungsseite', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -87,7 +87,6 @@ |
88 | 88 | * On reupload, add a null revision to the image description page |
89 | 89 | * Group log output by date |
90 | 90 | * Kurdish interface latin/arabic writing system with transliteration |
91 | | -* Add number of links to Special:Whatlinkshere |
92 | 91 | * Allow wikilinks in header of Special:Withoutinterwiki |
93 | 92 | |
94 | 93 | == Bugfixes since 1.10 == |