Index: trunk/extensions/CommunityVoice/Modules/Ratings.php |
— | — | @@ -177,9 +177,8 @@ |
178 | 178 | 'cv_ratings_scale_' . $args['category'] . '_' . $args['title'] |
179 | 179 | ); |
180 | 180 | // Gets stats message |
181 | | - $stats = CommunityVoice::getMessage( |
182 | | - 'ratings', 'scale-stats', array( round( $rating, 1 ), $totalVotes ) |
183 | | - ); |
| 181 | + $stats = wfMsgExt( 'communityvoice-ratings-scale-stats', array( 'parsemag' ), round( $rating, 1 ), $totalVotes ); |
| 182 | + |
184 | 183 | // Begins rating scale |
185 | 184 | $htmlOut = Html::open( |
186 | 185 | 'div', |