Autoría | Ultima modificación | Ver Log |
<?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/>./*** format_buttons_renderer** @package format_buttons* @author Rodrigo Brandão <https://www.linkedin.com/in/brandaorodrigo>* @copyright 2020 Rodrigo Brandão <rodrigo.brandao.contato@gmail.com>* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later*/defined('MOODLE_INTERNAL') || die();$string['pluginname'] = 'Buttons format';$string['currentsection'] = 'This topic';$string['editsection'] = 'Edit topic';$string['deletesection'] = 'Delete topic';$string['sectionname'] = 'Topic';$string['section0name'] = 'General';$string['hidefromothers'] = 'Hide topic';$string['showfromothers'] = 'Show topic';$string['showdefaultsectionname'] = 'Show the default sections name';$string['showdefaultsectionname_help'] = 'If no name is set for the section will not show anything.<br>By definition an unnamed topic is displayed as <strong>Topic [N]</strong>.';$string['yes'] = 'Yes';$string['no'] = 'No';$string['sectionposition'] = 'Section zero position';$string['sectionposition_help'] = 'The section 0 will appear together the visible section.<br><br><strong>Above the list buttons</strong><br>Use this option if you want to add some text or resource before the buttons list.<i>Example: Define a picture to illustrate the course.</i><br><br><strong>Below the visible section</strong><br>Use this option if you want to add some text or resource after the visible section.<i>Example: Resources or links to be displayed regardless of the visible section.</i><br><br>';$string['above'] = 'Above the list buttons';$string['below'] = 'Below the visible section';$string['divisor'] = 'Number of sections to group - {$a}';$string['divisortext'] = 'Title of the grouping - {$a}';$string['divisortext_help'] = 'The grouping sections is used to separate section by type or modules.<i>Example: The course has 10 sections divided into two modules: Theoretical (with 5 sections) and Practical (with 5 sections).<br>Define the title like "Teorical" and set the number of sections to 5.</i><br><br>Tip: if you want to use the tag <strong><br></strong>, type [br].';$string['colorcurrent'] = 'Color of the current section button';$string['colorcurrent_help'] = 'The current section is the section marked with highlight.<br>Define a color in hexadecimal.<i>Example: #fab747</i><br>If you want to use the default color, leave empty.';$string['colorvisible'] = 'Color of the visible section button';$string['colorvisible_help'] = 'The visible section is the selected section.<br>Define a color in hexadecimal.<i>Example: #747fab</i><br>If you want to use the default color, leave empty.';$string['editing'] = 'The buttons are disabled while the edit mode is active.';$string['sequential'] = 'Sequential';$string['notsequentialdesc'] = 'Each new group begins counting sections from one.';$string['sequentialdesc'] = 'Count the section numbers ignoring the grouping.';$string['sectiontype'] = 'List style';$string['numeric'] = 'Numeric';$string['roman'] = 'Roman numerals';$string['alphabet'] = 'Alphabet';$string['buttonstyle'] = 'Button style';$string['buttonstyle_help'] = 'Define the shape style of the buttons.';$string['circle'] = 'Circle';$string['square'] = 'Square';$string['inlinesections'] = 'Inline sections';$string['inlinesections_help'] = 'Give each section a new line.';