11 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* format_buttons_renderer
|
|
|
19 |
*
|
|
|
20 |
* @package format_buttons
|
|
|
21 |
* @author Rodrigo Brandão <https://www.linkedin.com/in/brandaorodrigo>
|
|
|
22 |
* @copyright 2020 Rodrigo Brandão <rodrigo.brandao.contato@gmail.com>
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
defined('MOODLE_INTERNAL') || die();
|
|
|
27 |
|
|
|
28 |
$string['above'] = 'Arriba de los botones de lista';
|
|
|
29 |
$string['below'] = 'Debajo de lasección visible';
|
|
|
30 |
$string['colorcurrent'] = 'Color del botón de la sección actual';
|
|
|
31 |
$string['colorcurrent_help'] = 'La sección actual es la sección marcada con resaltado.<br>Defina un color en hexadecimal.
|
|
|
32 |
<i>Ejemplo: #fab747</i><br>Si Usted desea usar el color por defecto, déjelo vacío.';
|
|
|
33 |
$string['colorvisible'] = 'Color del botón de la sección visible';
|
|
|
34 |
$string['colorvisible_help'] = 'LA sección visible es la sección sleccionada.<br>Defina un color en hexadecimal.
|
|
|
35 |
<i>Ejemplo: #747fab</i><br>Si Usted desea usar el color por defecto, déjelo vacío.';
|
|
|
36 |
$string['currentsection'] = 'Este tópico';
|
|
|
37 |
$string['deletesection'] = 'Eliminar tópico';
|
|
|
38 |
$string['divisor'] = 'Número de secciones a agrupar - {$a}';
|
|
|
39 |
$string['divisortext'] = 'Título del agrupamiento - {$a}';
|
|
|
40 |
$string['divisortext_help'] = 'El agrupamiento de secciones se usa para separar secciones por tipo o por módulos.
|
|
|
41 |
<i>Ejemplo: El curso tiene 10 secciones, divididas en dos módulos: Teórico (con 5 secciones) y Práctico (con 5 secciones).<br>
|
|
|
42 |
Defina el título con "Teórico" y configure el número de secciones a 5.</i><br><br>
|
|
|
43 |
Sugerencia: Si lo desea, use la marca (tag) <strong><br></strong> type <strong>[br]</strong>.';
|
|
|
44 |
$string['editing'] = 'Los botones están deshabilitados mientras esté activo el modo de edición.';
|
|
|
45 |
$string['editsection'] = 'Editar tópico';
|
|
|
46 |
$string['hidefromothers'] = 'Ocultar tópico';
|
|
|
47 |
$string['no'] = 'No';
|
|
|
48 |
$string['pluginname'] = 'Formato de botones';
|
|
|
49 |
$string['section0name'] = 'General';
|
|
|
50 |
$string['sectionname'] = 'Tópico';
|
|
|
51 |
$string['sectionposition'] = 'Posición de la sección cero';
|
|
|
52 |
$string['sectionposition_help'] = 'La sección cero aparecerá junto a la sección visible.<br><br>
|
|
|
53 |
<strong>Arriba de la lista de botone</strong><br>Use esta opción si Usted desea añadir algun texto o recurso antes de la lista de botones.
|
|
|
54 |
<i>Ejemplo: Defina una imagen para ilustrar el curso.</i><br><br><strong>Debajo de la sección visible</strong><br>
|
|
|
55 |
Use esta opción si quiere añadir un texto o recurso después de la sección visible.
|
|
|
56 |
<i>Ejemplo: Recursos o enlaces a mostrarse sin importar la región visible.</i><br><br>';
|
|
|
57 |
$string['showdefaultsectionname'] = 'Mostrar por defecto el nombre de las secciones';
|
|
|
58 |
$string['showdefaultsectionname_help'] = 'Si no se configura nombre para la sección, no se mostrará nada.<br>
|
|
|
59 |
Por definición, un tópico sin nombre se muestra como <strong>Tópico N</strong>.';
|
|
|
60 |
$string['showfromothers'] = 'Mostrar tópico';
|
|
|
61 |
$string['yes'] = 'Si';
|
|
|
62 |
$string['sequential'] = 'Secuencial';
|
|
|
63 |
$string['notsequentialdesc'] = 'Cada nuevo grupo empieza a contar secciones de uno.';
|
|
|
64 |
$string['sequentialdesc'] = 'Cuente los números de sección ignorando el agrupamiento.';
|
|
|
65 |
$string['sectiontype'] = 'Estilo de lista';
|
|
|
66 |
$string['numeric'] = 'Numérico';
|
|
|
67 |
$string['roman'] = 'Números romanos';
|
|
|
68 |
$string['alphabet'] = 'Alfabeto';
|
|
|
69 |
$string['buttonstyle'] = 'Estilo del botón';
|
|
|
70 |
$string['buttonstyle_help'] = 'Define la forma geométrica de los botones.';
|
|
|
71 |
$string['circle'] = 'Circulo';
|
|
|
72 |
$string['square'] = 'Plaza';
|
|
|
73 |
$string['inlinesections'] = 'Secciones separadas en líneas';
|
|
|
74 |
$string['inlinesections_help'] = 'Muestra cada sección en una línea.';
|