From d3603928a90accac2cfd8f0dbd4833b9280a48c3 Mon Sep 17 00:00:00 2001 From: Tim Hunt Date: Wed, 9 Oct 2013 14:30:04 +0100 Subject: [PATCH] MDL-42230 fix inconsistent quiz lang string. This matches a change made to another string in MDL-32188. --- mod/quiz/lang/en/quiz.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/quiz/lang/en/quiz.php b/mod/quiz/lang/en/quiz.php index e73c79a26d7..66cdf327a55 100644 --- a/mod/quiz/lang/en/quiz.php +++ b/mod/quiz/lang/en/quiz.php @@ -528,7 +528,7 @@ $string['orderingquiz'] = 'Order and paging'; $string['orderingquizx'] = 'Order and paging: {$a}'; $string['outcomesadvanced'] = 'Outcomes are advanced settings'; $string['outof'] = '{$a->grade} out of {$a->maxgrade}'; -$string['outofpercent'] = '{$a->grade} out of a maximum of {$a->maxgrade} ({$a->percent}%)'; +$string['outofpercent'] = '{$a->grade} out of {$a->maxgrade} ({$a->percent}%)'; $string['outofshort'] = '{$a->grade}/{$a->maxgrade}'; $string['overallfeedback'] = 'Overall feedback'; $string['overallfeedback_help'] = 'Overall feedback is text that is shown after a quiz has been attempted. By specifying additional grade boundaries (as a percentage or as a number), the text shown can depend on the grade obtained.';