Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1514,6 +1514,7 @@ |
1515 | 1515 | ), |
1516 | 1516 | 'contributions' => array( |
1517 | 1517 | 'contributions', |
| 1518 | + 'contributions-title', |
1518 | 1519 | 'mycontris', |
1519 | 1520 | 'contribsub2', |
1520 | 1521 | 'nocontribs', |
— | — | @@ -1524,6 +1525,7 @@ |
1525 | 1526 | 'sp-contributions' => array( |
1526 | 1527 | 'sp-contributions-newbies', |
1527 | 1528 | 'sp-contributions-newbies-sub', |
| 1529 | + 'sp-contributions-newbies-title', |
1528 | 1530 | 'sp-contributions-blocklog', |
1529 | 1531 | 'sp-contributions-search', |
1530 | 1532 | 'sp-contributions-username', |
Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -223,8 +223,10 @@ |
224 | 224 | if ( $target != 'newbies' ) { |
225 | 225 | $target = $nt->getText(); |
226 | 226 | $wgOut->setSubtitle( contributionsSub( $nt, $id ) ); |
| 227 | + $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsg( 'contributions-title', $target ) ) ); |
227 | 228 | } else { |
228 | 229 | $wgOut->setSubtitle( wfMsgHtml( 'sp-contributions-newbies-sub') ); |
| 230 | + $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsg( 'sp-contributions-newbies-title' ) ) ); |
229 | 231 | } |
230 | 232 | |
231 | 233 | if ( ( $ns = $wgRequest->getVal( 'namespace', null ) ) !== null && $ns !== '' ) { |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2289,23 +2289,25 @@ |
2290 | 2290 | 'blanknamespace' => '(Main)', |
2291 | 2291 | |
2292 | 2292 | # Contributions |
2293 | | -'contributions' => 'User contributions', |
2294 | | -'mycontris' => 'My contributions', |
2295 | | -'contribsub2' => 'For $1 ($2)', |
2296 | | -'nocontribs' => 'No changes were found matching these criteria.', |
2297 | | -'uctop' => '(top)', |
2298 | | -'month' => 'From month (and earlier):', |
2299 | | -'year' => 'From year (and earlier):', |
| 2293 | +'contributions' => 'User contributions', |
| 2294 | +'contributions-title' => 'User contributions for $1', |
| 2295 | +'mycontris' => 'My contributions', |
| 2296 | +'contribsub2' => 'For $1 ($2)', |
| 2297 | +'nocontribs' => 'No changes were found matching these criteria.', |
| 2298 | +'uctop' => '(top)', |
| 2299 | +'month' => 'From month (and earlier):', |
| 2300 | +'year' => 'From year (and earlier):', |
2300 | 2301 | |
2301 | | -'sp-contributions-newbies' => 'Show contributions of new accounts only', |
2302 | | -'sp-contributions-newbies-sub' => 'For new accounts', |
2303 | | -'sp-contributions-blocklog' => 'Block log', |
2304 | | -'sp-contributions-search' => 'Search for contributions', |
2305 | | -'sp-contributions-username' => 'IP Address or username:', |
2306 | | -'sp-contributions-submit' => 'Search', |
2307 | | -'sp-contributions-explain' => '', # only translate this message to other languages if you have to change it |
2308 | | -'sp-contributions-footer' => '-', # do not translate or duplicate this message to other languages |
2309 | | -'sp-contributions-footer-anon' => '-', # do not translate or duplicate this message to other languages |
| 2302 | +'sp-contributions-newbies' => 'Show contributions of new accounts only', |
| 2303 | +'sp-contributions-newbies-sub' => 'For new accounts', |
| 2304 | +'sp-contributions-newbies-title' => 'User contributions for new accounts', |
| 2305 | +'sp-contributions-blocklog' => 'Block log', |
| 2306 | +'sp-contributions-search' => 'Search for contributions', |
| 2307 | +'sp-contributions-username' => 'IP Address or username:', |
| 2308 | +'sp-contributions-submit' => 'Search', |
| 2309 | +'sp-contributions-explain' => '', # only translate this message to other languages if you have to change it |
| 2310 | +'sp-contributions-footer' => '-', # do not translate or duplicate this message to other languages |
| 2311 | +'sp-contributions-footer-anon' => '-', # do not translate or duplicate this message to other languages |
2310 | 2312 | |
2311 | 2313 | # What links here |
2312 | 2314 | 'whatlinkshere' => 'What links here', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -52,6 +52,8 @@ |
53 | 53 | * Added 'noconvertlink' toogle that can be set per user preferences, also |
54 | 54 | added 'convertlink=no|yes' on GET requests whether have the link titles |
55 | 55 | being converted or not |
| 56 | +* (bug 14921) Special:Contributions/: add user name to <title> |
| 57 | + Patch by Emufarmers |
56 | 58 | |
57 | 59 | === Bug fixes in 1.14 === |
58 | 60 | |