xref: /dokuwiki/lib/plugins/config/lang/en/lang.php (revision ff2f7f219f012a8a8b1ef042b1ca2cb479f632d5)
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
212825d176SAndreas Gohr/* -------------------- Config Options --------------------------- */
2210449332Schris
23*ff2f7f21SAndreas Gohr$lang['fmode']       = 'File creation mode';
24*ff2f7f21SAndreas Gohr$lang['dmode']       = 'Directory creation mode';
25*ff2f7f21SAndreas Gohr$lang['lang']        = 'Language';
26*ff2f7f21SAndreas Gohr$lang['basedir']     = 'Base directory';
27*ff2f7f21SAndreas Gohr$lang['baseurl']     = 'Base URL';
28*ff2f7f21SAndreas Gohr$lang['savedir']     = 'Directory for saving data';
29*ff2f7f21SAndreas Gohr$lang['start']       = 'Start page name';
30*ff2f7f21SAndreas Gohr$lang['title']       = 'Wiki title';
31*ff2f7f21SAndreas Gohr$lang['template']    = 'Template';
32*ff2f7f21SAndreas Gohr$lang['fullpath']    = 'Reveal full path of pages in the footer';
33*ff2f7f21SAndreas Gohr$lang['recent']      = 'Recent changes';
34*ff2f7f21SAndreas Gohr$lang['breadcrumbs'] = 'Number of breadcrumbs';
35*ff2f7f21SAndreas Gohr$lang['youarehere']  = 'Hierarchical breadcrumbs';
36*ff2f7f21SAndreas Gohr$lang['typography']  = 'Do typographical replacements';
37*ff2f7f21SAndreas Gohr$lang['htmlok']      = 'Allow embedded HTML';
38*ff2f7f21SAndreas Gohr$lang['phpok']       = 'Allow embedded PHP';
39*ff2f7f21SAndreas Gohr$lang['dformat']     = 'Date format (see PHP\'s <a href="http://www.php.net/date">date</a> function)';
40*ff2f7f21SAndreas Gohr$lang['signature']   = 'Signature';
41*ff2f7f21SAndreas Gohr$lang['toptoclevel'] = 'Top level for table of contents';
42*ff2f7f21SAndreas Gohr$lang['maxtoclevel'] = 'Maximum level for table of contents';
43*ff2f7f21SAndreas Gohr$lang['maxseclevel'] = 'Maximum section edit level';
44*ff2f7f21SAndreas Gohr$lang['camelcase']   = 'Use CamelCase for links';
45*ff2f7f21SAndreas Gohr$lang['deaccent']    = 'Clean pagenames';
46*ff2f7f21SAndreas Gohr$lang['useheading']  = 'Use first heading for pagenames';
47*ff2f7f21SAndreas Gohr$lang['refcheck']    = 'Media reference check';
48*ff2f7f21SAndreas Gohr$lang['refshow']     = 'Number of media references to show';
49*ff2f7f21SAndreas Gohr$lang['allowdebug']  = 'Allow debug <b>disable if not needed!</b>';
502825d176SAndreas Gohr
51*ff2f7f21SAndreas Gohr$lang['usewordblock']= 'Block spam based on wordlist';
52*ff2f7f21SAndreas Gohr$lang['indexdelay']  = 'Time delay before indexing';
53*ff2f7f21SAndreas Gohr$lang['relnofollow'] = 'Use rel="nofollow"';
54*ff2f7f21SAndreas Gohr$lang['mailguard']   = 'Obfuscate email addresses';
552825d176SAndreas Gohr
562825d176SAndreas Gohr/* Authentication Options */
57*ff2f7f21SAndreas Gohr$lang['useacl']      = 'Use access control lists';
58*ff2f7f21SAndreas Gohr$lang['openregister']= 'Allow everyon to register';
59*ff2f7f21SAndreas Gohr$lang['autopasswd']  = 'Autogenerate passwords';
60*ff2f7f21SAndreas Gohr$lang['resendpasswd']= 'Allow resend password';
61*ff2f7f21SAndreas Gohr$lang['authtype']    = 'Authentication backend';
62*ff2f7f21SAndreas Gohr$lang['passcrypt']   = 'Password encryption method';
63*ff2f7f21SAndreas Gohr$lang['defaultgroup']= 'Default group';
64*ff2f7f21SAndreas Gohr$lang['superuser']   = 'Superuser';
65*ff2f7f21SAndreas Gohr$lang['profileconfirm'] = 'Confirm profile changes with password';
6610449332Schris
6710449332Schris/* Advanced Options */
68*ff2f7f21SAndreas Gohr$lang['userewrite']  = 'Use nice URLs';
69*ff2f7f21SAndreas Gohr$lang['useslash']    = 'Use slash as namespace separator in URLs';
70*ff2f7f21SAndreas Gohr$lang['sepchar']     = 'Page name word separator';
71*ff2f7f21SAndreas Gohr$lang['canonical']   = 'Use fully canonical URLs';
72*ff2f7f21SAndreas Gohr$lang['autoplural']  = 'Check for plural forms in links';
73*ff2f7f21SAndreas Gohr$lang['usegzip']     = 'Use gzip (for attic)';
74*ff2f7f21SAndreas Gohr$lang['cachetime']   = 'Maximum age for cache (sec)';
75*ff2f7f21SAndreas Gohr$lang['purgeonadd']  = 'Purge cache when new pages are added';
76*ff2f7f21SAndreas Gohr$lang['locktime']    = 'Maximum age for lock files (sec)';
77*ff2f7f21SAndreas Gohr$lang['notify']      = 'Send change notifications to this email address';
78*ff2f7f21SAndreas Gohr$lang['mailfrom']    = 'Email address to use for automatic mails';
792825d176SAndreas Gohr$lang['gdlib']       = 'GD Lib version';
80*ff2f7f21SAndreas Gohr$lang['im_convert']  = 'Path to ImageMagick\'s convert tool';
81*ff2f7f21SAndreas Gohr$lang['spellchecker']= 'Enable spellchecker';
82*ff2f7f21SAndreas Gohr$lang['subscribers'] = 'Enable page subscription support';
83*ff2f7f21SAndreas Gohr$lang['compress']    = 'Compress CSS and javascript files';
84*ff2f7f21SAndreas Gohr$lang['hidepages']   = 'Hide matching pages (regular expressions)';
85*ff2f7f21SAndreas Gohr$lang['send404']     = 'Send "HTTP 404/Page Not Found" for non existing pages';
86*ff2f7f21SAndreas Gohr$lang['sitemap']     = 'Generate Google sitemap (days)';
8710449332Schris
88*ff2f7f21SAndreas Gohr$lang['rss_type']    = 'XML feed type';
89*ff2f7f21SAndreas Gohr$lang['rss_linkto']  = 'XML feed links to';
9010449332Schris
912825d176SAndreas Gohr/* Target options */
92*ff2f7f21SAndreas Gohr$lang['target____wiki']      = 'Target window for internal links';
93*ff2f7f21SAndreas Gohr$lang['target____interwiki'] = 'Target window for interwiki links';
94*ff2f7f21SAndreas Gohr$lang['target____extern']    = 'Target window for external links';
95*ff2f7f21SAndreas Gohr$lang['target____media']     = 'Target window for media links';
96*ff2f7f21SAndreas Gohr$lang['target____windows']   = 'Target window for windows links';
9710449332Schris
982825d176SAndreas Gohr/* Proxy Options */
99*ff2f7f21SAndreas Gohr$lang['proxy____host'] = 'Proxy servername';
100*ff2f7f21SAndreas Gohr$lang['proxy____port'] = 'Proxy port';
101*ff2f7f21SAndreas Gohr$lang['proxy____user'] = 'Proxy user name';
102*ff2f7f21SAndreas Gohr$lang['proxy____pass'] = 'Proxy password';
103*ff2f7f21SAndreas Gohr$lang['proxy____ssl']  = 'use ssl to connect to Proxy';
10410449332Schris
10510449332Schris/* Safemode Hack */
1062825d176SAndreas Gohr$lang['safemodehack'] = 'enable safemode hack';
107*ff2f7f21SAndreas Gohr$lang['ftp____host'] = 'FTP server for safemode hack';
108*ff2f7f21SAndreas Gohr$lang['ftp____port'] = 'FTP port for safemode hack';
109*ff2f7f21SAndreas Gohr$lang['ftp____user'] = 'FTP user name for safemode hack';
110*ff2f7f21SAndreas Gohr$lang['ftp____pass'] = 'FTP password for safemode hack';
111*ff2f7f21SAndreas Gohr$lang['ftp____root'] = 'FTP root directory for safemode hack';
11210449332Schris
11310449332Schris/* userewrite options */
11410449332Schris$lang['userewrite_o_0'] = 'none';
115*ff2f7f21SAndreas Gohr$lang['userewrite_o_1'] = '.htaccess';
116*ff2f7f21SAndreas Gohr$lang['userewrite_o_2'] = 'DokuWiki internal';
11710449332Schris
1182825d176SAndreas Gohr/* deaccent options */
1192825d176SAndreas Gohr$lang['deaccent_o_0'] = 'off';
1202825d176SAndreas Gohr$lang['deaccent_o_1'] = 'remove accents';
1212825d176SAndreas Gohr$lang['deaccent_o_2'] = 'romanize';
1222825d176SAndreas Gohr
12310449332Schris/* gdlib options */
12420e7ccb0Schris$lang['gdlib_o_0'] = 'GD Lib not available';
125*ff2f7f21SAndreas Gohr$lang['gdlib_o_1'] = 'Version 1.x';
126*ff2f7f21SAndreas Gohr$lang['gdlib_o_2'] = 'Autodetection';
12710449332Schris
12810449332Schris/* rss_type options */
12910449332Schris$lang['rss_type_o_rss']  = 'RSS 0.91';
13010449332Schris$lang['rss_type_o_rss1'] = 'RSS 1.0';
13110449332Schris$lang['rss_type_o_rss2'] = 'RSS 2.0';
13210449332Schris$lang['rss_type_o_atom'] = 'Atom 0.3';
13310449332Schris
13410449332Schris/* rss_linkto options */
135*ff2f7f21SAndreas Gohr$lang['rss_linkto_o_diff']    = 'difference view';
13610449332Schris$lang['rss_linkto_o_page']    = 'the revised page';
13710449332Schris$lang['rss_linkto_o_rev']     = 'list of revisions';
13810449332Schris$lang['rss_linkto_o_current'] = 'the current page';
13910449332Schris
140