Index: trunk/extensions/Survey/Survey.i18n.php |
— | — | @@ -92,7 +92,7 @@ |
93 | 93 | 'surveys-surveystats-question-text' => 'Question text', |
94 | 94 | 'surveys-surveystats-question-answercount' => 'Number of answers', |
95 | 95 | 'surveys-surveystats-question-answers' => 'Most provided answers', |
96 | | - 'surveys-surveystats-question-answer' => '$1 ($2 {{PLURAL:$3|answer|answers}})', |
| 96 | + 'surveys-surveystats-question-answer' => '$1 ($2 {{PLURAL:$2|answer|answers}})', |
97 | 97 | |
98 | 98 | // Special:Survey |
99 | 99 | 'surveys-special-unknown-name' => 'There is no survey with the requested name.', |
— | — | @@ -119,3 +119,10 @@ |
120 | 120 | 'survey-jquery-finish' => 'Finish', |
121 | 121 | 'survey-jquery-load-failed' => 'Could not load the survey.', |
122 | 122 | ); |
| 123 | + |
| 124 | +/** Message docs |
| 125 | + * @author Jeroen De Dauw |
| 126 | + */ |
| 127 | +$messages['qqq'] = array( |
| 128 | + 'surveys-surveystats-question-answer' => 'Header for a column listing the amount of answers per question', |
| 129 | +); |
Index: trunk/extensions/Survey/specials/SpecialSurveyStats.php |
— | — | @@ -246,8 +246,7 @@ |
247 | 247 | 'surveys-surveystats-question-answer', |
248 | 248 | 'parsemag', |
249 | 249 | $answer, |
250 | | - $GLOBALS['wgLang']->formatNum( $answerCount ), |
251 | | - $answerCount |
| 250 | + $GLOBALS['wgLang']->formatNum( $answerCount ) |
252 | 251 | ) |
253 | 252 | ); |
254 | 253 | } |