xref: /dokuwiki/lib/plugins/config/lang/en/lang.php (revision 0664e680351f00b66570479ae0f320f230b5091c)
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$lang['_header_undefined'] = 'Undefined Settings';
26
27/* --- Config Setting Groups --- */
28$lang['_basic'] = 'Basic Settings';
29$lang['_display'] = 'Display Settings';
30$lang['_authentication'] = 'Authentication Settings';
31$lang['_anti_spam'] = 'Anti-Spam Settings';
32$lang['_editing'] = 'Editing Settings';
33$lang['_links'] = 'Link Settings';
34$lang['_media'] = 'Media Settings';
35$lang['_advanced'] = 'Advanced Settings';
36$lang['_network'] = 'Network Settings';
37// The settings group name for plugins and templates can be set with
38// plugin_settings_name and template_settings_name respectively. If one
39// of these lang properties is not set, the group name will be generated
40// from the plugin or template name and the localized suffix.
41$lang['_plugin_sufix'] = 'Plugin Settings';
42$lang['_template_sufix'] = 'Template Settings';
43
44/* --- Undefined Setting Messages --- */
45$lang['_msg_setting_undefined'] = 'No setting metadata.';
46$lang['_msg_setting_no_class'] = 'No setting class.';
47$lang['_msg_setting_no_default'] = 'No default value.';
48
49/* -------------------- Config Options --------------------------- */
50
51$lang['fmode']       = 'File creation mode';
52$lang['dmode']       = 'Directory creation mode';
53$lang['lang']        = 'Language';
54$lang['basedir']     = 'Base directory';
55$lang['baseurl']     = 'Base URL';
56$lang['savedir']     = 'Directory for saving data';
57$lang['start']       = 'Start page name';
58$lang['title']       = 'Wiki title';
59$lang['template']    = 'Template';
60$lang['license']     = 'Under which license should your content be released?';
61$lang['fullpath']    = 'Reveal full path of pages in the footer';
62$lang['recent']      = 'Recent changes';
63$lang['breadcrumbs'] = 'Number of breadcrumbs';
64$lang['youarehere']  = 'Hierarchical breadcrumbs';
65$lang['typography']  = 'Do typographical replacements';
66$lang['htmlok']      = 'Allow embedded HTML';
67$lang['phpok']       = 'Allow embedded PHP';
68$lang['dformat']     = 'Date format (see PHP\'s <a href="http://www.php.net/strftime">strftime</a> function)';
69$lang['signature']   = 'Signature';
70$lang['toptoclevel'] = 'Top level for table of contents';
71$lang['maxtoclevel'] = 'Maximum level for table of contents';
72$lang['maxseclevel'] = 'Maximum section edit level';
73$lang['camelcase']   = 'Use CamelCase for links';
74$lang['deaccent']    = 'Clean pagenames';
75$lang['useheading']  = 'Use first heading for pagenames';
76$lang['refcheck']    = 'Media reference check';
77$lang['refshow']     = 'Number of media references to show';
78$lang['allowdebug']  = 'Allow debug <b>disable if not needed!</b>';
79
80$lang['usewordblock']= 'Block spam based on wordlist';
81$lang['indexdelay']  = 'Time delay before indexing (sec)';
82$lang['relnofollow'] = 'Use rel="nofollow" on external links';
83$lang['mailguard']   = 'Obfuscate email addresses';
84$lang['iexssprotect']= 'Check uploaded files for possibly malicious JavaScript or HTML code';
85$lang['showuseras']  = 'What to display when showing the user that last edited a page';
86
87/* Authentication Options */
88$lang['useacl']      = 'Use access control lists';
89$lang['autopasswd']  = 'Autogenerate passwords';
90$lang['authtype']    = 'Authentication backend';
91$lang['passcrypt']   = 'Password encryption method';
92$lang['defaultgroup']= 'Default group';
93$lang['superuser']   = 'Superuser - group, user or comma separated list user1,@group1,user2 with full access to all pages and functions regardless of the ACL settings';
94$lang['manager']     = 'Manager - group, user or comma separated list user1,@group1,user2 with access to certain management functions';
95$lang['profileconfirm'] = 'Confirm profile changes with password';
96$lang['disableactions'] = 'Disable DokuWiki actions';
97$lang['disableactions_check'] = 'Check';
98$lang['disableactions_subscription'] = 'Subscribe/Unsubscribe';
99$lang['disableactions_nssubscription'] = 'Namespace Subscribe /Unsubscribe';
100$lang['disableactions_wikicode'] = 'View source/Export Raw';
101$lang['disableactions_other'] = 'Other actions (comma separated)';
102$lang['sneaky_index'] = 'By default, DokuWiki will show all namespaces in the index view. Enabling this option will hide those where the user doesn\'t have read permissions. This might result in hiding of accessable subnamespaces. This may make the index unusable with certain ACL setups.';
103$lang['auth_security_timeout'] = 'Authentication Security Timeout (seconds)';
104$lang['securecookie'] = 'Should cookies set via HTTPS only be sent via HTTPS by the browser? Disable this option when only the login of your wiki is secured with SSL but browsing the wiki is done unsecured.';
105
106/* Advanced Options */
107$lang['updatecheck'] = 'Check for updates and security warnings? DokuWiki needs to contact splitbrain.org for this feature.';
108$lang['userewrite']  = 'Use nice URLs';
109$lang['useslash']    = 'Use slash as namespace separator in URLs';
110$lang['usedraft']    = 'Automatically save a draft while editing';
111$lang['sepchar']     = 'Page name word separator';
112$lang['canonical']   = 'Use fully canonical URLs';
113$lang['autoplural']  = 'Check for plural forms in links';
114$lang['compression'] = 'Compression method for attic files';
115$lang['cachetime']   = 'Maximum age for cache (sec)';
116$lang['locktime']    = 'Maximum age for lock files (sec)';
117$lang['fetchsize']   = 'Maximum size (bytes) fetch.php may download from extern';
118$lang['notify']      = 'Send change notifications to this email address';
119$lang['registernotify'] = 'Send info on newly registered users to this email address';
120$lang['mailfrom']    = 'Email address to use for automatic mails';
121$lang['gzip_output'] = 'Use gzip Content-Encoding for xhtml';
122$lang['gdlib']       = 'GD Lib version';
123$lang['im_convert']  = 'Path to ImageMagick\'s convert tool';
124$lang['jpg_quality'] = 'JPG compression quality (0-100)';
125$lang['subscribers'] = 'Enable page subscription support';
126$lang['compress']    = 'Compact CSS and javascript output';
127$lang['hidepages']   = 'Hide matching pages (regular expressions)';
128$lang['send404']     = 'Send "HTTP 404/Page Not Found" for non existing pages';
129$lang['sitemap']     = 'Generate Google sitemap (days)';
130$lang['broken_iua']  = 'Is the ignore_user_abort function broken on your system? This could cause a non working search index. IIS+PHP/CGI is known to be broken. See <a href="http://bugs.splitbrain.org/?do=details&amp;task_id=852">Bug 852</a> for more info.';
131$lang['xsendfile']   = 'Use the X-Sendfile header to let the webserver deliver static files? Your webserver needs to support this.';
132$lang['xmlrpc']      = 'Enable/disable XML-RPC interface.';
133$lang['renderer_xhtml']   = 'Renderer to use for main (xhtml) wiki output';
134$lang['renderer__core']   = '%s (dokuwiki core)';
135$lang['renderer__plugin'] = '%s (plugin)';
136$lang['rememberme'] = 'Allow permanent login cookies (remember me)';
137
138$lang['rss_type']    = 'XML feed type';
139$lang['rss_linkto']  = 'XML feed links to';
140$lang['rss_content'] = 'What to display in the XML feed items?';
141$lang['rss_update']  = 'XML feed update interval (sec)';
142$lang['recent_days'] = 'How many recent changes to keep (days)';
143$lang['rss_show_summary'] = 'XML feed show summary in title';
144
145/* Target options */
146$lang['target____wiki']      = 'Target window for internal links';
147$lang['target____interwiki'] = 'Target window for interwiki links';
148$lang['target____extern']    = 'Target window for external links';
149$lang['target____media']     = 'Target window for media links';
150$lang['target____windows']   = 'Target window for windows links';
151
152/* Proxy Options */
153$lang['proxy____host'] = 'Proxy servername';
154$lang['proxy____port'] = 'Proxy port';
155$lang['proxy____user'] = 'Proxy user name';
156$lang['proxy____pass'] = 'Proxy password';
157$lang['proxy____ssl']  = 'Use ssl to connect to Proxy';
158
159/* Safemode Hack */
160$lang['safemodehack'] = 'Enable safemode hack';
161$lang['ftp____host'] = 'FTP server for safemode hack';
162$lang['ftp____port'] = 'FTP port for safemode hack';
163$lang['ftp____user'] = 'FTP user name for safemode hack';
164$lang['ftp____pass'] = 'FTP password for safemode hack';
165$lang['ftp____root'] = 'FTP root directory for safemode hack';
166
167$lang['license_o_'] = 'None chosen';
168
169/* typography options */
170$lang['typography_o_0'] = 'none';
171$lang['typography_o_1'] = 'Double quotes only';
172$lang['typography_o_2'] = 'All quotes (might not always work)';
173
174/* userewrite options */
175$lang['userewrite_o_0'] = 'none';
176$lang['userewrite_o_1'] = '.htaccess';
177$lang['userewrite_o_2'] = 'DokuWiki internal';
178
179/* deaccent options */
180$lang['deaccent_o_0'] = 'off';
181$lang['deaccent_o_1'] = 'remove accents';
182$lang['deaccent_o_2'] = 'romanize';
183
184/* gdlib options */
185$lang['gdlib_o_0'] = 'GD Lib not available';
186$lang['gdlib_o_1'] = 'Version 1.x';
187$lang['gdlib_o_2'] = 'Autodetection';
188
189/* rss_type options */
190$lang['rss_type_o_rss']   = 'RSS 0.91';
191$lang['rss_type_o_rss1']  = 'RSS 1.0';
192$lang['rss_type_o_rss2']  = 'RSS 2.0';
193$lang['rss_type_o_atom']  = 'Atom 0.3';
194$lang['rss_type_o_atom1'] = 'Atom 1.0';
195
196/* rss_content options */
197$lang['rss_content_o_abstract'] = 'Abstract';
198$lang['rss_content_o_diff']     = 'Unified Diff';
199$lang['rss_content_o_htmldiff'] = 'HTML formatted diff table';
200$lang['rss_content_o_html']     = 'Full HTML page content';
201
202/* rss_linkto options */
203$lang['rss_linkto_o_diff']    = 'difference view';
204$lang['rss_linkto_o_page']    = 'the revised page';
205$lang['rss_linkto_o_rev']     = 'list of revisions';
206$lang['rss_linkto_o_current'] = 'the current page';
207
208/* compression options */
209$lang['compression_o_0']   = 'none';
210$lang['compression_o_gz']  = 'gzip';
211$lang['compression_o_bz2'] = 'bz2';
212
213/* xsendfile header */
214$lang['xsendfile_o_0'] = "don't use";
215$lang['xsendfile_o_1'] = 'Proprietary lighttpd header (before release 1.5)';
216$lang['xsendfile_o_2'] = 'Standard X-Sendfile header';
217$lang['xsendfile_o_3'] = 'Proprietary Nginx X-Accel-Redirect header';
218
219/* Display user info */
220$lang['showuseras_o_loginname']  = 'Login name';
221$lang['showuseras_o_username']   = "User's full name";
222$lang['showuseras_o_email']      = "User's e-mail addresss (obfuscated according to mailguard setting)";
223$lang['showuseras_o_email_link'] = "User's e-mail addresss as a mailto: link";
224