add contents

This commit is contained in:
Trevor Batley
2025-10-09 15:04:29 +11:00
parent 170362eec1
commit bce7dd054a
2537 changed files with 301282 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
<?php
/**
* English language file.
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @package DokuWiki\lang\en\lang
*/
// settings must be present and set appropriately for the language
$lang['encoding'] = 'utf-8';
$lang['direction'] = 'ltr';
// export button
$lang['view'] = 'Export page to Open Document format';
$lang['export_odt_button'] = 'ODT export';
$lang['export_odt_pdf_button'] = 'ODT=>PDF export';
// template not found in the directory
$lang['tpl_not_found'] = 'ERROR : the ODT template "%s" was not found in the templates directory "%s". The export has been aborted.';
// default TOC and chapter index title
$lang['toc_title'] = 'Table of Contents';
$lang['chapter_title'] = 'Chapter Index';
$lang['toc_msg'] = 'A Table of Contents will be inserted here.';
$lang['chapter_msg'] = 'A Chapter Index will be inserted here.';
$lang['update_toc_msg'] = 'Please remember to update the Table Of Contents after export.';
$lang['update_chapter_msg'] = 'Please remember to update the Chapter Index after export.';
$lang['needtitle'] = 'Please provide a title.';
$lang['needns'] = 'Please provide an existing namespace.';
$lang['empty'] = "You don't have pages selected yet.";
$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.";
// Error message for failed conversion.
// The following replacments are supported:
// %command% = the complete command line which was executed
// %errorcode% = the error code reported after executing the command
// %errormessage% = the detailed error message reported after executing the command
$lang['conversion_failed_msg'] =
'====== An error occured during conversion of the ODT document: ======
Executed command line:
<code>%command%</code>
Error code: %errorcode%
Error message:
<code>%errormessage%</code>
[[%pageid%|Back to previous page]]';
// Error message for failed conversion.
$lang['init_failed_msg'] =
'====== An error occured during initialization of the ODT document: ======
Is your DokuWiki version compatible to the ODT plugin?
Since release 2017-02-11 the ODT plugin requires DokuWiki release “Detritus” or newer!
For detailed requirements information please see the [[https://www.dokuwiki.org/plugin:odt#requirements|Requirements section]] of the ODT plugin page at DokuWiki.org.
(Your DokuWiki release is %DWVERSION%)';

View File

@@ -0,0 +1,46 @@
<?php
/**
* English language file for config settings.
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Aurelien Bompard <aurelien@bompard.org>
* @package DokuWiki\lang\en\settings
*/
/**
* @global array $lang['tpl_dir'] Translation for 'template directory'
*/
$lang['tpl_dir'] = 'Sub-directory for the templates in the media manager';
/** @var array $lang['tpl_dir'] Translation for 'ODT template file (ODT or CSS file)' */
$lang['odt_template'] = 'Template for style import (ODT or CSS file)';
$lang['showexportbutton'] = 'Display ODT Export Button';
$lang['css_usage'] = 'Apply imported CSS to ODT styles?';
$lang['media_sel'] = 'Which @media selector shall be used to query CSS properties?';
$lang['css_font_size'] = 'CSS base font size (defining 1em)';
$lang['css_template'] = 'Which template should be used for formatting the ODT files?';
$lang['apply_fs_to_non_css'] = 'Apply CSS font size to ODT template and plugin default styles?';
$lang['twips_per_pixel_x'] = 'Twips per pixel (X axis)';
$lang['twips_per_pixel_y'] = 'Twips per pixel (Y axis)';
$lang['format'] = 'Page format';
$lang['orientation'] = 'Page orientation';
$lang['margin_top'] = 'Page margin top in cm';
$lang['margin_right'] = 'Page margin right in cm';
$lang['margin_bottom'] = 'Page margin bottom in cm';
$lang['margin_left'] = 'Page margin left in cm';
$lang['disable_links'] = 'Disable link creation?';
$lang['toc_maxlevel'] = 'Maximum depth of the table of contents';
$lang['toc_leader_sign'] = 'Leader sign for the table of contents';
$lang['toc_indents'] = 'Table of contents: Indentation per level in cm';
$lang['toc_pagebreak'] = 'Insert a pagebreak after the table of contents?';
$lang['toc_style'] = 'Text style for table of contents';
$lang['index_in_browser'] = 'Display placeholder for table of contents/index in the browser?';
$lang['outline_list_style'] = 'Outline style';
$lang['convert_to_pdf'] = 'Command to run for PDF conversion';