]> _ Git - fluidbook-toolbox-quiz.git/commitdiff
wait #6448 @0:05
authorsoufiane <soufiane@cubedesigners.com>
Fri, 3 Nov 2023 13:46:52 +0000 (14:46 +0100)
committersoufiane <soufiane@cubedesigners.com>
Fri, 3 Nov 2023 13:46:52 +0000 (14:46 +0100)
js/quiz.animations.js

index 8665df9be64634e8d207af2c7ca0633ee64f9517..d8534f4e64ff8d740b66144d265a764a6e91c4d8 100644 (file)
@@ -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)];