You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
3.2 KiB
61 lines
3.2 KiB
<?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/>.
|
|
|
|
/**
|
|
* @package enrol_apply
|
|
* @copyright emeneo.com (http://emeneo.com/)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
// The name of your plugin. Displayed on admin menus.
|
|
$string['enrolname'] = 'Matrículas solicitadas';
|
|
$string['pluginname'] = 'Matrículas solicitadas';
|
|
$string['pluginname_desc'] = 'With this plugin users can apply to a course and a teacher have to comfirm before the user gets enroled.'; // Needs to be translated.
|
|
|
|
$string['confirmmailsubject'] = 'Asunto del correo de confirmación';
|
|
$string['confirmmailcontent'] = 'Contenido del correo de confirmación';
|
|
$string['cancelmailsubject'] = 'Asunto del correo de cancelación';
|
|
$string['cancelmailcontent'] = 'Contenido del correo de cancelación';
|
|
$string['confirmmailcontent_desc'] = 'Por favor, use marcas especiales que se substituirán en el contenido del correo.<br>{firstname}:Nombre registrado por el usuario; {content}:Nombre del curso';
|
|
$string['cancelmailcontent_desc'] = 'Por favor, use marcas especiales que se substituirán en el contenido del correo.<br>{firstname}:Nombre registrado por el usuario; {content}:Nombre del curso';
|
|
|
|
$string['confirmusers'] = 'Confirmar matrículas';
|
|
|
|
$string['coursename'] = 'Curso';
|
|
$string['applyuser'] = 'Nombre / Apellido';
|
|
$string['applyusermail'] = 'Correo electrónico';
|
|
$string['applydate'] = 'Fecha de solicitud'; // Enrol date -> Fecha de matriculación.
|
|
$string['btnconfirm'] = 'Confirmar';
|
|
$string['btncancel'] = 'Cancelar';
|
|
$string['enrolusers'] = 'Matricular usuarios';
|
|
|
|
$string['status'] = 'Aceptar matriculación tras aprobación';
|
|
$string['confirmenrol'] = 'Gestionar solicitudes';
|
|
|
|
$string['apply:config'] = 'Configurar instancias de matrículas solicitadas'; // Needs more insight.
|
|
$string['apply:manageapplications'] = 'Gestionar matrículas solicitadas'; // Needs more insight.
|
|
$string['apply:unenrol'] = 'Cancelar usuarios del curso'; // Needs more insight.
|
|
|
|
$string['notification'] = '<b>Solicitud de matriculación enviada correctamente</b>. <br/><br/>Será notificado por correo electrónico en cuanto se confirme su matriculación.';
|
|
|
|
$string['sendmailtoteacher'] = 'Enviar notificaciones por correo a los profesores';
|
|
$string['sendmailtomanager'] = 'Enviar notificaciones por correo a los gestores';
|
|
$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.
|
|
|