Index: trunk/extensions/FlaggedRevs/language/RatingHistory.i18n.php |
— | — | @@ -20,8 +20,7 @@ |
21 | 21 | 'ratinghistory-3years' => 'last 3 years', |
22 | 22 | 'ratinghistory-chart' => 'Reader feedback rating over time', |
23 | 23 | 'ratinghistory-users' => 'Users who gave ratings', |
24 | | - 'ratinghistory-graph' => '$2 of "$3" ($1 {{PLURAL:$1|review|reviews}}) |
25 | | - <tspan font-weight="normal">[<tspan fill="blue">μ</tspan>=$4; <tspan fill="blue">σ</tspan>=$5]</tspan>', |
| 24 | + 'ratinghistory-graph' => '$2 of "$3" ($1 {{PLURAL:$1|review|reviews}})', |
26 | 25 | 'readerfeedback-svg' => 'View as SVG', |
27 | 26 | 'ratinghistory-none' => 'There is not enough reader feedback data available for graphs at this time.', |
28 | 27 | 'ratinghistory-legend' => 'The \'\'\'daily average rating\'\'\' <font color="blue">\'\'(blue)\'\'</font> and |
Index: trunk/extensions/FlaggedRevs/specialpages/RatingHistory_body.php |
— | — | @@ -446,9 +446,9 @@ |
447 | 447 | $plot->format['rave'] = array( 'style' => 'stroke:green; stroke-width:1;' ); |
448 | 448 | $plot->format['dcount'] = array( 'style' => 'stroke:red; stroke-width:1;' ); |
449 | 449 | #'attributes' => "marker-end='url(#circle)'"); |
450 | | - $pageText = $wgContLang->truncate( $this->page->getPrefixedText(), 60, '...' ); |
| 450 | + $pageText = $wgContLang->truncate( $this->page->getPrefixedText(), 65, '...' ); |
451 | 451 | $plot->title = wfMsgExt('ratinghistory-graph',array('parsemag','content'), |
452 | | - $totalCount, wfMsgForContent("readerfeedback-$tag"), $pageText, $u, $sd ); |
| 452 | + $totalCount, wfMsgForContent("readerfeedback-$tag"), $pageText ); |
453 | 453 | $plot->styleTitle = 'font-family: sans-serif; font-weight: bold; font-size: 12pt;'; |
454 | 454 | $plot->backgroundStyle = 'fill:#F0F0F0;'; |
455 | 455 | // extra code for markers |