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  
   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 component 'workshopallocation_random', language 'en', branch 'MOODLE_20_STABLE'
  20   *
  21   * @package    workshopallocation
  22   * @subpackage random
  23   * @copyright  2009 David Mudrak <david@moodle.com>
  24   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  25   */
  26  
  27  $string['addselfassessment'] = 'Add self-assessments';
  28  $string['allocationaddeddetail'] = 'New assessment to be done: <strong>{$a->reviewername}</strong> is reviewer of <strong>{$a->authorname}</strong>';
  29  $string['allocationdeallocategraded'] = 'Unable to deallocate already graded assessment: reviewer <strong>{$a->reviewername}</strong>, submission author <strong>{$a->authorname}</strong>';
  30  $string['allocationreuseddetail'] = 'Reused assessment: <strong>{$a->reviewername}</strong> kept as reviewer of <strong>{$a->authorname}</strong>';
  31  $string['allocationsettings'] = 'Allocation settings';
  32  $string['assessmentdeleteddetail'] = 'Assessment deallocated: <strong>{$a->reviewername}</strong> is no longer reviewer of <strong>{$a->authorname}</strong>';
  33  $string['assesswosubmission'] = 'Participants can assess without having submitted anything';
  34  $string['confignumofreviews'] = 'Default number of submissions to be randomly allocated';
  35  $string['excludesamegroup'] = 'Prevent reviews by peers from the same group';
  36  $string['noallocationtoadd'] = 'No allocations to add';
  37  $string['nogroupusers'] = '<p>Warning: If the workshop is in \'visible groups\' mode or \'separate groups\' mode, then users MUST be part of at least one group to have peer-assessments allocated to them by this tool. Non-grouped users can still be given new self-assessments or have existing assessments removed.</p>
  38  <p>These users are currently not in a group: {$a}</p>';
  39  $string['numofdeallocatedassessment'] = 'Deallocating {$a} assessment(s)';
  40  $string['numofrandomlyallocatedsubmissions'] = 'Randomly assigning {$a} allocations';
  41  $string['numofreviews'] = 'Number of reviews';
  42  $string['numofselfallocatedsubmissions'] = 'Self-allocating {$a} submission(s)';
  43  $string['numperauthor'] = 'per submission';
  44  $string['numperreviewer'] = 'per reviewer';
  45  $string['pluginname'] = 'Random allocation';
  46  $string['privacy:metadata'] = 'The Random allocation plugin does not store any personal data. Actual personal data about who is going to assess whom are stored by the Workshop module itself and they form basis for exporting the assessments details.';
  47  $string['randomallocationdone'] = 'Random allocation done';
  48  $string['resultnomorepeers'] = 'No more peers available';
  49  $string['resultnomorepeersingroup'] = 'No more peers available in this separate group';
  50  $string['resultnotenoughpeers'] = 'Not enough peers available';
  51  $string['resultnumperauthor'] = 'Trying to allocate {$a} review(s) per author';
  52  $string['resultnumperreviewer'] = 'Trying to allocate {$a} review(s) per reviewer';
  53  $string['removecurrentallocations'] = 'Remove current allocations';
  54  $string['stats'] = 'Current allocation statistics';