$string['gd2'] = 'GD 2.x is installed';
$string['gdneed'] = 'GD must be installed to see this graph';
$string['gdnot'] = 'GD is not installed';
+$string['general'] = 'General';
$string['gettheselogs'] = 'Get these logs';
$string['go'] = 'Go';
$string['gotoyourserver'] = '(Links back to your server)';
$string['authenticationplugins'] = 'Authentication Plugins';
$string['chooseauthmethod'] = 'Choose authentication plugin';
-?>
+?>
\ No newline at end of file
$mform =& $this->_form;
$this->set_upload_manager(new upload_manager('imagefile', false, false, null, false, 0, true, true, false));
+ //Accessibility: "Required" is bad legend text.
+ $strgeneral = get_string('general');
$strrequired = get_string('required');
/// Add some extra hidden fields
$mform->addElement('hidden', 'course', $COURSE->id);
/// Print the required moodle fields first
- $mform->addElement('header', 'moodle', $strrequired);
+ $mform->addElement('header', 'moodle', $strgeneral);
/// shared fields
useredit_shared_definition($mform);
$mform =& $this->_form;
$this->set_upload_manager(new upload_manager('imagefile', false, false, null, false, 0, true, true, false));
+ //Accessibility: "Required" is bad legend text.
+ $strgeneral = get_string('general');
$strrequired = get_string('required');
/// Add some extra hidden fields
$mform->addElement('hidden', 'course', $COURSE->id);
/// Print the required moodle fields first
- $mform->addElement('header', 'moodle', $strrequired);
+ $mform->addElement('header', 'moodle', $strgeneral);
$mform->addElement('text', 'username', get_string('username'), 'size="20"');
$mform->addRule('username', $strrequired, 'required', null, 'client');