-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathenrol_easy.php
More file actions
executable file
·72 lines (58 loc) · 3.43 KB
/
Copy pathenrol_easy.php
File metadata and controls
executable file
·72 lines (58 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Allows course enrolment via a simple text code.
*
* @package enrol_easy
* @copyright 2017 Dearborn Public Schools
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
$string['pluginname'] = 'Easy enrollments';
$string['pluginname_desc'] = 'Allows easy enrollment via a text code.';
$string['enrolform_course_code'] = 'Enrollment Code';
$string['enrolform_submit'] = 'Enroll';
$string['enrolform_heading'] = 'Enroll in a Course';
$string['enrolform_pagetitle'] = 'Enroll in a Course';
$string['header_coursecodes'] = 'Enrollment codes';
$string['status'] = 'Enabled';
$string['status_help'] = 'Set to "Yes" to enabled enrollment. Set to "No" to disable enrollment.';
$string['enrolstartdate'] = 'Enrollment Begins';
$string['enrolstartdate_help'] = 'Students will be unable to enroll prior to this date.';
$string['enrolenddate'] = 'Enrollment Ends';
$string['enrolenddate_help'] = 'Students will be unable to enroll after this date.';
$string['regenerate_codes'] = 'Regenerate Codes';
$string['regenerate_codes_help'] = 'Check this and click "Save changes" to re-create all above enrollment codes.';
$string['qrenabled'] = 'Enable Enrol via QR Codes';
$string['qrenableddesc'] = 'Enable Enrol via QR Codes';
$string['showqronmobile'] = 'Enable QR Code Reader on Mobile';
$string['showqronmobiledesc'] = 'Enable Enrol via QR Codes on mobile devices. May not work on all mobile browsers. Preferred use of QR codes is in the Chrome browser and on a desktop, laptop, or Chromebook.';
$string['precondition'] = 'Require this badge prior to enrolment';
$string['preconditiondesc'] = 'Prevent students from enrolling unless they can show the specified badge. Leave empty if students should always be allowed to enrol. Changing this setting will not remove prior enrolments.';
$string['no_precondition'] = '(none required)';
$string['easy:unenrolself'] = 'Unenroll from course';
$string['easy:config'] = 'Configure Easy Enrollment instances';
$string['easy:delete'] = 'Delete Easy Enrollment instances';
$string['easy:manage'] = 'Manage Easy Enrollment instances';
$string['easy:unenrol'] = 'Unenrol from Easy Enrollment instances';
$string['unenrolselfconfirm'] = 'Do you really want to unenrol yourself from course "{$a}"?';
$string['error_disabled_global'] = 'Easy enrollment is disabled site-wide.';
$string['error_disabled_global'] = 'Easy enrollment is disabled for this course.';
$string['error_enrolstartdate'] = 'Enrollment has not begin for this course yet.';
$string['error_enrolenddate'] = 'Enrollment for this course has ended.';
$string['error_invalid_code'] = 'Invalid enrollment code.';
$string['error_failing_precondition'] = 'You are not allowed to enrol until you can show the "{$a}" badge.';
$string['coursetext'] = 'Course: ';
$string['grouptext'] = 'Group: ';