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['umask'] = 'global permission mask'; 24$lang['fmode'] = 'file creation mode'; 25$lang['dmode'] = 'directory creation mode'; 26$lang['lang'] = 'language'; 27$lang['basedir'] = 'base directory'; 28$lang['baseurl'] = 'base url'; 29$lang['savedir'] = 'save directory'; 30$lang['start'] = 'start page name'; 31$lang['title'] = 'wiki title'; 32$lang['template'] = 'template'; 33$lang['fullpath'] = 'use full path'; 34$lang['recent'] = 'recent changes'; 35$lang['breadcrumbs'] = 'breadcrumbs'; 36$lang['youarehere'] = 'hierarchical breadcrumbs'; 37$lang['typography'] = 'typography'; 38$lang['htmlok'] = 'allow embedded html'; 39$lang['phpok'] = 'allow embedded php'; 40$lang['dformat'] = 'date format'; 41$lang['signature'] = 'signature'; 42$lang['toptoclevel'] = 'top toc level'; 43$lang['maxtoclevel'] = 'max toc level'; 44$lang['maxseclevel'] = 'max section edit level'; 45$lang['camelcase'] = 'use camelcase for links'; 46$lang['deaccent'] = 'deaccent in pagenames'; 47$lang['useheading'] = 'use first heading'; 48$lang['refcheck'] = 'media reference check'; 49$lang['refshow'] = 'media references to show'; 50$lang['allowdebug'] = 'allow debug (disable!)'; 51 52$lang['usewordblock']= 'block spam based on words'; 53$lang['indexdelay'] = 'time delay before indexing'; 54$lang['relnofollow'] = 'use rel="nofollow"'; 55$lang['mailguard'] = 'obfuscate email addresses'; 56 57/* Authentication Options */ 58$lang['useacl'] = 'use ACL'; 59$lang['openregister']= 'open register'; 60$lang['autopasswd'] = 'autogenerate passwords'; 61$lang['resendpasswd']= 'allow resend password'; 62$lang['authtype'] = 'authentication backend'; 63$lang['passcrypt'] = 'password encryption'; 64$lang['defaultgroup']= 'default group'; 65$lang['superuser'] = 'superuser'; 66$lang['profileconfirm'] = 'profile confirm'; 67 68/* Advanced Options */ 69$lang['userewrite'] = 'use nice URLs'; 70$lang['useslash'] = 'use slash'; 71$lang['sepchar'] = 'page name word separator'; 72$lang['canonical'] = 'use fully canonical URLs'; 73$lang['autoplural'] = 'auto-plural'; 74$lang['usegzip'] = 'use gzip (for attic)'; 75$lang['cachetime'] = 'max. age for cache (sec)'; 76$lang['purgeonadd'] = 'purge cache on add'; 77$lang['locktime'] = 'max. age for lock files (sec)'; 78$lang['notify'] = 'notify email address'; 79$lang['mailfrom'] = 'wiki mail from'; 80$lang['gdlib'] = 'GD Lib version'; 81$lang['im_convert'] = 'imagemagick path'; 82$lang['spellchecker']= 'enable spellchecker'; 83$lang['subscribers'] = 'enable subscription support'; 84$lang['compress'] = 'Compress CSS & javascript files'; 85$lang['hidepages'] = 'Hide matching pages (regex)'; 86$lang['send404'] = 'Send "HTTP 404/Page Not Found"'; 87$lang['sitemap'] = 'Generate google sitemap (days)'; 88 89$lang['rss_type'] = 'rss feed type'; 90$lang['rss_linkto'] = 'rss links to'; 91 92/* Target options */ 93$lang['target____wiki'] = 'target for internal links'; 94$lang['target____interwiki'] = 'target for interwiki links'; 95$lang['target____extern'] = 'target for external links'; 96$lang['target____media'] = 'target for media links'; 97$lang['target____windows'] = 'target for windows links'; 98 99/* Proxy Options */ 100$lang['proxy____host'] = 'proxy - host'; 101$lang['proxy____port'] = 'proxy - port'; 102$lang['proxy____user'] = 'proxy - user name'; 103$lang['proxy____pass'] = 'proxy - password'; 104$lang['proxy____ssl'] = 'proxy - ssl'; 105 106/* Safemode Hack */ 107$lang['safemodehack'] = 'enable safemode hack'; 108$lang['ftp____host'] = 'ftp - host'; 109$lang['ftp____port'] = 'ftp - port'; 110$lang['ftp____user'] = 'ftp - user name'; 111$lang['ftp____pass'] = 'ftp - password'; 112$lang['ftp____root'] = 'ftp - root directory'; 113 114/* userewrite options */ 115$lang['userewrite_o_0'] = 'none'; 116$lang['userewrite_o_1'] = 'htaccess'; 117$lang['userewrite_o_2'] = 'dokuwiki'; 118 119/* deaccent options */ 120$lang['deaccent_o_0'] = 'off'; 121$lang['deaccent_o_1'] = 'remove accents'; 122$lang['deaccent_o_2'] = 'romanize'; 123 124/* gdlib options */ 125$lang['gdlib_o_0'] = 'GD Lib not available'; 126$lang['gdlib_o_1'] = 'version 1.x'; 127$lang['gdlib_o_2'] = 'autodetect'; 128 129/* rss_type options */ 130$lang['rss_type_o_rss'] = 'RSS 0.91'; 131$lang['rss_type_o_rss1'] = 'RSS 1.0'; 132$lang['rss_type_o_rss2'] = 'RSS 2.0'; 133$lang['rss_type_o_atom'] = 'Atom 0.3'; 134 135/* rss_linkto options */ 136$lang['rss_linkto_o_diff'] = 'list of differences'; 137$lang['rss_linkto_o_page'] = 'the revised page'; 138$lang['rss_linkto_o_rev'] = 'list of revisions'; 139$lang['rss_linkto_o_current'] = 'the current page'; 140 141