Merge branch 'MDL-56295-master' of git://github.com/andrewnicols/moodle
[moodle.git] / mod / book / lang / en / book.php
blobe67db57cf0b7cc82c162cb9f51d2f2e140ed868a
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.
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/>.
17 /**
18 * Book module language strings
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
25 defined('MOODLE_INTERNAL') || die;
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.
30 A book may be used
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';
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.
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['movechapterup'] = 'Move chapter up "{$a}"';
59 $string['movechapterdown'] = 'Move chapter down "{$a}"';
60 $string['search:activity'] = 'Book - resource information';
61 $string['search:chapter'] = 'Book - chapters';
62 $string['showchapter'] = 'Show chapter "{$a}"';
63 $string['subchapter'] = 'Subchapter';
64 $string['navimages'] = 'Images';
65 $string['navoptions'] = 'Available options for navigational links';
66 $string['navoptions_desc'] = 'Options for displaying navigation on the book pages';
67 $string['navstyle'] = 'Style of navigation';
68 $string['navstyle_help'] = '* Images - Icons are used for navigation
69 * Text - Chapter titles are used for navigation';
70 $string['navtext'] = 'Text';
71 $string['navtoc'] = 'TOC Only';
72 $string['nocontent'] = 'No content has been added to this book yet.';
73 $string['numbering'] = 'Chapter formatting';
74 $string['numbering_help'] = '* None - Chapter and subchapter titles have no formatting
75 * Numbers - Chapters and subchapter titles are numbered 1, 1.1, 1.2, 2, ...
76 * Bullets - Subchapters are indented and displayed with bullets in the table of contents
77 * Indented - Subchapters are indented in the table of contents';
78 $string['numbering0'] = 'None';
79 $string['numbering1'] = 'Numbers';
80 $string['numbering2'] = 'Bullets';
81 $string['numbering3'] = 'Indented';
82 $string['numberingoptions'] = 'Available options for chapter formatting';
83 $string['numberingoptions_desc'] = 'Options for displaying chapters and subchapters in the table of contents';
84 $string['addafter'] = 'Add new chapter';
85 $string['confchapterdelete'] = 'Do you really want to delete this chapter?';
86 $string['confchapterdeleteall'] = 'Do you really want to delete this chapter and all its subchapters?';
87 $string['top'] = 'top';
88 $string['navprev'] = 'Previous';
89 $string['navprevtitle'] = 'Previous: {$a}';
90 $string['navnext'] = 'Next';
91 $string['navnexttitle'] = 'Next: {$a}';
92 $string['navexit'] = 'Exit book';
93 $string['book:addinstance'] = 'Add a new book';
94 $string['book:read'] = 'View book';
95 $string['book:edit'] = 'Edit book chapters';
96 $string['book:viewhiddenchapters'] = 'View hidden book chapters';
97 $string['errorchapter'] = 'Error reading chapter of book.';
99 $string['page-mod-book-x'] = 'Any book module page';
100 $string['subchapternotice'] = '(Only available once the first chapter has been created)';
101 $string['subplugintype_booktool'] = 'Book tool';
102 $string['subplugintype_booktool_plural'] = 'Book tools';