Commit | Line | Data |
---|---|---|
4333580e DM |
1 | <?php |
2 | ||
3 | // This file is part of Moodle - http://moodle.org/ | |
4 | // | |
5 | // Moodle is free software: you can redistribute it and/or modify | |
6 | // it under the terms of the GNU General Public License as published by | |
7 | // the Free Software Foundation, either version 3 of the License, or | |
8 | // (at your option) any later version. | |
9 | // | |
10 | // Moodle is distributed in the hope that it will be useful, | |
11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | // GNU General Public License for more details. | |
14 | // | |
15 | // You should have received a copy of the GNU General Public License | |
16 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
17 | ||
18 | /** | |
19 | * Strings for the advanced grading methods subsystem | |
20 | * | |
21 | * @package core | |
22 | * @subpackage grading | |
23 | * @copyright 2011 David Mudrak <david@moodle.com> | |
24 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
25 | */ | |
26 | ||
27 | defined('MOODLE_INTERNAL') || die(); | |
28 | ||
6832a102 DM |
29 | $string['activemethodinfo'] = '\'{$a->method}\' is selected as the active grading method for the \'{$a->area}\' area'; |
30 | $string['activemethodinfonone'] = 'There is no advanced grading method selected for the \'{$a->area}\' area. Simple direct grading will be used.'; | |
31 | $string['changeactivemethod'] = 'Change active grading method to'; | |
6798c63e | 32 | $string['exc_gradingformelement'] = 'Unable to instantiate grading form element'; |
21d37aa6 | 33 | $string['formnotavailable'] = 'Advanced grading method was selected to use but the grading form is not available yet. You may need to define it first via a link in the Settings block.'; |
8168299d | 34 | $string['gradingmanagement'] = 'Advanced grading'; |
6832a102 | 35 | $string['gradingmanagementtitle'] = 'Advanced grading: {$a->component} ({$a->area})'; |
4333580e | 36 | $string['gradingmethod'] = 'Grading method'; |
6832a102 DM |
37 | $string['gradingmethod_help'] = 'Choose the advanced grading method that should be used for calculating grades in the given context. |
38 | ||
39 | To disable advance grading and switch back to the default grading mechanism, choose \'Simple direct grading\'.'; | |
4333580e DM |
40 | $string['gradingmethods'] = 'Grading methods'; |
41 | $string['gradingmethodnone'] = 'Simple direct grading'; | |
6832a102 DM |
42 | $string['manageactionclone'] = 'Create new grading form from template'; |
43 | $string['manageactiondelete'] = 'Remove the currently defined form'; | |
44 | $string['manageactionedit'] = 'Edit the current form definition'; | |
45 | $string['manageactionnew'] = 'Define new grading form from scratch'; | |
21d37aa6 | 46 | $string['noitemid'] = 'Grading not possible. The graded item does not exist.'; |