Index: trunk/extensions/ArticleFeedback/SpecialArticleFeedback.php |
— | — | @@ -29,12 +29,18 @@ |
30 | 30 | // .. and the lowest rated articles |
31 | 31 | $lows = $this->getDailyLows( $highs_lows ); |
32 | 32 | |
| 33 | + // provide some messaging above high/low tables |
| 34 | + $wgOut->addWikiText( wfMsg( 'articleFeedback-copy-above-highlow-tables' )); |
| 35 | + |
33 | 36 | //render daily highs table |
34 | 37 | $this->renderDailyHighsAndLows( $highs, wfMsg( 'articleFeedback-table-caption-dailyhighs', $wgLang->date( time() ))); |
35 | 38 | |
36 | 39 | //render daily lows table |
37 | 40 | $this->renderDailyHighsAndLows( $lows, wfMsg( 'articleFeedback-table-caption-dailylows', $wgLang->date( time() ))); |
38 | 41 | |
| 42 | + // provide some messaging below high/low tables |
| 43 | + $wgOut->addWikiText( wfMsg( 'articleFeedback-copy-below-highlow-tables' )); |
| 44 | + |
39 | 45 | /* |
40 | 46 | This functionality does not exist yet. |
41 | 47 | $this->renderWeeklyMostChanged(); |
Index: trunk/extensions/ArticleFeedback/ArticleFeedback.i18n.php |
— | — | @@ -84,6 +84,8 @@ |
85 | 85 | 'articleFeedback-table-caption-recentlows' => 'Recent lows', |
86 | 86 | 'articleFeedback-table-heading-page' => 'Page', |
87 | 87 | 'articleFeedback-table-heading-average' => 'Average', |
| 88 | + 'articleFeedback-copy-above-highlow-tables' => 'This is an experimental feature. Please provide feedback on the talk page.', |
| 89 | + 'articleFeedback-copy-below-highlow-tables' => 'These tables contain articles that have received at least 10 ratings within the last 24 hours. Averages are calculated by taking the mean of all ratings submitted within the last 24 hours.', |
88 | 90 | /* EmailCapture */ |
89 | 91 | 'articlefeedback-emailcapture-response-body' => 'Hello! |
90 | 92 | |