mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 09:26:35 +02:00
51 lines
3 KiB
PHP
51 lines
3 KiB
PHP
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Strings for component 'block_quiz_results', language 'en', branch 'MOODLE_20_STABLE'
|
|
*
|
|
* @package block_quiz_results
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$string['bestgrade'] = 'The highest grade:';
|
|
$string['bestgrades'] = 'The {$a} highest grades:';
|
|
$string['bestgroupgrade'] = 'The group with the highest average:';
|
|
$string['bestgroupgrades'] = 'The {$a} groups with the highest average:';
|
|
$string['config_format_absolute'] = 'Absolute numbers';
|
|
$string['config_format_fraction'] = 'Fractions';
|
|
$string['config_format_percentage'] = 'Percentages';
|
|
$string['config_grade_format'] = 'Display grades as:';
|
|
$string['config_name_format'] = 'Privacy level for displayed results:';
|
|
$string['config_names_anon'] = 'Anonymous results';
|
|
$string['config_names_full'] = 'Display full names';
|
|
$string['config_names_id'] = 'Display only ID numbers';
|
|
$string['config_no_quizzes_in_course'] = 'This course does not contain any quiz activities . You must add at least one before you are able to use this block correctly.';
|
|
$string['config_select_quiz'] = 'Which quiz should this block display results from?';
|
|
$string['config_show_best'] = 'How many of the highest grades should be shown (0 to disable)?';
|
|
$string['config_show_worst'] = 'How many of the lowest grades should be shown (0 to disable)?';
|
|
$string['configuredtoshownothing'] = 'This block\'s configuration currently does not allow it to show any results. You may want to either configure it or hide it.';
|
|
$string['config_use_groups'] = 'Show groups instead of students (only if the quiz supports groups)?';
|
|
$string['error_emptyquizid'] = 'There is an error right now with this block: you need to select which quiz it should display results from.';
|
|
$string['error_emptyquizrecord'] = 'There is an error right now with this block: the selected quiz does not seem to exist in the database.';
|
|
$string['error_nogroupsexist'] = 'There is an error right now with this block: it is set to display grades in group mode, but the course has no defined groups.';
|
|
$string['pluginname'] = 'Quiz results';
|
|
$string['worstgrade'] = 'The lowest grade:';
|
|
$string['worstgrades'] = 'The {$a} lowest grades:';
|
|
$string['worstgroupgrade'] = 'The group with the lowest average:';
|
|
$string['worstgroupgrades'] = 'The {$a} groups with the lowest average:';
|