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