Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1548,6 +1548,7 @@ |
1549 | 1549 | 'deletedcontribs' => array( |
1550 | 1550 | 'deletedcontributions', |
1551 | 1551 | 'deletedcontributions-title', |
| 1552 | + 'sp-deletedcontributions-contribs', |
1552 | 1553 | ), |
1553 | 1554 | 'linksearch' => array( |
1554 | 1555 | 'linksearch', |
Index: trunk/phase3/includes/specials/SpecialDeletedContributions.php |
— | — | @@ -361,7 +361,7 @@ |
362 | 362 | # Link to undeleted contributions |
363 | 363 | $tools[] = $sk->linkKnown( |
364 | 364 | SpecialPage::getTitleFor( 'Contributions', $nt->getDBkey() ), |
365 | | - wfMsgHtml( 'contributions' ) |
| 365 | + wfMsgHtml( 'sp-deletedcontributions-contribs' ) |
366 | 366 | ); |
367 | 367 | |
368 | 368 | wfRunHooks( 'ContributionsToolLinks', array( $id, $nt, &$tools ) ); |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2302,8 +2302,9 @@ |
2303 | 2303 | 'special-categories-sort-abc' => 'sort alphabetically', |
2304 | 2304 | |
2305 | 2305 | # Special:DeletedContributions |
2306 | | -'deletedcontributions' => 'Deleted user contributions', |
2307 | | -'deletedcontributions-title' => 'Deleted user contributions', |
| 2306 | +'deletedcontributions' => 'Deleted user contributions', |
| 2307 | +'deletedcontributions-title' => 'Deleted user contributions', |
| 2308 | +'sp-deletedcontributions-contribs' => 'contributions', |
2308 | 2309 | |
2309 | 2310 | # Special:LinkSearch |
2310 | 2311 | 'linksearch' => 'External links', |