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// settings prompts 21$lang['umask'] = 'new file permission mask'; //set the umask for new files 22$lang['dmask'] = 'new folder permission mask'; //directory mask accordingly 23$lang['lang'] = 'language'; //your language 24$lang['basedir'] = 'base directory'; //absolute dir from serveroot - blank for autodetection 25$lang['baseurl'] = 'base url'; //URL to server including protocol - blank for autodetect 26$lang['savedir'] = 'save directory'; //where to store all the files 27$lang['start'] = 'start page name'; //name of start page 28$lang['title'] = 'wiki title'; //what to show in the title 29$lang['template'] = 'template'; //see tpl directory 30$lang['fullpath'] = 'use full path'; //show full path of the document or relative to datadir only? 0|1 31$lang['recent'] = 'recent changes'; //how many entries to show in recent 32$lang['breadcrumbs'] = 'breadcrumbs'; //how many recent visited pages to show 33$lang['typography'] = 'typography'; //convert quotes, dashes and stuff to typographic equivalents? 0|1 34$lang['htmlok'] = 'allow embedded html';//may raw HTML be embedded? This may break layout and XHTML validity 0|1 35$lang['phpok'] = 'allow embedded php'; //may PHP code be embedded? Never do this on the internet! 0|1 36$lang['dformat'] = 'date format'; //dateformat accepted by PHPs date() function 37$lang['signature'] = 'signature'; //signature see wiki:langig for details 38$lang['toptoclevel'] = 'top toc level'; //Level starting with and below to include in AutoTOC (max. 5) 39$lang['maxtoclevel'] = 'max toc level'; //Up to which level include into AutoTOC (max. 5) 40$lang['maxseclevel'] = 'max section edit level'; //Up to which level create editable sections (max. 5) 41$lang['camelcase'] = 'use camelcase for links'; //Use CamelCase for linking? (I don't like it) 0|1 42$lang['deaccent'] = 'deaccent in pagenames'; //convert accented chars to unaccented ones in pagenames? 43$lang['useheading'] = 'use first heading'; //use the first heading in a page as its name 44$lang['refcheck'] = 'media reference check'; //check for references before deleting media files 45$lang['refshow'] = 'media references to show'; //how many references should be shown, 5 is a good value 46$lang['allowdebug'] = 'allow debug (disable!)'; //make debug possible, disable after install! 0|1 47 48$lang['usewordblock']= 'block spam based on words'; //block spam based on words? 0|1 49$lang['indexdelay'] = 'time delay before indexing'; //allow indexing after this time (seconds) default is 5 days 50$lang['relnofollow'] = 'use rel="nofollow"'; //use rel="nofollow" for external links? 51$lang['mailguard'] = 'obfuscate email addresses'; //obfuscate email addresses against spam harvesters? 52 53/* Authentication Options - read http://www.splitbrain.org/dokuwiki/wiki:acl */ 54$lang['useacl'] = 'use ACL'; //Use Access Control Lists to restrict access? 55$lang['openregister']= 'open register'; //Should users to be allowed to register? 56$lang['autopasswd'] = 'autogenerate passwords'; //autogenerate passwords and email them to user 57$lang['resendpasswd']= 'allow resend password'; //allow resend password function? 58$lang['authtype'] = 'authentication backend'; //which authentication backend should be used 59$lang['passcrypt'] = 'password encryption'; //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411) 60$lang['defaultgroup']= 'default group'; //Default groups new Users are added to 61$lang['superuser'] = 'superuser'; //The admin can be user or @group 62$lang['profileconfirm'] = 'profile confirm'; //Require current password to langirm changes to user profile 63 64/* Advanced Options */ 65$lang['userewrite'] = 'use nice URLs'; //this makes nice URLs: 0: off 1: .htaccess 2: internal 66$lang['useslash'] = 'use slash'; //use slash instead of colon? only when rewrite is on 67$lang['sepchar'] = 'page name word separator'; //word separator character in page names; may be a 68$lang['canonical'] = 'use fully canonical URLs'; //Should all URLs use full canonical http://... style? 69$lang['autoplural'] = 'auto-plural'; //try (non)plural form of nonexisting files? 70$lang['usegzip'] = 'use gzip (for attic)'; //gzip old revisions? 71$lang['cachetime'] = 'max. age for cache (sec)'; //maximum age for cachefile in seconds (defaults to a day) 72$lang['purgeonadd'] = 'purge cache on add'; //purge cache when a new file is added (needed for up to date links) 73$lang['locktime'] = 'max. age for lock files (sec)'; //maximum age for lockfiles (defaults to 15 minutes) 74$lang['notify'] = 'notify email address'; //send change info to this email (leave blank for nobody) 75$lang['mailfrom'] = 'wiki mail from'; //use this email when sending mails 76$lang['gdlib'] = 'GD Lib version'; //the GDlib version (0, 1 or 2) 2 tries to autodetect 77$lang['im_convert'] = 'imagemagick path'; //path to ImageMagicks convert (will be used instead of GD) 78$lang['spellchecker']= 'enable spellchecker'; //enable Spellchecker (needs PHP >= 4.3.0 and aspell installed) 79$lang['subscribers'] = 'enable subscription support'; //enable change notice subscription support 80$lang['compress'] = 'Compress CSS & javascript files'; //Strip whitespaces and comments from Styles and JavaScript? 1|0 81$lang['hidepages'] = 'Hide matching pages (regex)'; //Regexp for pages to be skipped from RSS, Search and Recent Changes 82$lang['send404'] = 'Send "HTTP404/Page Not Found"'; //Send a HTTP 404 status for non existing pages? 83$lang['sitemap'] = 'Generate google sitemap (days)'; //Create a google sitemap? How often? In days. 84 85$lang['rss_type'] = 'rss feed type'; //type of RSS feed to provide, by default: 86$lang['rss_linkto'] = 'rss links to'; //what page RSS entries link to: 87 88//Set target to use when creating links - leave empty for same window 89$lang['target____wiki'] = 'target for internal links'; 90$lang['target____interwiki'] = 'target for interwiki links'; 91$lang['target____extern'] = 'target for external links'; 92$lang['target____media'] = 'target for media links'; 93$lang['target____windows'] = 'target for windows links'; 94 95//Proxy setup - if your Server needs a proxy to access the web set these 96$lang['proxy____host'] = 'proxy - host'; 97$lang['proxy____port'] = 'proxy - port'; 98$lang['proxy____user'] = 'proxy - user name'; 99$lang['proxy____pass'] = 'proxy - password'; 100$lang['proxy____ssl'] = 'proxy - ssl'; 101 102/* Safemode Hack */ 103$lang['safemodehack'] = 'enable safemode hack'; //read http://wiki.splitbrain.org/wiki:safemodehack ! 104$lang['ftp____host'] = 'ftp - host'; 105$lang['ftp____port'] = 'ftp - port'; 106$lang['ftp____user'] = 'ftp - user name'; 107$lang['ftp____pass'] = 'ftp - password'; 108$lang['ftp____root'] = 'ftp - root directory'; 109 110/* userewrite options */ 111$lang['userewrite_o_0'] = 'none'; 112$lang['userewrite_o_1'] = 'htaccess'; 113$lang['userewrite_o_2'] = 'dokuwiki'; 114 115/* gdlib options */ 116$lang['gdlib_o_0'] = 'GD Lib not available'; 117$lang['gdlib_o_1'] = 'version 1.x'; 118$lang['gdlib_o_2'] = 'autodetect'; 119 120/* rss_type options */ 121$lang['rss_type_o_rss'] = 'RSS 0.91'; 122$lang['rss_type_o_rss1'] = 'RSS 1.0'; 123$lang['rss_type_o_rss2'] = 'RSS 2.0'; 124$lang['rss_type_o_atom'] = 'Atom 0.3'; 125 126/* rss_linkto options */ 127$lang['rss_linkto_o_diff'] = 'list of differences'; 128$lang['rss_linkto_o_page'] = 'the revised page'; 129$lang['rss_linkto_o_rev'] = 'list of revisions'; 130$lang['rss_linkto_o_current'] = 'the current page'; 131 132