mirror of
https://github.com/moodle/moodle.git
synced 2025-02-20 16:15:54 +01:00
19 lines
1.2 KiB
PHP
19 lines
1.2 KiB
PHP
<?PHP // $Id$
|
|
// enrol_manual.php - created with Moodle 1.7 beta + (2006101003)
|
|
|
|
|
|
$string['description'] = 'This is the default form of enrolment. There are two main ways a student can be enrolled in a particular course.
|
|
<ul>
|
|
<li>A teacher or admin can enrol them manually using the link in the Course Administration menu
|
|
within the course.</li>
|
|
<li>A course can have a password defined, known as an \"enrolment key\". Anyone who knows this key is
|
|
able to add themselves to a course.</li>
|
|
</ul>';
|
|
$string['enrolmentkeyerror'] = 'That enrolment key was incorrect, please try again.';
|
|
$string['enrolname'] = 'Internal Enrolment';
|
|
$string['enrol_manual_requirekey'] = 'Require course enrolment keys in new courses and prevent removing of existing keys.';
|
|
$string['enrol_manual_showhint'] = 'Enable this setting to reveal the first character of the enrolment key as a hint if one enters an incorrect key.';
|
|
$string['enrol_manual_usepasswordpolicy'] = 'Use current user password policy for course enrolment keys.';
|
|
$string['keyholderrole' ] = 'The role of the user that holds the enrolment key for a course. Displayed to students attempting to enrol on the course.';
|
|
?>
|