Index: trunk/phase3/includes/SpecialStatistics.php |
— | — | @@ -75,7 +75,7 @@ |
76 | 76 | $text .= wfMsg( 'userstatstext', |
77 | 77 | $wgLang->formatNum( $users ), |
78 | 78 | $wgLang->formatNum( $admins ), |
79 | | - '[[' . wfMsg( 'administrators' ) . ']]', |
| 79 | + '[[' . wfMsgForContent( 'administrators' ) . ']]', |
80 | 80 | // should logically be after #admins, danm backwards compatability! |
81 | 81 | $wgLang->formatNum( sprintf( '%.2f', $admins / $users * 100 ) ) |
82 | 82 | ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -262,6 +262,8 @@ |
263 | 263 | * (bug 5937) Register links from gallery captions with the parent parser output |
264 | 264 | object so that link tables receive those updates too |
265 | 265 | * (bug 5845) Introduce BASEPAGENAME and BASEPAGENAMEE magic words |
| 266 | +* (bug 5941) Use content language when getting the administrator page title for |
| 267 | + Special:Statistics |
266 | 268 | |
267 | 269 | == Compatibility == |
268 | 270 | |
Index: trunk/phase3/languages/Messages.php |
— | — | @@ -213,7 +213,7 @@ |
214 | 214 | 'viewcount' => 'This page has been accessed {{plural:$1|one time|$1 times}}.', |
215 | 215 | 'copyright' => 'Content is available under $1.', |
216 | 216 | 'protectedpage' => 'Protected page', |
217 | | -'administrators' => 'Project:Administrators', |
| 217 | +'administrators' => '{{ns:project}}:Administrators', |
218 | 218 | 'jumpto' => 'Jump to:', |
219 | 219 | 'jumptonavigation' => 'navigation', |
220 | 220 | 'jumptosearch' => 'search', |