1<?php
2/**
3 * English language file.
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @package DokuWiki\lang\en\lang
7 */
8
9// settings must be present and set appropriately for the language
10$lang['encoding']   = 'utf-8';
11$lang['direction']  = 'ltr';
12
13// export button
14$lang['view'] = 'Export page to Open Document format';
15$lang['export_odt_button'] = 'ODT export';
16$lang['export_odt_pdf_button'] = 'ODT=>PDF export';
17
18// template not found in the directory
19$lang['tpl_not_found'] = 'ERROR : the ODT template "%s" was not found in the templates directory "%s". The export has been aborted.';
20
21// default TOC and chapter index title
22$lang['toc_title']          = 'Table of Contents';
23$lang['chapter_title']      = 'Chapter Index';
24$lang['toc_msg']            = 'A Table of Contents will be inserted here.';
25$lang['chapter_msg']        = 'A Chapter Index will be inserted here.';
26$lang['update_toc_msg']     = 'Please remember to update the Table Of Contents after export.';
27$lang['update_chapter_msg'] = 'Please remember to update the Chapter Index after export.';
28
29$lang['needtitle']         = 'Please provide a title.';
30$lang['needns']            = 'Please provide an existing namespace.';
31$lang['empty']             = "You don't have pages selected yet.";
32$lang['forbidden']         = "You have no access to these pages: %s.<br/><br/>Use option 'Skip Forbidden Pages' to create your book with the available pages.";
33
34// Error message for failed conversion.
35// The following replacments are supported:
36// %command%      = the complete command line which was executed
37// %errorcode%    = the error code reported after executing the command
38// %errormessage% = the detailed error message reported after executing the command
39$lang['conversion_failed_msg'] =
40'====== An error occured during conversion of the ODT document: ======
41
42Executed command line:
43
44<code>%command%</code>
45
46Error code: %errorcode%
47
48Error message:
49
50<code>%errormessage%</code>
51
52[[%pageid%|Back to previous page]]';
53
54// Error message for failed conversion.
55$lang['init_failed_msg'] =
56'====== An error occured during initialization of the ODT document: ======
57
58Is your DokuWiki version compatible to the ODT plugin?
59
60Since release 2017-02-11 the ODT plugin requires DokuWiki release “Detritus” or newer!
61For detailed requirements information please see the [[https://www.dokuwiki.org/plugin:odt#requirements|Requirements section]] of the ODT plugin page at DokuWiki.org.
62
63(Your DokuWiki release is %DWVERSION%)';
64