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.

Differences Between: [Versions 311 and 400] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 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 'enrol_manual', language 'en'.
  19   *
  20   * @package    enrol_manual
  21   * @copyright  1999 onwards Martin Dougiamas  {@link http://moodle.com}
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['advanced'] = 'Advanced';
  26  $string['alterstatus'] = 'Alter status';
  27  $string['altertimeend'] = 'Alter end time';
  28  $string['altertimestart'] = 'Alter start time';
  29  $string['assignrole'] = 'Assign role';
  30  $string['assignroles'] = 'Assign roles';
  31  $string['browseusers'] = 'Browse users';
  32  $string['browsecohorts'] = 'Browse cohorts';
  33  $string['confirmbulkdeleteenrolment'] = 'Are you sure you want to delete these user enrolments?';
  34  $string['defaultstart'] = 'Default enrolment start';
  35  $string['defaultperiod'] = 'Default enrolment duration';
  36  $string['defaultperiod_desc'] = 'Default length of time that the enrolment is valid. If set to zero, the enrolment duration will be unlimited by default.';
  37  $string['defaultperiod_help'] = 'Default length of time that the enrolment is valid, starting with the moment the user is enrolled. If disabled, the enrolment duration will be unlimited by default.';
  38  $string['deleteselectedusers'] = 'Delete selected user enrolments';
  39  $string['editselectedusers'] = 'Edit selected user enrolments';
  40  $string['enrolledincourserole'] = 'Enrolled in "{$a->course}" as "{$a->role}"';
  41  $string['enrolusers'] = 'Enrol users';
  42  $string['enroluserscohorts'] = 'Enrol selected users and cohorts';
  43  $string['expiredaction'] = 'Enrolment expiry action';
  44  $string['expiredaction_help'] = 'Select action to carry out when user enrolment expires. Please note that some user data and settings are purged from course during course unenrolment.';
  45  $string['expirymessageenrollersubject'] = 'Enrolment expiry notification';
  46  $string['expirymessageenrollerbody'] = 'Enrolment in the course \'{$a->course}\' will expire within the next {$a->threshold} for the following users:
  47  
  48  {$a->users}
  49  
  50  To extend their enrolment, go to {$a->extendurl}';
  51  $string['expirymessageenrolledsubject'] = 'Enrolment expiry notification';
  52  $string['expirymessageenrolledbody'] = 'Dear {$a->user},
  53  
  54  This is a notification that your enrolment in the course \'{$a->course}\' is due to expire on {$a->timeend}.
  55  
  56  If you need help, please contact {$a->enroller}.';
  57  $string['manual:config'] = 'Configure manual enrol instances';
  58  $string['manual:enrol'] = 'Enrol users';
  59  $string['manual:manage'] = 'Manage user enrolments';
  60  $string['manual:unenrol'] = 'Unenrol users from the course';
  61  $string['manual:unenrolself'] = 'Unenrol self from the course';
  62  $string['messageprovider:expiry_notification'] = 'Manual enrolment expiry notifications';
  63  $string['now'] = 'Now';
  64  $string['pluginname'] = 'Manual enrolments';
  65  $string['pluginname_desc'] = 'The manual enrolments plugin allows users to be enrolled manually via a link in the course administration settings, by a user with appropriate permissions such as a teacher. The plugin should normally be enabled, since certain other enrolment plugins, such as self enrolment, require it.';
  66  $string['selection'] = 'Selection';
  67  $string['selectusers'] = 'Select users';
  68  $string['selectcohorts'] = 'Select cohorts';
  69  $string['sendexpirynotificationstask'] = "Manual enrolment send expiry notifications task";
  70  $string['status'] = 'Enable manual enrolments';
  71  $string['status_desc'] = 'Allow course access of internally enrolled users. This should be kept enabled in most cases.';
  72  $string['status_help'] = 'This setting determines whether users can be enrolled manually, via a link in the course administration settings, by a user with appropriate permissions such as a teacher.';
  73  $string['statusenabled'] = 'Enabled';
  74  $string['statusdisabled'] = 'Disabled';
  75  $string['syncenrolmentstask'] = 'Synchronise manual enrolments task';
  76  $string['unenrol'] = 'Unenrol user';
  77  $string['unenrolselectedusers'] = 'Unenrol selected users';
  78  $string['unenrolselfconfirm'] = 'Do you really want to unenrol yourself from course "{$a}"?';
  79  $string['unenroluser'] = 'Do you really want to unenrol "{$a->user}" from course "{$a->course}"?';
  80  $string['unenrolusers'] = 'Unenrol users';
  81  $string['wscannotenrol'] = 'Plugin instance cannot manually enrol a user in the course id = {$a->courseid}';
  82  $string['wsnoinstance'] = 'Manual enrolment plugin instance doesn\'t exist or is disabled for the course (id = {$a->courseid})';
  83  $string['wsusercannotassign'] = 'You don\'t have the permission to assign this role ({$a->roleid}) to this user ({$a->userid}) in this course ({$a->courseid}).';
  84  $string['manualpluginnotinstalled'] = 'The "Manual" plugin has not yet been installed';
  85  $string['privacy:metadata'] = 'The Manual enrolments plugin does not store any personal data.';