{{ __('You will have to complete the quiz to continue the video') }}
{{
__('This quiz consists of {0} questions.').format(questions.length)
}}
{{
__(
'Please ensure that you complete all the questions in {0} minutes.'
).format(quiz.data.duration)
}}
{{
__(
'If you fail to do so, the quiz will be automatically submitted when the timer ends.'
)
}}
{{
__(
'You will have to get {0}% correct answers in order to pass the quiz.'
).format(quiz.data.passing_percentage)
}}
{{
__('You can attempt this quiz {0}.').format(
quiz.data.max_attempts == 1
? '1 time'
: `${quiz.data.max_attempts} times`
)
}}
{{
__(
'If you answer incorrectly, {0} {1} will be deducted from your score for each incorrect answer.'
).format(
quiz.data.marks_to_cut,
quiz.data.marks_to_cut == 1 ? 'mark' : 'marks'
)
}}
{{ __('Time') }}:
{{ formatTimer(timer) }}
{{ quiz.data.title }}
{{
__(
'You have already exceeded the maximum number of attempts allowed for this quiz.'
)
}}
{{
__('Question {0} of {1}').format(
activeQuestion,
questions.length
)
}}
{{ __('Quiz Summary') }}
{{
__(
"Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
)
}}
{{
__(
'You got {0}% correct answers with a score of {1} out of {2}'
).format(
Math.ceil(quizSubmission.data.percentage),
quizSubmission.data.score,
quizSubmission.data.score_out_of
)
}}