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