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 * Book module language strings 19 * 20 * @package mod_book 21 * @copyright 2004-2012 Petr Skoda {@link http://skodak.org} 22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 23 */ 24 25 defined('MOODLE_INTERNAL') || die; 26 27 $string['modulename'] = 'Book'; 28 $string['modulename_help'] = 'The book module enables a teacher to create a multi-page resource in a book-like format, with chapters and subchapters. Books can contain media files as well as text and are useful for displaying lengthy passages of information which can be broken down into sections. 29 30 A book may be used 31 32 * To display reading material for individual modules of study 33 * As a staff departmental handbook 34 * As a showcase portfolio of student work'; 35 $string['modulename_link'] = 'mod/book/view'; 36 $string['modulenameplural'] = 'Books'; 37 $string['pluginname'] = 'Book'; 38 $string['pluginadministration'] = 'Book administration'; 39 40 $string['toc'] = 'Table of contents'; 41 $string['chapterandsubchaptersdeleted'] = 'Chapter "{$a->title}" and its {$a->subchapters} subchapters were deleted'; 42 $string['chapterdeleted'] = 'Chapter "{$a->title}" was deleted'; 43 $string['customtitles'] = 'Custom titles'; 44 $string['customtitles_help'] = 'Normally the chapter title is displayed in the table of contents (TOC) AND as a heading above the content. 45 46 If the custom titles checkbox is ticked, the chapter title is NOT displayed as a heading above the content. A different title (perhaps longer than the chapter title) may be entered as part of the content.'; 47 $string['chapters'] = 'Chapters'; 48 $string['chaptertitle'] = 'Chapter title'; 49 $string['content'] = 'Content'; 50 $string['deletechapter'] = 'Delete chapter "{$a}"'; 51 $string['editingchapter'] = 'Editing chapter'; 52 $string['eventchaptercreated'] = 'Chapter created'; 53 $string['eventchapterdeleted'] = 'Chapter deleted'; 54 $string['eventchapterupdated'] = 'Chapter updated'; 55 $string['eventchapterviewed'] = 'Chapter viewed'; 56 $string['editchapter'] = 'Edit chapter "{$a}"'; 57 $string['hidechapter'] = 'Hide chapter "{$a}"'; 58 $string['indicator:cognitivedepth'] = 'Book cognitive'; 59 $string['indicator:cognitivedepth_help'] = 'This indicator is based on the cognitive depth reached by the student in a Book resource.'; 60 $string['indicator:cognitivedepthdef'] = 'Book cognitive'; 61 $string['indicator:cognitivedepthdef_help'] = 'The participant has reached this percentage of the cognitive engagement offered by the Book activities during this analysis interval (Levels = No view, View)'; 62 $string['indicator:cognitivedepthdef_link'] = 'Learning_analytics_indicators#Cognitive_depth'; 63 $string['indicator:socialbreadth'] = 'Book social'; 64 $string['indicator:socialbreadth_help'] = 'This indicator is based on the social breadth reached by the student in a Book resource.'; 65 $string['indicator:socialbreadthdef'] = 'Book social'; 66 $string['indicator:socialbreadthdef_help'] = 'The participant has reached this percentage of the social engagement offered by the Book activities during this analysis interval (Levels = No participation, Participant alone)'; 67 $string['indicator:socialbreadthdef_link'] = 'Learning_analytics_indicators#Social_breadth'; 68 $string['movechapterup'] = 'Move chapter up "{$a}"'; 69 $string['movechapterdown'] = 'Move chapter down "{$a}"'; 70 $string['privacy:metadata'] = 'The book activity module does not store any personal data.'; 71 $string['search:activity'] = 'Book - resource information'; 72 $string['search:chapter'] = 'Book - chapters'; 73 $string['showchapter'] = 'Show chapter "{$a}"'; 74 $string['subchapter'] = 'Subchapter'; 75 $string['navimages'] = 'Images'; 76 $string['navoptions'] = 'Available options for navigational links'; 77 $string['navoptions_desc'] = 'Options for displaying navigation on the book pages'; 78 $string['navstyle'] = 'Style of navigation'; 79 $string['navstyle_help'] = '* Images - Icons are used for navigation 80 * Text - Chapter titles are used for navigation'; 81 $string['navtext'] = 'Text'; 82 $string['navtoc'] = 'TOC Only'; 83 $string['nocontent'] = 'No content has been added to this book yet.'; 84 $string['numbering'] = 'Chapter formatting'; 85 $string['numbering_help'] = '* None - Chapter and subchapter titles have no formatting 86 * Numbers - Chapters and subchapter titles are numbered 1, 1.1, 1.2, 2, ... 87 * Bullets - Subchapters are indented and displayed with bullets in the table of contents 88 * Indented - Subchapters are indented in the table of contents'; 89 $string['numbering0'] = 'None'; 90 $string['numbering1'] = 'Numbers'; 91 $string['numbering2'] = 'Bullets'; 92 $string['numbering3'] = 'Indented'; 93 $string['numberingoptions'] = 'Available options for chapter formatting'; 94 $string['numberingoptions_desc'] = 'Options for displaying chapters and subchapters in the table of contents'; 95 $string['addafter'] = 'Add new chapter'; 96 $string['addafterchapter'] = 'Add new chapter after "{$a->title}"'; 97 $string['previouschapter'] = 'Previous chapter'; 98 $string['confchapterdelete'] = 'Do you really want to delete this chapter?'; 99 $string['confchapterdeleteall'] = 'Do you really want to delete this chapter and all its subchapters?'; 100 $string['top'] = 'top'; 101 $string['navprev'] = 'Previous'; 102 $string['navprevtitle'] = 'Previous: {$a}'; 103 $string['navnext'] = 'Next'; 104 $string['navnexttitle'] = 'Next: {$a}'; 105 $string['navexit'] = 'Exit book'; 106 $string['book:addinstance'] = 'Add a new book'; 107 $string['book:read'] = 'View book'; 108 $string['book:edit'] = 'Edit book chapters'; 109 $string['book:viewhiddenchapters'] = 'View hidden book chapters'; 110 $string['errorchapter'] = 'Error reading chapter of book.'; 111 112 $string['page-mod-book-x'] = 'Any book module page'; 113 $string['subchapternotice'] = '(Only available once the first chapter has been created)'; 114 $string['subplugintype_booktool'] = 'Book tool'; 115 $string['subplugintype_booktool_plural'] = 'Book tools'; 116 117 $string['removeallbooktags'] = 'Remove all book tags'; 118 $string['tagarea_book_chapters'] = 'Book chapters'; 119 $string['tagsdeleted'] = 'Book tags have been deleted';
title
Description
Body
title
Description
Body
title
Description
Body
title
Body