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['startingNamespace'] = 'Enter your starting Namespace'; 22$lang['selectYourOptions'] = 'Select your Options'; 23$lang['helpCreationOptions'] = 'Select one of the Help Creation Options (optional)'; 24$lang['eclipseDocZip'] = 'Create Eclipse Help'; 25$lang['JavaHelpDocZip'] = 'Create Java Help'; 26$lang['TOCMapWithoutTranslation'] = 'Remove Translation Root'; 27 28$lang['useTocFile'] = 'Use TOC file in Namespace'; 29$lang['emptyTocElem'] = 'Empty Namespaces in TOC'; 30$lang['startProcess'] = 'Start Process'; 31$lang['directDownloadLink'] = 'Direct Download Link'; 32$lang['wgetURLLink'] = 'wget Download URL'; 33$lang['curlURLLink'] = 'curl Download URL'; 34$lang['start'] = 'start'; 35$lang['status'] = 'Status'; 36$lang['ns'] = 'Set Namespace'; 37$lang['ens'] = 'Parent Namespace to export'; 38 39$lang['disablePluginsOption'] = 'Disable (JS/CSS) Plugins while export'; 40 41$lang['depthType'] = 'Export Type'; 42$lang['depth.pageOnly'] = 'this page only'; 43$lang['depth.allSubNameSpaces'] = 'all sub namespaces'; 44$lang['depth.specifiedDepth'] = 'specified depth'; 45 46$lang['depth'] = 'Depth'; 47$lang['renderer'] = 'Render Engine'; 48 49$lang['exportLinkedPages'] = 'Export Linked Pages'; 50 51$lang['canOverwriteExisting'] = 'Overwrite existing Cron Job:'; 52$lang['cronSaveProcess'] = 'Save as Cron Job'; 53$lang['cronDescription'] = 'This allows to create cron-based jobs. They will be executed according to the server setting (you need command line access to the cron tool).'; 54$lang['cronSaveAction'] = 'Save as Cron Job'; 55$lang['cronDeleteAction'] = 'Delete Cron Job'; 56 57$lang['customOptions'] = 'Custom Options'; 58$lang['customOptionsDescription'] = 'You can add further custom options that will be considered while exporting'; 59$lang['addCustomOption'] = 'add Option'; 60 61$lang['search'] = 'Search'; 62$lang['toc'] = 'Table of Contents'; 63 64//Setup VIM: ex: et ts=4 enc=utf-8 : 65