xref: /dokuwiki/lib/plugins/config/lang/en/lang.php (revision 4fa2dffce72d182e25295de4947077cf52ba1f2b)
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
20*4fa2dffcSBen Coburn/* --- Config Setting Headers --- */
21*4fa2dffcSBen Coburn$lang['_configuration_manager'] = 'Configuration Manager'; //same as heading in intro.txt
22*4fa2dffcSBen Coburn$lang['_header_dokuwiki'] = 'DokuWiki Settings';
23*4fa2dffcSBen Coburn$lang['_header_plugin'] = 'Plugin Settings';
24*4fa2dffcSBen Coburn$lang['_header_template'] = 'Template Settings';
25*4fa2dffcSBen Coburn
26*4fa2dffcSBen Coburn/* --- Config Setting Groups --- */
27*4fa2dffcSBen Coburn$lang['_basic'] = 'Basic Settings';
28*4fa2dffcSBen Coburn$lang['_display'] = 'Display Settings';
29*4fa2dffcSBen Coburn$lang['_authentication'] = 'Authentication Settings';
30*4fa2dffcSBen Coburn$lang['_anti_spam'] = 'Anti-Spam Settings';
31*4fa2dffcSBen Coburn$lang['_editing'] = 'Editing Settings';
32*4fa2dffcSBen Coburn$lang['_links'] = 'Link Settings';
33*4fa2dffcSBen Coburn$lang['_advanced'] = 'Advanced Settings';
34*4fa2dffcSBen Coburn$lang['_network'] = 'Network Settings';
35*4fa2dffcSBen Coburn// The settings group name for plugins and templates can be set with
36*4fa2dffcSBen Coburn// plugin_settings_name and template_settings_name respectively. If one
37*4fa2dffcSBen Coburn// of these lang properties is not set, the group name will be generated
38*4fa2dffcSBen Coburn// from the plugin or template name and the localized suffix.
39*4fa2dffcSBen Coburn$lang['_plugin_sufix'] = 'Plugin Settings';
40*4fa2dffcSBen Coburn$lang['_template_sufix'] = 'Template Settings';
4110449332Schris
422825d176SAndreas Gohr/* -------------------- Config Options --------------------------- */
4310449332Schris
44ff2f7f21SAndreas Gohr$lang['fmode']       = 'File creation mode';
45ff2f7f21SAndreas Gohr$lang['dmode']       = 'Directory creation mode';
46ff2f7f21SAndreas Gohr$lang['lang']        = 'Language';
47ff2f7f21SAndreas Gohr$lang['basedir']     = 'Base directory';
48ff2f7f21SAndreas Gohr$lang['baseurl']     = 'Base URL';
49ff2f7f21SAndreas Gohr$lang['savedir']     = 'Directory for saving data';
50ff2f7f21SAndreas Gohr$lang['start']       = 'Start page name';
51ff2f7f21SAndreas Gohr$lang['title']       = 'Wiki title';
52ff2f7f21SAndreas Gohr$lang['template']    = 'Template';
53ff2f7f21SAndreas Gohr$lang['fullpath']    = 'Reveal full path of pages in the footer';
54ff2f7f21SAndreas Gohr$lang['recent']      = 'Recent changes';
55ff2f7f21SAndreas Gohr$lang['breadcrumbs'] = 'Number of breadcrumbs';
56ff2f7f21SAndreas Gohr$lang['youarehere']  = 'Hierarchical breadcrumbs';
57ff2f7f21SAndreas Gohr$lang['typography']  = 'Do typographical replacements';
58ff2f7f21SAndreas Gohr$lang['htmlok']      = 'Allow embedded HTML';
59ff2f7f21SAndreas Gohr$lang['phpok']       = 'Allow embedded PHP';
60ff2f7f21SAndreas Gohr$lang['dformat']     = 'Date format (see PHP\'s <a href="http://www.php.net/date">date</a> function)';
61ff2f7f21SAndreas Gohr$lang['signature']   = 'Signature';
62ff2f7f21SAndreas Gohr$lang['toptoclevel'] = 'Top level for table of contents';
63ff2f7f21SAndreas Gohr$lang['maxtoclevel'] = 'Maximum level for table of contents';
64ff2f7f21SAndreas Gohr$lang['maxseclevel'] = 'Maximum section edit level';
65ff2f7f21SAndreas Gohr$lang['camelcase']   = 'Use CamelCase for links';
66ff2f7f21SAndreas Gohr$lang['deaccent']    = 'Clean pagenames';
67ff2f7f21SAndreas Gohr$lang['useheading']  = 'Use first heading for pagenames';
68ff2f7f21SAndreas Gohr$lang['refcheck']    = 'Media reference check';
69ff2f7f21SAndreas Gohr$lang['refshow']     = 'Number of media references to show';
70ff2f7f21SAndreas Gohr$lang['allowdebug']  = 'Allow debug <b>disable if not needed!</b>';
712825d176SAndreas Gohr
72ff2f7f21SAndreas Gohr$lang['usewordblock']= 'Block spam based on wordlist';
73*4fa2dffcSBen Coburn$lang['indexdelay']  = 'Time delay before indexing (sec)';
74*4fa2dffcSBen Coburn$lang['relnofollow'] = 'Use rel="nofollow" on external links';
75ff2f7f21SAndreas Gohr$lang['mailguard']   = 'Obfuscate email addresses';
762825d176SAndreas Gohr
772825d176SAndreas Gohr/* Authentication Options */
78ff2f7f21SAndreas Gohr$lang['useacl']      = 'Use access control lists';
7917e7a281SBen Coburn$lang['openregister']= 'Allow everyone to register';
80ff2f7f21SAndreas Gohr$lang['autopasswd']  = 'Autogenerate passwords';
81ff2f7f21SAndreas Gohr$lang['resendpasswd']= 'Allow resend password';
82ff2f7f21SAndreas Gohr$lang['authtype']    = 'Authentication backend';
83ff2f7f21SAndreas Gohr$lang['passcrypt']   = 'Password encryption method';
84ff2f7f21SAndreas Gohr$lang['defaultgroup']= 'Default group';
85ff2f7f21SAndreas Gohr$lang['superuser']   = 'Superuser';
86ff2f7f21SAndreas Gohr$lang['profileconfirm'] = 'Confirm profile changes with password';
8710449332Schris
8810449332Schris/* Advanced Options */
89ff2f7f21SAndreas Gohr$lang['userewrite']  = 'Use nice URLs';
90ff2f7f21SAndreas Gohr$lang['useslash']    = 'Use slash as namespace separator in URLs';
9117e7a281SBen Coburn$lang['usedraft']    = 'Automatically save a draft while editing';
92ff2f7f21SAndreas Gohr$lang['sepchar']     = 'Page name word separator';
93ff2f7f21SAndreas Gohr$lang['canonical']   = 'Use fully canonical URLs';
94ff2f7f21SAndreas Gohr$lang['autoplural']  = 'Check for plural forms in links';
95ff2f7f21SAndreas Gohr$lang['usegzip']     = 'Use gzip (for attic)';
96ff2f7f21SAndreas Gohr$lang['cachetime']   = 'Maximum age for cache (sec)';
97ff2f7f21SAndreas Gohr$lang['purgeonadd']  = 'Purge cache when new pages are added';
98ff2f7f21SAndreas Gohr$lang['locktime']    = 'Maximum age for lock files (sec)';
99ff2f7f21SAndreas Gohr$lang['notify']      = 'Send change notifications to this email address';
100ff2f7f21SAndreas Gohr$lang['mailfrom']    = 'Email address to use for automatic mails';
1012825d176SAndreas Gohr$lang['gdlib']       = 'GD Lib version';
102ff2f7f21SAndreas Gohr$lang['im_convert']  = 'Path to ImageMagick\'s convert tool';
103ff2f7f21SAndreas Gohr$lang['spellchecker']= 'Enable spellchecker';
104ff2f7f21SAndreas Gohr$lang['subscribers'] = 'Enable page subscription support';
105ff2f7f21SAndreas Gohr$lang['compress']    = 'Compress CSS and javascript files';
106ff2f7f21SAndreas Gohr$lang['hidepages']   = 'Hide matching pages (regular expressions)';
107ff2f7f21SAndreas Gohr$lang['send404']     = 'Send "HTTP 404/Page Not Found" for non existing pages';
108ff2f7f21SAndreas Gohr$lang['sitemap']     = 'Generate Google sitemap (days)';
10910449332Schris
110ff2f7f21SAndreas Gohr$lang['rss_type']    = 'XML feed type';
111ff2f7f21SAndreas Gohr$lang['rss_linkto']  = 'XML feed links to';
11217e7a281SBen Coburn$lang['rss_update']  = 'XML feed update interval (sec)';
11310449332Schris
1142825d176SAndreas Gohr/* Target options */
115ff2f7f21SAndreas Gohr$lang['target____wiki']      = 'Target window for internal links';
116ff2f7f21SAndreas Gohr$lang['target____interwiki'] = 'Target window for interwiki links';
117ff2f7f21SAndreas Gohr$lang['target____extern']    = 'Target window for external links';
118ff2f7f21SAndreas Gohr$lang['target____media']     = 'Target window for media links';
119ff2f7f21SAndreas Gohr$lang['target____windows']   = 'Target window for windows links';
12010449332Schris
1212825d176SAndreas Gohr/* Proxy Options */
122ff2f7f21SAndreas Gohr$lang['proxy____host'] = 'Proxy servername';
123ff2f7f21SAndreas Gohr$lang['proxy____port'] = 'Proxy port';
124ff2f7f21SAndreas Gohr$lang['proxy____user'] = 'Proxy user name';
125ff2f7f21SAndreas Gohr$lang['proxy____pass'] = 'Proxy password';
126*4fa2dffcSBen Coburn$lang['proxy____ssl']  = 'Use ssl to connect to Proxy';
12710449332Schris
12810449332Schris/* Safemode Hack */
129*4fa2dffcSBen Coburn$lang['safemodehack'] = 'Enable safemode hack';
130ff2f7f21SAndreas Gohr$lang['ftp____host'] = 'FTP server for safemode hack';
131ff2f7f21SAndreas Gohr$lang['ftp____port'] = 'FTP port for safemode hack';
132ff2f7f21SAndreas Gohr$lang['ftp____user'] = 'FTP user name for safemode hack';
133ff2f7f21SAndreas Gohr$lang['ftp____pass'] = 'FTP password for safemode hack';
134ff2f7f21SAndreas Gohr$lang['ftp____root'] = 'FTP root directory for safemode hack';
13510449332Schris
13610449332Schris/* userewrite options */
13710449332Schris$lang['userewrite_o_0'] = 'none';
138ff2f7f21SAndreas Gohr$lang['userewrite_o_1'] = '.htaccess';
139ff2f7f21SAndreas Gohr$lang['userewrite_o_2'] = 'DokuWiki internal';
14010449332Schris
1412825d176SAndreas Gohr/* deaccent options */
1422825d176SAndreas Gohr$lang['deaccent_o_0'] = 'off';
1432825d176SAndreas Gohr$lang['deaccent_o_1'] = 'remove accents';
1442825d176SAndreas Gohr$lang['deaccent_o_2'] = 'romanize';
1452825d176SAndreas Gohr
14610449332Schris/* gdlib options */
14720e7ccb0Schris$lang['gdlib_o_0'] = 'GD Lib not available';
148ff2f7f21SAndreas Gohr$lang['gdlib_o_1'] = 'Version 1.x';
149ff2f7f21SAndreas Gohr$lang['gdlib_o_2'] = 'Autodetection';
15010449332Schris
15110449332Schris/* rss_type options */
15210449332Schris$lang['rss_type_o_rss']  = 'RSS 0.91';
15310449332Schris$lang['rss_type_o_rss1'] = 'RSS 1.0';
15410449332Schris$lang['rss_type_o_rss2'] = 'RSS 2.0';
15510449332Schris$lang['rss_type_o_atom'] = 'Atom 0.3';
15610449332Schris
15710449332Schris/* rss_linkto options */
158ff2f7f21SAndreas Gohr$lang['rss_linkto_o_diff']    = 'difference view';
15910449332Schris$lang['rss_linkto_o_page']    = 'the revised page';
16010449332Schris$lang['rss_linkto_o_rev']     = 'list of revisions';
16110449332Schris$lang['rss_linkto_o_current'] = 'the current page';
16210449332Schris
163