Index: trunk/extensions/FlaggedRevs/language/RatingHistory.i18n.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | 'ratinghistory-month' => 'last month', |
20 | 20 | 'ratinghistory-year' => 'last year', |
21 | 21 | 'ratinghistory-3years' => 'last 3 years', |
22 | | - 'ratinghistory-graph' => 'Review data from $1 {{PLURAL:$1|reader|readers}}', |
| 22 | + 'ratinghistory-graph' => '$2 of article "$3" ($1 {{PLURAL:$1|reader|readers}})', |
23 | 23 | 'ratinghistory-none' => 'There is not enough reader feedback data available for graphs at this time.', |
24 | 24 | 'ratinghistory-legend' => 'The daily average rating <font color="blue">\'\'(blue)\'\'</font> and selected interval |
25 | 25 | average rating <font color="green">\'\'(green)\'\'</font> are graphed below, by date. The rating values are to be interpreted as follows: |
Index: trunk/extensions/FlaggedRevs/specialpages/RatingHistory_body.php |
— | — | @@ -413,7 +413,8 @@ |
414 | 414 | $plot->styleTagsY = 'font-family: sans-serif; font-size: 10pt;'; |
415 | 415 | $plot->format['dave'] = array( 'style' => 'stroke:blue; stroke-width:1;'); |
416 | 416 | $plot->format['rave'] = array( 'style' => 'stroke:green; stroke-width:1;'); |
417 | | - $plot->title = wfMsgExt('ratinghistory-graph',array('parsemag'),$totalCount); |
| 417 | + $plot->title = wfMsgExt('ratinghistory-graph',array('parsemag'), |
| 418 | + $totalCount, wfMsgHtml("readerfeedback-$tag"), $this->page->getPrefixedText() ); |
418 | 419 | $plot->styleTitle = 'font-family: sans-serif; font-size: 10pt;'; |
419 | 420 | # Create the graph |
420 | 421 | $plot->init(); |