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 'feedback_offline', language 'en'
  19   *
  20   * @package   assignfeedback_offline
  21   * @copyright 2012 NetSpot {@link http://www.netspot.com.au}
  22   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['confirmimport'] = 'Confirm grades import';
  26  $string['default'] = 'Enabled by default';
  27  $string['default_help'] = 'If set, offline grading with worksheets will be enabled by default for all new assignments.';
  28  $string['downloadgrades'] = 'Download grading worksheet';
  29  $string['enabled'] = 'Offline grading worksheet';
  30  $string['enabled_help'] = 'If enabled, the teacher will be able to download and upload a worksheet with student grades when marking the assignments.';
  31  $string['feedbackupdate'] = 'Set field "{$a->field}" for "{$a->student}" to "{$a->text}"';
  32  $string['graderecentlymodified'] = 'The grade has been modified in Moodle more recently than in the grading worksheet for {$a}';
  33  $string['gradelockedingradebook'] = 'The grade has been locked in the gradebook for {$a}';
  34  $string['gradeupdate'] = 'Set grade for {$a->student} to {$a->grade}';
  35  $string['ignoremodified'] = 'Allow updating records that have been modified more recently in Moodle than in the spreadsheet.';
  36  $string['ignoremodified_help'] = 'When the grading worksheet is downloaded from Moodle it contains the last modified date for each of the grades. If any of the grades are updated in Moodle after this worksheet is downloaded, by default Moodle will refuse to overwrite this updated information when importing the grades. By selecting this option Moodle will disable this safety check and it may be possible for multiple markers to overwrite each others grades.';
  37  $string['importgrades'] = 'Confirm changes in grading worksheet';
  38  $string['invalidgradeimport'] = 'Moodle could not read the uploaded worksheet. Make sure it is saved in comma separated value format (.csv) and try again.';
  39  $string['gradesfile'] = 'Grading worksheet (csv format)';
  40  $string['gradesfile_help'] = 'Grading worksheet with modified grades. This file must be a CSV file with UTF-8 encoding that has been downloaded from the assignment, with columns for student grade and identifier.';
  41  $string['privacy:nullproviderreason'] = 'This plugin has no database to store user information. It only uses APIs in mod_assign to help with displaying the grading interface.';
  42  $string['nochanges'] = 'No modified grades found in uploaded worksheet';
  43  $string['offlinegradingworksheet'] = 'Grades';
  44  $string['pluginname'] = 'Offline grading worksheet';
  45  $string['processgrades'] = 'Import grades';
  46  $string['skiprecord'] = 'Skip record';
  47  $string['updaterecord'] = 'Update record';
  48  $string['uploadgrades'] = 'Upload grading worksheet';
  49  $string['updatedgrades'] = 'Updated <strong>{$a->gradeupdatescount}</strong> grades and <strong>{$a->feedbackupdatescount}</strong> feedback instances.';