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['pluginname'] = 'Formato Botões';
|
|
|
29 |
$string['currentsection'] = 'Este tópico';
|
|
|
30 |
$string['editsection'] = 'Editar tópico';
|
|
|
31 |
$string['deletesection'] = 'Remover tópico';
|
|
|
32 |
$string['sectionname'] = 'Tópico';
|
|
|
33 |
$string['section0name'] = 'Geral';
|
|
|
34 |
$string['hidefromothers'] = 'Ocultar tópico';
|
|
|
35 |
$string['showfromothers'] = 'Mostrar tópico';
|
|
|
36 |
$string['showdefaultsectionname'] = 'Mostrar o nome padrão das seções';
|
|
|
37 |
$string['showdefaultsectionname_help'] = 'Se nenhum nome for definido para a seção, nada será mostrado.<br>
|
|
|
38 |
Por definição um tópico sem nome é mostrado como <strong>Tópico [N]</strong>.';
|
|
|
39 |
$string['yes'] = 'Sim';
|
|
|
40 |
$string['no'] = 'Não';
|
|
|
41 |
$string['sectionposition'] = 'Posição da seção zero';
|
|
|
42 |
$string['sectionposition_help'] = 'A seção 0 aparecerá junto com a seção visível.<br><br>
|
|
|
43 |
<strong>Botões acima da lista</strong><br>Use esta opção se você deseja adicionar algum texto ou
|
|
|
44 |
recurso antes da lista de botões.<i>Exemplo: Usar uma imagem para ilustrar o curso.</i><br><br><strong>
|
|
|
45 |
Abaixo da seção visível</strong><br>Use esta opção se você deseja adicionar algum texto ou recurso depois da seção visível.
|
|
|
46 |
<i>Exemplo: Recursos ou links a serem exibidos independentes da seção visível.</i><br>';
|
|
|
47 |
$string['above'] = 'Acima da lista de botões';
|
|
|
48 |
$string['below'] = 'Abaixo da seção visível';
|
|
|
49 |
$string['divisor'] = 'Número de seções a agrupar - {$a}';
|
|
|
50 |
$string['divisortext'] = 'Título do agrupamento - {$a}';
|
|
|
51 |
$string['divisortext_help'] = 'As seções agrupadas são usadas para separar seção por tipo ou módulos.
|
|
|
52 |
<i>Exemplo: O curso possuiu 10 seções divididas em 2 módulos: Teórico (com 5 seções) e Prático (com 5 seções).<br>
|
|
|
53 |
Defina o título com "Teórico" e configure o número de seções para 5.</i><br><br>
|
|
|
54 |
Dica: se você desejar usar a tag <strong><br></strong> digite <strong>[br]</strong>.';
|
|
|
55 |
$string['colorcurrent'] = 'Cor do botão de seção atual';
|
|
|
56 |
$string['colorcurrent_help'] = 'A seção atual é a seção marcada com destaque. <br> Defina uma cor em hexadecimal.
|
|
|
57 |
<i>Exemplo: #fab747</i><br>Se quiser usar a cor padrão deixe em branco.';
|
|
|
58 |
$string['colorvisible'] = 'Cor do botão da seção visível';
|
|
|
59 |
$string['colorvisible_help'] = 'A seção visível é a seção selecionada. <br> Defina uma cor em hexadecimal.
|
|
|
60 |
<i>Exemplo: #747fab</i><br>.Se quiser usar a cor padrão deixe em branco.';
|
|
|
61 |
$string['editing'] = 'Os botões ficam desabilitados enquanto o modo de edição estiver ativado.';
|
|
|
62 |
$string['sequential'] = 'Sequencial';
|
|
|
63 |
$string['notsequentialdesc'] = 'Cada novo grupo o contador de seções volta para um.';
|
|
|
64 |
$string['sequentialdesc'] = 'Contar as seções ignorando os agrupamentos.';
|
|
|
65 |
$string['sectiontype'] = 'Estilo da listagem';
|
|
|
66 |
$string['numeric'] = 'Numérico';
|
|
|
67 |
$string['roman'] = 'Algarismos romanos';
|
|
|
68 |
$string['alphabet'] = 'Alfabético';
|
|
|
69 |
$string['buttonstyle'] = 'Estilo do botão';
|
|
|
70 |
$string['buttonstyle_help'] = 'Define qual a forma geométrica dos botões.';
|
|
|
71 |
$string['circle'] = 'Círculo';
|
|
|
72 |
$string['square'] = 'Quadrado';
|
|
|
73 |
$string['inlinesections'] = 'Seções separadas em linhas';
|
|
|
74 |
$string['inlinesections_help'] = 'Exibe cada seção em uma linha.';
|