1<?php 2/** 3 * english language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Christopher Smith <chris@jalakai.co.uk> 7 */ 8 9// for admin plugins, the menu prompt to be displayed in the admin menu 10// if set here, the plugin doesn't need to override the getMenuText() method 11$lang['menu'] = 'Configuration Settings'; 12 13$lang['error'] = 'Settings not updated due to an invalid value, please review your changes and resubmit. 14 <br />The incorrect value(s) will be shown surrounded by a red border.'; 15$lang['updated'] = 'Settings updated successfully.'; 16$lang['nochoice'] = '(no other choices available)'; 17$lang['locked'] = 'The settings file can not be updated, if this is unintentional, <br /> 18 ensure the local settings file name and permissions are correct.'; 19 20 21/* -------------------- Config Options --------------------------- */ 22 23$lang['fmode'] = 'file creation mode'; 24$lang['dmode'] = 'directory creation mode'; 25$lang['lang'] = 'language'; 26$lang['basedir'] = 'base directory'; 27$lang['baseurl'] = 'base url'; 28$lang['savedir'] = 'save directory'; 29$lang['start'] = 'start page name'; 30$lang['title'] = 'wiki title'; 31$lang['template'] = 'template'; 32$lang['fullpath'] = 'use full path'; 33$lang['recent'] = 'recent changes'; 34$lang['breadcrumbs'] = 'breadcrumbs'; 35$lang['youarehere'] = 'hierarchical breadcrumbs'; 36$lang['typography'] = 'typography'; 37$lang['htmlok'] = 'allow embedded html'; 38$lang['phpok'] = 'allow embedded php'; 39$lang['dformat'] = 'date format'; 40$lang['signature'] = 'signature'; 41$lang['toptoclevel'] = 'top toc level'; 42$lang['maxtoclevel'] = 'max toc level'; 43$lang['maxseclevel'] = 'max section edit level'; 44$lang['camelcase'] = 'use camelcase for links'; 45$lang['deaccent'] = 'deaccent in pagenames'; 46$lang['useheading'] = 'use first heading'; 47$lang['refcheck'] = 'media reference check'; 48$lang['refshow'] = 'media references to show'; 49$lang['allowdebug'] = 'allow debug (disable!)'; 50 51$lang['usewordblock']= 'block spam based on words'; 52$lang['indexdelay'] = 'time delay before indexing'; 53$lang['relnofollow'] = 'use rel="nofollow"'; 54$lang['mailguard'] = 'obfuscate email addresses'; 55 56/* Authentication Options */ 57$lang['useacl'] = 'use ACL'; 58$lang['openregister']= 'open register'; 59$lang['autopasswd'] = 'autogenerate passwords'; 60$lang['resendpasswd']= 'allow resend password'; 61$lang['authtype'] = 'authentication backend'; 62$lang['passcrypt'] = 'password encryption'; 63$lang['defaultgroup']= 'default group'; 64$lang['superuser'] = 'superuser'; 65$lang['profileconfirm'] = 'profile confirm'; 66 67/* Advanced Options */ 68$lang['userewrite'] = 'use nice URLs'; 69$lang['useslash'] = 'use slash'; 70$lang['sepchar'] = 'page name word separator'; 71$lang['canonical'] = 'use fully canonical URLs'; 72$lang['autoplural'] = 'auto-plural'; 73$lang['usegzip'] = 'use gzip (for attic)'; 74$lang['cachetime'] = 'max. age for cache (sec)'; 75$lang['purgeonadd'] = 'purge cache on add'; 76$lang['locktime'] = 'max. age for lock files (sec)'; 77$lang['notify'] = 'notify email address'; 78$lang['mailfrom'] = 'wiki mail from'; 79$lang['gdlib'] = 'GD Lib version'; 80$lang['im_convert'] = 'imagemagick path'; 81$lang['spellchecker']= 'enable spellchecker'; 82$lang['subscribers'] = 'enable subscription support'; 83$lang['compress'] = 'Compress CSS & javascript files'; 84$lang['hidepages'] = 'Hide matching pages (regex)'; 85$lang['send404'] = 'Send "HTTP 404/Page Not Found"'; 86$lang['sitemap'] = 'Generate google sitemap (days)'; 87 88$lang['rss_type'] = 'rss feed type'; 89$lang['rss_linkto'] = 'rss links to'; 90 91/* Target options */ 92$lang['target____wiki'] = 'target for internal links'; 93$lang['target____interwiki'] = 'target for interwiki links'; 94$lang['target____extern'] = 'target for external links'; 95$lang['target____media'] = 'target for media links'; 96$lang['target____windows'] = 'target for windows links'; 97 98/* Proxy Options */ 99$lang['proxy____host'] = 'proxy - host'; 100$lang['proxy____port'] = 'proxy - port'; 101$lang['proxy____user'] = 'proxy - user name'; 102$lang['proxy____pass'] = 'proxy - password'; 103$lang['proxy____ssl'] = 'proxy - ssl'; 104 105/* Safemode Hack */ 106$lang['safemodehack'] = 'enable safemode hack'; 107$lang['ftp____host'] = 'ftp - host'; 108$lang['ftp____port'] = 'ftp - port'; 109$lang['ftp____user'] = 'ftp - user name'; 110$lang['ftp____pass'] = 'ftp - password'; 111$lang['ftp____root'] = 'ftp - root directory'; 112 113/* userewrite options */ 114$lang['userewrite_o_0'] = 'none'; 115$lang['userewrite_o_1'] = 'htaccess'; 116$lang['userewrite_o_2'] = 'dokuwiki'; 117 118/* deaccent options */ 119$lang['deaccent_o_0'] = 'off'; 120$lang['deaccent_o_1'] = 'remove accents'; 121$lang['deaccent_o_2'] = 'romanize'; 122 123/* gdlib options */ 124$lang['gdlib_o_0'] = 'GD Lib not available'; 125$lang['gdlib_o_1'] = 'version 1.x'; 126$lang['gdlib_o_2'] = 'autodetect'; 127 128/* rss_type options */ 129$lang['rss_type_o_rss'] = 'RSS 0.91'; 130$lang['rss_type_o_rss1'] = 'RSS 1.0'; 131$lang['rss_type_o_rss2'] = 'RSS 2.0'; 132$lang['rss_type_o_atom'] = 'Atom 0.3'; 133 134/* rss_linkto options */ 135$lang['rss_linkto_o_diff'] = 'list of differences'; 136$lang['rss_linkto_o_page'] = 'the revised page'; 137$lang['rss_linkto_o_rev'] = 'list of revisions'; 138$lang['rss_linkto_o_current'] = 'the current page'; 139 140