Commit | Line | Data |
---|---|---|
271ffe3f | 1 | <?php |
30c8dd34 DM |
2 | // This file is part of Moodle - http://moodle.org/ |
3 | // | |
4 | // Moodle is free software: you can redistribute it and/or modify | |
5 | // it under the terms of the GNU General Public License as published by | |
6 | // the Free Software Foundation, either version 3 of the License, or | |
7 | // (at your option) any later version. | |
8 | // | |
9 | // Moodle is distributed in the hope that it will be useful, | |
10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | // GNU General Public License for more details. | |
13 | // | |
14 | // You should have received a copy of the GNU General Public License | |
15 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
16 | ||
17 | /** | |
18 | * Strings for component 'qtype_shortanswer', language 'en', branch 'MOODLE_20_STABLE' | |
19 | * | |
7764183a TH |
20 | * @package qtype |
21 | * @subpackage shortanswer | |
22 | * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} | |
23 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
30c8dd34 DM |
24 | */ |
25 | ||
4d933beb | 26 | $string['addingshortanswer'] = 'Adding a short answer question'; |
271ffe3f | 27 | $string['addmoreanswerblanks'] = 'Blanks for {no} More Answers'; |
068b4594 | 28 | $string['answer'] = 'Answer: {$a}'; |
4d933beb | 29 | $string['answermustbegiven'] = 'You must enter an answer if there is a grade or feedback.'; |
30c8dd34 | 30 | $string['answerno'] = 'Answer {$a}'; |
068b4594 TH |
31 | $string['caseno'] = 'No, case is unimportant'; |
32 | $string['casesensitive'] = 'Case sensitivity'; | |
33 | $string['caseyes'] = 'Yes, case must match'; | |
34 | $string['correctansweris'] = 'The correct answer is: {$a}.'; | |
35 | $string['correctanswers'] = 'Correct answers'; | |
4d933beb | 36 | $string['editingshortanswer'] = 'Editing a Short answer question'; |
271ffe3f | 37 | $string['filloutoneanswer'] = 'You must provide at least one possible answer. Answers left blank will not be used. \'*\' can be used as a wildcard to match any characters. The first matching answer will be used to determine the score and feedback.'; |
33dae771 | 38 | $string['notenoughanswers'] = 'This type of question requires at least {$a} answers'; |
068b4594 | 39 | $string['pleaseenterananswer'] = 'Please enter an answer.'; |
4d933beb | 40 | $string['shortanswer'] = 'Short answer'; |
92a119f5 HF |
41 | $string['shortanswer_help'] = 'In response to a question (that may include a image) the respondent types a word or short phrase. There may be several possible correct answers, each with a different grade. If the "Case sensitive" option is selected, then you can have different scores for "Word" or "word".'; |
42 | $string['shortanswer_link'] = 'question/type/shortanswer'; | |
cd120b23 | 43 | $string['shortanswersummary'] = 'Allows a response of one or a few words that is graded by comparing against various model answers, which may contain wildcards.'; |