Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1265,6 +1265,7 @@ |
1266 | 1266 | 'istemplate', |
1267 | 1267 | 'whatlinkshere-prev', |
1268 | 1268 | 'whatlinkshere-next', |
| 1269 | + 'whatlinkshere-links', |
1269 | 1270 | ), |
1270 | 1271 | 'block' => array( |
1271 | 1272 | 'blockip', |
Index: trunk/phase3/includes/SpecialWhatlinkshere.php |
— | — | @@ -230,6 +230,10 @@ |
231 | 231 | $wgOut->addHTML( ' (' . implode( ', ', $props ) . ') ' ); |
232 | 232 | } |
233 | 233 | |
| 234 | + //add whatlinkshere link |
| 235 | + $whatlink=$this->skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Whatlinkshere', $nt->getPrefixedDBkey() ), wfMsgHtml( 'whatlinkshere-links' ) ); |
| 236 | + $wgOut->addHTML(' ' . $whatlink); |
| 237 | + |
234 | 238 | if ( $row->page_is_redirect ) { |
235 | 239 | if ( $level < 2 ) { |
236 | 240 | $this->showIndirectLinks( $level + 1, $nt, 500 ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1958,6 +1958,7 @@ |
1959 | 1959 | 'istemplate' => 'inclusion', |
1960 | 1960 | 'whatlinkshere-prev' => '{{PLURAL:$1|previous|previous $1}}', |
1961 | 1961 | 'whatlinkshere-next' => '{{PLURAL:$1|next|next $1}}', |
| 1962 | +'whatlinkshere-links' => '(? links)', |
1962 | 1963 | |
1963 | 1964 | # Block/unblock IP |
1964 | 1965 | # |
Index: trunk/phase3/languages/messages/MessagesDe.php |
— | — | @@ -260,7 +260,7 @@ |
261 | 261 | |
262 | 262 | 'about' => 'Über', |
263 | 263 | 'article' => 'Seite', |
264 | | -'newwindow' => '(wird in einem neuen Fenster geöffnet)', |
| 264 | +'newwindow' => '(öffnet sich in neuem Fenster)', |
265 | 265 | 'cancel' => 'Abbrechen', |
266 | 266 | 'qbfind' => 'Finden', |
267 | 267 | 'qbbrowse' => 'Blättern', |
— | — | @@ -540,7 +540,6 @@ |
541 | 541 | # Password reset dialog |
542 | 542 | 'resetpass' => 'Passwort für Benutzerkonto zurücksetzen', |
543 | 543 | 'resetpass_announce' => 'Anmeldung mit dem per E-Mail zugesandten Code. Um die Anmeldung abzuschließen, müssen Sie jetzt ein neues Passwort wählen.', |
544 | | -'resetpass_text' => '<!-- Add text here -->', |
545 | 544 | 'resetpass_header' => 'Passwort zurücksetzen', |
546 | 545 | 'resetpass_submit' => 'Passwort übermitteln und anmelden', |
547 | 546 | 'resetpass_success' => 'Ihr Passwort wurde erfolgreich geändert. Es folgt die Anmeldung …', |
— | — | @@ -1533,6 +1532,7 @@ |
1534 | 1533 | 'istemplate' => 'Vorlageneinbindung', |
1535 | 1534 | 'whatlinkshere-prev' => '{{PLURAL:$1|vorheriger|vorherige $1}}', |
1536 | 1535 | 'whatlinkshere-next' => '{{PLURAL:$1|nächster|nächste $1}}', |
| 1536 | +'whatlinkshere-links' => '(← Links)', |
1537 | 1537 | |
1538 | 1538 | # Block/unblock |
1539 | 1539 | 'blockip' => 'IP-Adresse/Benutzer sperren', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -42,6 +42,7 @@ |
43 | 43 | * (bug 6072) Introducing 'border' keyword to the [[Image:]] syntax |
44 | 44 | * Introducing 'frameless' keyword to [[Image:]] syntax which respects the |
45 | 45 | user preferences for image width like 'thumb' but without a frame. |
| 46 | +* (bug 7960) Link to "what links here" for each "what links here" entry |
46 | 47 | |
47 | 48 | == Bugfixes since 1.10 == |
48 | 49 | |