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