Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 310 and 311] [Versions 310 and 400] [Versions 310 and 401] [Versions 310 and 402] [Versions 310 and 403]

   1  <?php
   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_multichoice', language 'en', branch 'MOODLE_20_STABLE'
  19   *
  20   * @package    qtype
  21   * @subpackage multichoice
  22   * @copyright  1999 onwards Martin Dougiamas  {@link http://moodle.com}
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  $string['answerhowmany'] = 'One or multiple answers?';
  27  $string['answerhowmany_desc'] = 'Whether the default should be one response (i.e. radio buttons) or multiple responses (i.e. checkboxes).';
  28  $string['answernumbering'] = 'Number the choices?';
  29  $string['answernumbering123'] = '1., 2., 3., ...';
  30  $string['answernumberingabc'] = 'a., b., c., ...';
  31  $string['answernumberingABCD'] = 'A., B., C., ...';
  32  $string['answernumberingiii'] = 'i., ii., iii., ...';
  33  $string['answernumberingIIII'] = 'I., II., III., ...';
  34  $string['answernumberingnone'] = 'No numbering';
  35  $string['answernumbering_desc'] = 'The default numbering style.';
  36  $string['answersingleno'] = 'Multiple answers allowed';
  37  $string['answersingleyes'] = 'One answer only';
  38  $string['choiceno'] = 'Choice {$a}';
  39  $string['choices'] = 'Available choices';
  40  $string['clearchoice'] = 'Clear my choice';
  41  $string['clozeaid'] = 'Enter missing word';
  42  $string['correctansweris'] = 'The correct answer is: {$a}';
  43  $string['correctanswersare'] = 'The correct answers are: {$a}';
  44  $string['correctfeedback'] = 'For any correct response';
  45  $string['deletedchoice'] = 'This choice was deleted after the attempt was started.';
  46  $string['errgradesetanswerblank'] = 'Grade set, but the Answer is blank';
  47  $string['errfractionsaddwrong'] = 'The positive grades you have chosen do not add up to 100%<br />Instead, they add up to {$a}%';
  48  $string['errfractionsnomax'] = 'One of the choices should be 100%, so that it is<br />possible to get a full grade for this question.';
  49  $string['feedback'] = 'Feedback';
  50  $string['fillouttwochoices'] = 'You must fill out at least two choices. Choices left blank will not be used.';
  51  $string['fractionsaddwrong'] = 'The positive grades you have chosen do not add up to 100%<br />Instead, they add up to {$a}%<br />Do you want to go back and fix this question?';
  52  $string['fractionsnomax'] = 'One of the choices should be 100%, so that it is<br />possible to get a full grade for this question.<br />Do you want to go back and fix this question?';
  53  $string['incorrectfeedback'] = 'For any incorrect response';
  54  $string['notenoughanswers'] = 'This type of question requires at least {$a} choices';
  55  $string['overallcorrectfeedback'] = 'Feedback for any correct response';
  56  $string['overallfeedback'] = 'Overall feedback';
  57  $string['overallincorrectfeedback'] = 'Feedback for any incorrect response';
  58  $string['overallpartiallycorrectfeedback'] = 'Feedback for any partially correct response';
  59  $string['partiallycorrectfeedback'] = 'For any partially correct response';
  60  $string['pleaseselectananswer'] = 'Please select an answer.';
  61  $string['pleaseselectatleastoneanswer'] = 'Please select at least one answer.';
  62  $string['pluginname'] = 'Multiple choice';
  63  $string['pluginname_help'] = 'In response to a question (that may include an image) the respondent chooses from multiple answers. A multiple choice question may have one or multiple correct answers.';
  64  $string['pluginname_link'] = 'question/type/multichoice';
  65  $string['pluginnameadding'] = 'Adding a Multiple choice question';
  66  $string['pluginnameediting'] = 'Editing a Multiple choice question';
  67  $string['pluginnamesummary'] = 'Allows the selection of a single or multiple responses from a pre-defined list.';
  68  $string['privacy:metadata'] = 'The Multiple choice question type plugin does not store any personal data.';
  69  $string['selectmulti'] = 'Select one or more:';
  70  $string['selectone'] = 'Select one:';
  71  $string['shuffleanswers'] = 'Shuffle the choices?';
  72  $string['shuffleanswers_desc'] = 'Whether options should be randomly shuffled for each attempt by default.';
  73  $string['shuffleanswers_help'] = 'If enabled, the order of the answers is randomly shuffled for each attempt, provided that "Shuffle within questions" in the activity settings is also enabled.';
  74  $string['singleanswer'] = 'Choose one answer.';
  75  $string['showstandardinstruction'] = 'Show standard instructions';
  76  $string['showstandardinstruction_help'] = 'Whether to show the instructions "Select one:" or "Select one or more:" before multiple choice answers.';
  77  $string['toomanyselected'] = 'You have selected too many options.';