From 54ad4dba6a07987e46ead86d2d3b6c3fad06590e Mon Sep 17 00:00:00 2001 From: soufiane Date: Fri, 3 Nov 2023 14:46:52 +0100 Subject: [PATCH] wait #6448 @0:05 --- js/quiz.animations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/quiz.animations.js b/js/quiz.animations.js index 8665df9..d8534f4 100644 --- a/js/quiz.animations.js +++ b/js/quiz.animations.js @@ -45,7 +45,7 @@ QuizAnimations.prototype = { instantReviewAnimation: function (status) { let ok = [this.quiz.l10n.__('Fantastic'), this.quiz.l10n.__('Impressive'), this.quiz.l10n.__('Perfect'), this.quiz.l10n.__('Well done'), this.quiz.l10n.__('Bravo'), this.quiz.l10n.__('Good job'), this.quiz.l10n.__('Excellent'), this.quiz.l10n.__('Impressive'), this.quiz.l10n.__('Great job'), this.quiz.l10n.__('Superb'), this.quiz.l10n.__('Terrific')]; - let nok = [this.quiz.l10n.__('Almost'), this.quiz.l10n.__('Not quite'), this.quiz.l10n.__('Keep trying'), this.quiz.l10n.__('Nearly there'), this.quiz.l10n.__('Nice try')]; + let nok = [this.quiz.l10n.__('Keep trying'), this.quiz.l10n.__('Try again'), this.quiz.l10n.__('Double-check'), this.quiz.l10n.__('Reconsider')]; let selector = $("#instantReviewAnimation") let text = status === "NOK" ? nok[Math.floor(Math.random() * nok.length)] : ok[Math.floor(Math.random() * ok.length)]; -- 2.39.5