1<?php
2/**
3 * english language file
4 */
5
6// settings must be present and set appropriately for the language
7$lang['encoding']   = 'utf-8';
8$lang['direction']  = 'ltr';
9
10// for admin plugins, the menu prompt to be displayed in the admin menu
11// if set here, the plugin doesn't need to override the getMenuText() method
12$lang['menu'] = 'Site Export';
13
14// custom language strings for the plugin
15$lang['absolutePath'] = 'Export Absolute Paths';
16$lang['pdfExport'] = 'PDF Export';
17$lang['usenumberedheading'] = 'Numbered Headings';
18$lang['template'] = 'Export Template';
19$lang['exportBody'] = 'Export Body only';
20$lang['addParams'] = 'Export all parameters (e.g. "do")';
21$lang['disableCache'] = 'Disable cache for current request';
22
23$lang['startingNamespace'] = 'Enter your starting Namespace';
24$lang['selectYourOptions'] = 'Select your Options';
25$lang['helpCreationOptions'] = 'Select one of the Help Creation Options (optional)';
26$lang['eclipseDocZip'] = 'Create Eclipse Help';
27$lang['JavaHelpDocZip'] = 'Create Java Help';
28$lang['TOCMapWithoutTranslation'] = 'Remove Translation Root';
29
30$lang['useTocFile'] = 'Use TOC file in Namespace';
31$lang['emptyTocElem'] = 'Empty Namespaces in TOC';
32$lang['startProcess'] = 'Start Process';
33$lang['directDownloadLink'] = 'Direct Download Link';
34$lang['wgetURLLink'] = 'wget Download URL';
35$lang['curlURLLink'] = 'curl Download URL';
36$lang['start'] = 'start';
37$lang['status'] = 'Status';
38$lang['ns'] = 'Set Namespace';
39$lang['ens'] = 'Parent Namespace to export';
40$lang['defaultLang'] = 'Default Language for multi-language namespaces';
41
42$lang['disablePluginsOption'] = 'Disable (JS/CSS) Plugins while export';
43
44$lang['depthType'] = 'Export Type';
45$lang['depth.pageOnly'] = 'this page only';
46$lang['depth.allSubNameSpaces'] = 'all sub namespaces';
47$lang['depth.specifiedDepth'] = 'specified depth';
48
49$lang['depth'] = 'Depth';
50$lang['renderer'] = 'Render Engine';
51
52$lang['exportLinkedPages'] = 'Export Linked Pages';
53
54$lang['customOptions'] = 'Custom Options';
55$lang['customOptionsDescription'] = 'You can add further custom options that will be considered while exporting';
56$lang['addCustomOption'] = 'add Option';
57
58$lang['search'] = 'Search';
59$lang['toc'] = 'Table of Contents';
60
61
62$lang['AggregateSubmitLabel'] = 'Download';
63$lang['AggragateExportPages'] = 'Starting page for merger:';
64$lang['SiteSubmitLabel'] = 'Download as PDF';
65$lang['toolbarButton'] = 'Insert Siteexporter';
66$lang['useOptionsInEditor'] = 'Use these options and insert {{siteAggregator}} element';
67$lang['NoEntriesFoundHint'] = 'No pages have been found for aggregation.';
68
69$lang['siteexport_button'] = 'Export Page to HTML/PDF';
70
71$lang['js']['loadingpage'] = 'Creating document';
72$lang['js']['startdownload'] = 'Starting Download';
73$lang['js']['downloadfinished'] = 'Finished Download';
74$lang['js']['finishedbutdownloadfailed'] = 'Finished but download failed.';
75
76//Setup VIM: ex: et ts=4 enc=utf-8 :
77