Skip to content
Snippets Groups Projects
Commit e83f5cf5 authored by Sivaji Ganesh Jojodae's avatar Sivaji Ganesh Jojodae
Browse files

Allow to translate string Q: on quiz feedback page by dereine.

parent aef1a70f
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ function theme_long_answer_report($question, $show_points, $show_feedback) {
$question = (object)$question;
}
$slug = '<div class="quiz_summary_question"><span class="quiz_question_bullet">Q:</span> '.
$slug = '<div class="quiz_summary_question"><span class="quiz_question_bullet">'. t('Q:') .'</span> '.
check_markup($question->body, $question->format, FALSE) .
'</div>';
......@@ -67,4 +67,4 @@ function theme_long_answer_feedback($quiz, $report) {
t('The answer to this question will be scored by hand.')
. '</em></div>';
return $output;
}
\ No newline at end of file
}
......@@ -16,7 +16,7 @@ function theme_short_answer_report($question, $show_points, $show_feedback) {
$question = (object)$question;
}
$slug = '<div class="quiz_summary_question"><span class="quiz_question_bullet">Q:</span> '.
$slug = '<div class="quiz_summary_question"><span class="quiz_question_bullet">'. t('Q:') .'</span> '.
check_markup($question->body, $question->format, FALSE) .
'</div>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment