diff --git a/lang/ca/enrol_apply.php b/lang/ca/enrol_apply.php
index 6744fd3..fa550cb 100644
--- a/lang/ca/enrol_apply.php
+++ b/lang/ca/enrol_apply.php
@@ -44,6 +44,7 @@ $string['notification'] = 'Sol·licitud d\'inscripció enviada correctament
$string['sendmailtoteacher'] = 'Enviar notificacions per correu als professors';
$string['mailtoteacher_suject'] = 'Nova inscripció al curs!';
$string['editdescription'] = 'Descripció de l\'àrea de text';
+$string['comment'] = 'Comentari';
$string['applymanage'] = 'Gestionar inscripcions';
$string['status_desc'] = 'Allow course access of internally enrolled users.';
diff --git a/lang/en/enrol_apply.php b/lang/en/enrol_apply.php
index 0c1d356..f67e2f9 100644
--- a/lang/en/enrol_apply.php
+++ b/lang/en/enrol_apply.php
@@ -44,6 +44,7 @@ $string['notification'] = 'Enrollment Application successfully sent.
Solicitud de matriculación enviada correctamente<
$string['sendmailtoteacher'] = 'Enviar notificaciones por correo a los profesores';
$string['mailtoteacher_suject'] = 'Nueva matrícula!';
$string['editdescription'] = 'Descripción del área de texto';
+$string['comment'] = 'Comentario';
$string['applymanage'] = 'Gestionar matrículas';
$string['status_desc'] = 'Allow course access of internally enrolled users.'; // needs to be translated
diff --git a/locallib.php b/locallib.php
index 052827d..a668aa5 100644
--- a/locallib.php
+++ b/locallib.php
@@ -42,6 +42,9 @@ class enrol_apply_enrol_form extends moodleform {
$this->instance = $instance;
$plugin = enrol_get_plugin('self');
+ $heading = $plugin->get_instance_name($instance);
+ $mform->addElement('header', 'selfheader', $heading);
+
if ($instance->password) {
$heading = $plugin->get_instance_name($instance);
$mform->addElement('header', 'selfheader', $heading);
@@ -53,7 +56,7 @@ class enrol_apply_enrol_form extends moodleform {
}
$mform->addElement('html', '
'.$instance->customtext1.'
'); - $mform->addElement('textarea', 'applydescription','','cols="80"'); + $mform->addElement('textarea', 'applydescription', get_string('comment', 'enrol_apply'),'cols="80"'); $this->add_action_buttons(false, get_string('enrolme', 'enrol_self')); $mform->addElement('hidden', 'id');