mirror of
https://github.com/moodle/moodle.git
synced 2025-02-04 23:29:11 +01:00
f5ecf2e91a
- teachers can see everyone - everyone can see teachers but everyone else is prevented from seeing users. This is regardless of the forceloginforprofiles setting and is designed to stop mass collection of user names by browsing through all user names.
20 lines
1.2 KiB
PHP
Executable File
20 lines
1.2 KiB
PHP
Executable File
<?PHP // $Id$
|
|
// error.php - created with Moodle 1.2 development (2003122600)
|
|
|
|
$string['coursegroupunknown'] = 'Course corresponding to group $a not specified';
|
|
$string['erroronline'] = 'Error on line $a';
|
|
$string['fieldrequired'] = '\"$a\" is a required field';
|
|
$string['groupalready'] = 'User already belongs to group $a';
|
|
$string['groupunknown'] = 'Group $a not associated to specified course';
|
|
$string['invalidfieldname'] = '\"$a\" is not a valid field name';
|
|
$string['missingfield'] = 'Field \"$a\" is missing';
|
|
$string['modulerequirementsnotmet'] = 'Module \"$a->modulename\" ($a->moduleversion) could not be installed. It requires a newer version of Moodle (currently you are using $a->currentmoodle, you need $a->requiremoodle).';
|
|
$string['notavailable'] = 'That is not currently available';
|
|
$string['restricteduser'] = 'Sorry, but your current account \"$a\" is restricted from doing that.';
|
|
$string['unknowncourse'] = 'Unknown course named \"$a\"';
|
|
$string['usernotaddederror'] = 'User \"$a\" not added - unknown error';
|
|
$string['usernotaddedregistered'] = 'User \"$a\" not added - already registered';
|
|
$string['usernotavailable'] = 'The details of this user are not available to you.';
|
|
|
|
?>
|