Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1283,7 +1283,6 @@ |
1284 | 1284 | 'statistics-header-users', |
1285 | 1285 | 'statistics-articles', |
1286 | 1286 | 'statistics-pages', |
1287 | | - 'statistics-pages-tooltip', |
1288 | 1287 | 'statistics-files', |
1289 | 1288 | 'statistics-edits', |
1290 | 1289 | 'statistics-edits-average', |
— | — | @@ -1292,7 +1291,6 @@ |
1293 | 1292 | 'statistics-jobqueue', |
1294 | 1293 | 'statistics-users', |
1295 | 1294 | 'statistics-users-active', |
1296 | | - 'statistics-users-active-tooltip', |
1297 | 1295 | 'statistics-mostpopular', |
1298 | 1296 | 'statistics-footer', |
1299 | 1297 | ), |
Index: trunk/phase3/includes/specials/SpecialStatistics.php |
— | — | @@ -64,8 +64,7 @@ |
65 | 65 | ' class="mw-statistics-articles"' ) . |
66 | 66 | formatRow( wfMsgExt( 'statistics-pages', array( 'parseinline' ) ), |
67 | 67 | $wgLang->formatNum( $total ), |
68 | | - ' class="mw-statistics-pages"', |
69 | | - 'statistics-pages-tooltip' ) . |
| 68 | + ' class="mw-statistics-pages"' ) . |
70 | 69 | formatRow( wfMsgExt( 'statistics-files', array( 'parseinline' ) ), |
71 | 70 | $wgLang->formatNum( $images ), |
72 | 71 | ' class="mw-statistics-files"' ) . |
— | — | @@ -89,8 +88,7 @@ |
90 | 89 | ' class="mw-statistics-users"' ) . |
91 | 90 | formatRow( wfMsgExt( 'statistics-users-active', array( 'parseinline' ) ), |
92 | 91 | $wgLang->formatNum( $activeUsers ), |
93 | | - ' class="mw-statistics-users-active"', |
94 | | - 'statistics-users-active-tooltip' ); |
| 92 | + ' class="mw-statistics-users-active"' ); |
95 | 93 | |
96 | 94 | # Statistic - usergroups |
97 | 95 | foreach( $wgGroupPermissions as $group => $permissions ) { |
— | — | @@ -182,14 +180,8 @@ |
183 | 181 | * @param float $number a number |
184 | 182 | * @return string table row in HTML format |
185 | 183 | */ |
186 | | -function formatRow( $text, $number, $trExtraParams = '', $tooltip = '' ) { |
187 | | - global $wgStylePath; |
| 184 | +function formatRow( $text, $number, $trExtraParams = '' ) { |
188 | 185 | |
189 | | - if( $tooltip ) { |
190 | | - $tooltipText = wfMsg( $tooltip ); |
191 | | - $text = '<div class="mw-tooltip-icon" title="' . $tooltipText . '">' . $text . '<sup><a class="mw-tooptip-icon" title="' . $tooltipText . '"><img alt="' . $tooltipText . '" src="' . $wgStylePath . '/common/images/tooltip_icon.png" width="10" height="12" border="0" /></a></sup></div>'; |
192 | | - } |
193 | | - |
194 | 186 | return "<tr{$trExtraParams}> |
195 | 187 | <td>" . |
196 | 188 | $text . |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2017,8 +2017,7 @@ |
2018 | 2018 | 'statistics-header-views' => 'View statistics', |
2019 | 2019 | 'statistics-header-users' => 'User statistics', |
2020 | 2020 | 'statistics-articles' => 'Content pages', |
2021 | | -'statistics-pages' => 'Pages', |
2022 | | -'statistics-pages-tooltip' => 'All pages in the wiki, including talk pages, redirects, etc.', |
| 2021 | +'statistics-pages' => 'Pages <small>(All pages in the wiki, including talk pages, redirects, etc.)</small>', |
2023 | 2022 | 'statistics-files' => 'Uploaded files', |
2024 | 2023 | 'statistics-edits' => 'Page edits since {{SITENAME}} was setup', |
2025 | 2024 | 'statistics-edits-average' => 'Average edits per page', |
— | — | @@ -2026,8 +2025,7 @@ |
2027 | 2026 | 'statistics-views-peredit' => 'Views per edit', |
2028 | 2027 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Job queue] length', |
2029 | 2028 | 'statistics-users' => 'Registered [[Special:ListUsers|users]]', |
2030 | | -'statistics-users-active' => 'Active users', |
2031 | | -'statistics-users-active-tooltip' => 'Users who have performed an action in the past month', |
| 2029 | +'statistics-users-active' => 'Active users <small>(Users who have performed an action in the last month)</small>', |
2032 | 2030 | 'statistics-mostpopular' => 'Most viewed pages', |
2033 | 2031 | 'statistics-footer' => '', # do not translate or duplicate this message to other languages |
2034 | 2032 | |