Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
   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_randomsamatch', language 'en', branch 'MOODLE_20_STABLE'
  19   *
  20   * @package    qtype
  21   * @subpackage randomsamatch
  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['insufficientoptions'] = 'Insufficient selection options are available for this question, therefore it is not available in  this quiz. Please inform your teacher.';
  27  $string['nosaincategory'] = 'There are no short answer questions in the category that you chose \'{$a->catname}\'. Choose a different category, make some questions in this category.';
  28  $string['notenoughsaincategory'] = 'There is/are only {$a->nosaquestions} short answer questions in the category that you chose \'{$a->catname}\'. Choose a different category, make some more questions in this category or reduce the amount of questions you\'ve selected.';
  29  $string['pluginname'] = 'Random short-answer matching';
  30  $string['pluginname_help'] = 'From the student perspective, this looks just like a matching question. The difference is that the list of names or statements (questions) for matching are drawn randomly from the short answer questions in the current category. There should be sufficient unused short answer questions in the category, otherwise an error message will be displayed.';
  31  $string['pluginname_link'] = 'question/type/randomsamatch';
  32  $string['pluginnameadding'] = 'Adding a Random short-answer matching question';
  33  $string['pluginnameediting'] = 'Editing a Random short-answer matching question';
  34  $string['pluginnamesummary'] = 'Like a Matching question, but created randomly from the short answer questions in a particular category.';
  35  $string['privacy:metadata'] = 'The Random short-answer matching question type plugin does not store any personal data.';
  36  $string['randomsamatchnumber'] = 'Number of questions to select';
  37  $string['randomsamatch'] = 'Random short-answer matching';
  38  $string['randomsamatchintro'] = 'For each of the following questions, select the matching answer from the menu.';
  39  $string['subcats'] = 'Include subcategories';
  40  $string['subcats_help'] = 'If checked, questions will be choosen from subcategories too.';