Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -656,6 +656,7 @@ |
657 | 657 | 'revdelete-selected', |
658 | 658 | 'logdelete-selected', |
659 | 659 | 'revdelete-text', |
| 660 | + 'revdelete-suppress-text', |
660 | 661 | 'revdelete-legend', |
661 | 662 | 'revdelete-hide-text', |
662 | 663 | 'revdelete-hide-name', |
— | — | @@ -1767,6 +1768,7 @@ |
1768 | 1769 | 'sp-contributions-newbies', |
1769 | 1770 | 'sp-contributions-newbies-sub', |
1770 | 1771 | 'sp-contributions-newbies-title', |
| 1772 | + 'sp-contributions-logs', |
1771 | 1773 | 'sp-contributions-blocklog', |
1772 | 1774 | 'sp-contributions-search', |
1773 | 1775 | 'sp-contributions-username', |
Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -164,7 +164,7 @@ |
165 | 165 | wfMsgHtml( 'sp-contributions-blocklog' ), 'type=block&page=' . $nt->getPrefixedUrl() ); |
166 | 166 | } |
167 | 167 | # Other logs link |
168 | | - $tools[] = $sk->makeKnownLinkObj( SpecialPage::getTitleFor( 'Log' ), wfMsgHtml( 'log' ), |
| 168 | + $tools[] = $sk->makeKnownLinkObj( SpecialPage::getTitleFor( 'Log' ), wfMsg( 'sp-contributions-logs' ), |
169 | 169 | 'user=' . $nt->getPartialUrl() ); |
170 | 170 | |
171 | 171 | # Add link to deleted user contributions for priviledged users |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2569,7 +2569,8 @@ |
2570 | 2570 | 'sp-contributions-newbies' => 'Show contributions of new accounts only', |
2571 | 2571 | 'sp-contributions-newbies-sub' => 'For new accounts', |
2572 | 2572 | 'sp-contributions-newbies-title' => 'User contributions for new accounts', |
2573 | | -'sp-contributions-blocklog' => 'Block log', |
| 2573 | +'sp-contributions-blocklog' => 'block log', |
| 2574 | +'sp-contributions-logs' => 'logs', |
2574 | 2575 | 'sp-contributions-search' => 'Search for contributions', |
2575 | 2576 | 'sp-contributions-username' => 'IP Address or username:', |
2576 | 2577 | 'sp-contributions-submit' => 'Search', |