110449332Schris<?php 210449332Schris/** 310449332Schris * english language file 410449332Schris * 510449332Schris * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 610449332Schris * @author Christopher Smith <chris@jalakai.co.uk> 710449332Schris */ 810449332Schris 910449332Schris// for admin plugins, the menu prompt to be displayed in the admin menu 1010449332Schris// if set here, the plugin doesn't need to override the getMenuText() method 11262065efSAndreas Gohr$lang['menu'] = 'Configuration Settings'; 1210449332Schris 1310449332Schris$lang['error'] = 'Settings not updated due to an invalid value, please review your changes and resubmit. 1410449332Schris <br />The incorrect value(s) will be shown surrounded by a red border.'; 1510449332Schris$lang['updated'] = 'Settings updated successfully.'; 1610449332Schris$lang['nochoice'] = '(no other choices available)'; 1710449332Schris$lang['locked'] = 'The settings file can not be updated, if this is unintentional, <br /> 1810449332Schris ensure the local settings file name and permissions are correct.'; 1910449332Schris 2010449332Schris 21*2825d176SAndreas Gohr/* -------------------- Config Options --------------------------- */ 2210449332Schris 23*2825d176SAndreas Gohr$lang['umask'] = 'global permission mask'; 24*2825d176SAndreas Gohr$lang['fmode'] = 'file creation mode'; 25*2825d176SAndreas Gohr$lang['dmode'] = 'directory creation mode'; 26*2825d176SAndreas Gohr$lang['lang'] = 'language'; 27*2825d176SAndreas Gohr$lang['basedir'] = 'base directory'; 28*2825d176SAndreas Gohr$lang['baseurl'] = 'base url'; 29*2825d176SAndreas Gohr$lang['savedir'] = 'save directory'; 30*2825d176SAndreas Gohr$lang['start'] = 'start page name'; 31*2825d176SAndreas Gohr$lang['title'] = 'wiki title'; 32*2825d176SAndreas Gohr$lang['template'] = 'template'; 33*2825d176SAndreas Gohr$lang['fullpath'] = 'use full path'; 34*2825d176SAndreas Gohr$lang['recent'] = 'recent changes'; 35*2825d176SAndreas Gohr$lang['breadcrumbs'] = 'breadcrumbs'; 36*2825d176SAndreas Gohr$lang['youarehere'] = 'hierarchical breadcrumbs'; 37*2825d176SAndreas Gohr$lang['typography'] = 'typography'; 38*2825d176SAndreas Gohr$lang['htmlok'] = 'allow embedded html'; 39*2825d176SAndreas Gohr$lang['phpok'] = 'allow embedded php'; 40*2825d176SAndreas Gohr$lang['dformat'] = 'date format'; 41*2825d176SAndreas Gohr$lang['signature'] = 'signature'; 42*2825d176SAndreas Gohr$lang['toptoclevel'] = 'top toc level'; 43*2825d176SAndreas Gohr$lang['maxtoclevel'] = 'max toc level'; 44*2825d176SAndreas Gohr$lang['maxseclevel'] = 'max section edit level'; 45*2825d176SAndreas Gohr$lang['camelcase'] = 'use camelcase for links'; 46*2825d176SAndreas Gohr$lang['deaccent'] = 'deaccent in pagenames'; 47*2825d176SAndreas Gohr$lang['useheading'] = 'use first heading'; 48*2825d176SAndreas Gohr$lang['refcheck'] = 'media reference check'; 49*2825d176SAndreas Gohr$lang['refshow'] = 'media references to show'; 50*2825d176SAndreas Gohr$lang['allowdebug'] = 'allow debug (disable!)'; 51*2825d176SAndreas Gohr 52*2825d176SAndreas Gohr$lang['usewordblock']= 'block spam based on words'; 53*2825d176SAndreas Gohr$lang['indexdelay'] = 'time delay before indexing'; 54*2825d176SAndreas Gohr$lang['relnofollow'] = 'use rel="nofollow"'; 55*2825d176SAndreas Gohr$lang['mailguard'] = 'obfuscate email addresses'; 56*2825d176SAndreas Gohr 57*2825d176SAndreas Gohr/* Authentication Options */ 58*2825d176SAndreas Gohr$lang['useacl'] = 'use ACL'; 59*2825d176SAndreas Gohr$lang['openregister']= 'open register'; 60*2825d176SAndreas Gohr$lang['autopasswd'] = 'autogenerate passwords'; 61*2825d176SAndreas Gohr$lang['resendpasswd']= 'allow resend password'; 62*2825d176SAndreas Gohr$lang['authtype'] = 'authentication backend'; 63*2825d176SAndreas Gohr$lang['passcrypt'] = 'password encryption'; 64*2825d176SAndreas Gohr$lang['defaultgroup']= 'default group'; 65*2825d176SAndreas Gohr$lang['superuser'] = 'superuser'; 66*2825d176SAndreas Gohr$lang['profileconfirm'] = 'profile confirm'; 6710449332Schris 6810449332Schris/* Advanced Options */ 69*2825d176SAndreas Gohr$lang['userewrite'] = 'use nice URLs'; 70*2825d176SAndreas Gohr$lang['useslash'] = 'use slash'; 71*2825d176SAndreas Gohr$lang['sepchar'] = 'page name word separator'; 72*2825d176SAndreas Gohr$lang['canonical'] = 'use fully canonical URLs'; 73*2825d176SAndreas Gohr$lang['autoplural'] = 'auto-plural'; 74*2825d176SAndreas Gohr$lang['usegzip'] = 'use gzip (for attic)'; 75*2825d176SAndreas Gohr$lang['cachetime'] = 'max. age for cache (sec)'; 76*2825d176SAndreas Gohr$lang['purgeonadd'] = 'purge cache on add'; 77*2825d176SAndreas Gohr$lang['locktime'] = 'max. age for lock files (sec)'; 78*2825d176SAndreas Gohr$lang['notify'] = 'notify email address'; 79*2825d176SAndreas Gohr$lang['mailfrom'] = 'wiki mail from'; 80*2825d176SAndreas Gohr$lang['gdlib'] = 'GD Lib version'; 81*2825d176SAndreas Gohr$lang['im_convert'] = 'imagemagick path'; 82*2825d176SAndreas Gohr$lang['spellchecker']= 'enable spellchecker'; 83*2825d176SAndreas Gohr$lang['subscribers'] = 'enable subscription support'; 84*2825d176SAndreas Gohr$lang['compress'] = 'Compress CSS & javascript files'; 85*2825d176SAndreas Gohr$lang['hidepages'] = 'Hide matching pages (regex)'; 86*2825d176SAndreas Gohr$lang['send404'] = 'Send "HTTP 404/Page Not Found"'; 87*2825d176SAndreas Gohr$lang['sitemap'] = 'Generate google sitemap (days)'; 8810449332Schris 89*2825d176SAndreas Gohr$lang['rss_type'] = 'rss feed type'; 90*2825d176SAndreas Gohr$lang['rss_linkto'] = 'rss links to'; 9110449332Schris 92*2825d176SAndreas Gohr/* Target options */ 9310449332Schris$lang['target____wiki'] = 'target for internal links'; 9410449332Schris$lang['target____interwiki'] = 'target for interwiki links'; 9510449332Schris$lang['target____extern'] = 'target for external links'; 9610449332Schris$lang['target____media'] = 'target for media links'; 9710449332Schris$lang['target____windows'] = 'target for windows links'; 9810449332Schris 99*2825d176SAndreas Gohr/* Proxy Options */ 10010449332Schris$lang['proxy____host'] = 'proxy - host'; 10110449332Schris$lang['proxy____port'] = 'proxy - port'; 10210449332Schris$lang['proxy____user'] = 'proxy - user name'; 10310449332Schris$lang['proxy____pass'] = 'proxy - password'; 10410449332Schris$lang['proxy____ssl'] = 'proxy - ssl'; 10510449332Schris 10610449332Schris/* Safemode Hack */ 107*2825d176SAndreas Gohr$lang['safemodehack'] = 'enable safemode hack'; 10810449332Schris$lang['ftp____host'] = 'ftp - host'; 10910449332Schris$lang['ftp____port'] = 'ftp - port'; 11010449332Schris$lang['ftp____user'] = 'ftp - user name'; 11110449332Schris$lang['ftp____pass'] = 'ftp - password'; 11210449332Schris$lang['ftp____root'] = 'ftp - root directory'; 11310449332Schris 11410449332Schris/* userewrite options */ 11510449332Schris$lang['userewrite_o_0'] = 'none'; 11610449332Schris$lang['userewrite_o_1'] = 'htaccess'; 11710449332Schris$lang['userewrite_o_2'] = 'dokuwiki'; 11810449332Schris 119*2825d176SAndreas Gohr/* deaccent options */ 120*2825d176SAndreas Gohr$lang['deaccent_o_0'] = 'off'; 121*2825d176SAndreas Gohr$lang['deaccent_o_1'] = 'remove accents'; 122*2825d176SAndreas Gohr$lang['deaccent_o_2'] = 'romanize'; 123*2825d176SAndreas Gohr 12410449332Schris/* gdlib options */ 12520e7ccb0Schris$lang['gdlib_o_0'] = 'GD Lib not available'; 12610449332Schris$lang['gdlib_o_1'] = 'version 1.x'; 12710449332Schris$lang['gdlib_o_2'] = 'autodetect'; 12810449332Schris 12910449332Schris/* rss_type options */ 13010449332Schris$lang['rss_type_o_rss'] = 'RSS 0.91'; 13110449332Schris$lang['rss_type_o_rss1'] = 'RSS 1.0'; 13210449332Schris$lang['rss_type_o_rss2'] = 'RSS 2.0'; 13310449332Schris$lang['rss_type_o_atom'] = 'Atom 0.3'; 13410449332Schris 13510449332Schris/* rss_linkto options */ 13610449332Schris$lang['rss_linkto_o_diff'] = 'list of differences'; 13710449332Schris$lang['rss_linkto_o_page'] = 'the revised page'; 13810449332Schris$lang['rss_linkto_o_rev'] = 'list of revisions'; 13910449332Schris$lang['rss_linkto_o_current'] = 'the current page'; 14010449332Schris 141