source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/plugins/config/lang/en/lang.php@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 12.2 KB
Line 
1<?php
2/**
3 * english language file
4 *
5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author Christopher Smith <[email protected]>
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$lang['danger'] = 'Danger: Changing this option could make your wiki and the configuration menu inaccessible.';
21$lang['warning'] = 'Warning: Changing this option could cause unintended behaviour.';
22$lang['security'] = 'Security Warning: Changing this option could present a security risk.';
23
24/* --- Config Setting Headers --- */
25$lang['_configuration_manager'] = 'Configuration Manager'; //same as heading in intro.txt
26$lang['_header_dokuwiki'] = 'DokuWiki Settings';
27$lang['_header_plugin'] = 'Plugin Settings';
28$lang['_header_template'] = 'Template Settings';
29$lang['_header_undefined'] = 'Undefined Settings';
30
31/* --- Config Setting Groups --- */
32$lang['_basic'] = 'Basic Settings';
33$lang['_display'] = 'Display Settings';
34$lang['_authentication'] = 'Authentication Settings';
35$lang['_anti_spam'] = 'Anti-Spam Settings';
36$lang['_editing'] = 'Editing Settings';
37$lang['_links'] = 'Link Settings';
38$lang['_media'] = 'Media Settings';
39$lang['_advanced'] = 'Advanced Settings';
40$lang['_network'] = 'Network Settings';
41// The settings group name for plugins and templates can be set with
42// plugin_settings_name and template_settings_name respectively. If one
43// of these lang properties is not set, the group name will be generated
44// from the plugin or template name and the localized suffix.
45$lang['_plugin_sufix'] = 'Plugin Settings';
46$lang['_template_sufix'] = 'Template Settings';
47
48/* --- Undefined Setting Messages --- */
49$lang['_msg_setting_undefined'] = 'No setting metadata.';
50$lang['_msg_setting_no_class'] = 'No setting class.';
51$lang['_msg_setting_no_default'] = 'No default value.';
52
53/* -------------------- Config Options --------------------------- */
54
55$lang['fmode'] = 'File creation mode';
56$lang['dmode'] = 'Directory creation mode';
57$lang['lang'] = 'Interface language';
58$lang['basedir'] = 'Server path (eg. <code>/dokuwiki/</code>). Leave blank for autodetection.';
59$lang['baseurl'] = 'Server URL (eg. <code>http://www.yourserver.com</code>). Leave blank for autodetection.';
60$lang['savedir'] = 'Directory for saving data';
61$lang['start'] = 'Start page name';
62$lang['title'] = 'Wiki title';
63$lang['template'] = 'Template';
64$lang['license'] = 'Under which license should your content be released?';
65$lang['fullpath'] = 'Reveal full path of pages in the footer';
66$lang['recent'] = 'Recent changes';
67$lang['breadcrumbs'] = 'Number of breadcrumbs';
68$lang['youarehere'] = 'Hierarchical breadcrumbs';
69$lang['typography'] = 'Do typographical replacements';
70$lang['htmlok'] = 'Allow embedded HTML';
71$lang['phpok'] = 'Allow embedded PHP';
72$lang['dformat'] = 'Date format (see PHP\'s <a href="http://www.php.net/strftime">strftime</a> function)';
73$lang['signature'] = 'Signature';
74$lang['toptoclevel'] = 'Top level for table of contents';
75$lang['tocminheads'] = 'Minimum amount of headlines that determines whether the TOC is built';
76$lang['maxtoclevel'] = 'Maximum level for table of contents';
77$lang['maxseclevel'] = 'Maximum section edit level';
78$lang['camelcase'] = 'Use CamelCase for links';
79$lang['deaccent'] = 'Clean pagenames';
80$lang['useheading'] = 'Use first heading for pagenames';
81$lang['refcheck'] = 'Media reference check';
82$lang['refshow'] = 'Number of media references to show';
83$lang['allowdebug'] = 'Allow debug <b>disable if not needed!</b>';
84
85$lang['usewordblock']= 'Block spam based on wordlist';
86$lang['indexdelay'] = 'Time delay before indexing (sec)';
87$lang['relnofollow'] = 'Use rel="nofollow" on external links';
88$lang['mailguard'] = 'Obfuscate email addresses';
89$lang['iexssprotect']= 'Check uploaded files for possibly malicious JavaScript or HTML code';
90$lang['showuseras'] = 'What to display when showing the user that last edited a page';
91
92/* Authentication Options */
93$lang['useacl'] = 'Use access control lists';
94$lang['autopasswd'] = 'Autogenerate passwords';
95$lang['authtype'] = 'Authentication backend';
96$lang['passcrypt'] = 'Password encryption method';
97$lang['defaultgroup']= 'Default group';
98$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';
99$lang['manager'] = 'Manager - group, user or comma separated list user1,@group1,user2 with access to certain management functions';
100$lang['profileconfirm'] = 'Confirm profile changes with password';
101$lang['disableactions'] = 'Disable DokuWiki actions';
102$lang['disableactions_check'] = 'Check';
103$lang['disableactions_subscription'] = 'Subscribe/Unsubscribe';
104$lang['disableactions_wikicode'] = 'View source/Export Raw';
105$lang['disableactions_other'] = 'Other actions (comma separated)';
106$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.';
107$lang['auth_security_timeout'] = 'Authentication Security Timeout (seconds)';
108$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.';
109$lang['xmlrpc'] = 'Enable/disable XML-RPC interface.';
110$lang['xmlrpcuser'] = 'Restrict XML-RPC access to the comma separated groups or users given here. Leave empty to give access to everyone.';
111
112/* Advanced Options */
113$lang['updatecheck'] = 'Check for updates and security warnings? DokuWiki needs to contact update.dokuwiki.org for this feature.';
114$lang['userewrite'] = 'Use nice URLs';
115$lang['useslash'] = 'Use slash as namespace separator in URLs';
116$lang['usedraft'] = 'Automatically save a draft while editing';
117$lang['sepchar'] = 'Page name word separator';
118$lang['canonical'] = 'Use fully canonical URLs';
119$lang['fnencode'] = 'Method for encoding non-ASCII filenames.';
120$lang['autoplural'] = 'Check for plural forms in links';
121$lang['compression'] = 'Compression method for attic files';
122$lang['cachetime'] = 'Maximum age for cache (sec)';
123$lang['locktime'] = 'Maximum age for lock files (sec)';
124$lang['fetchsize'] = 'Maximum size (bytes) fetch.php may download from extern';
125$lang['notify'] = 'Send change notifications to this email address';
126$lang['registernotify'] = 'Send info on newly registered users to this email address';
127$lang['mailfrom'] = 'Email address to use for automatic mails';
128$lang['mailprefix'] = 'Email subject prefix to use for automatic mails';
129$lang['gzip_output'] = 'Use gzip Content-Encoding for xhtml';
130$lang['gdlib'] = 'GD Lib version';
131$lang['im_convert'] = 'Path to ImageMagick\'s convert tool';
132$lang['jpg_quality'] = 'JPG compression quality (0-100)';
133$lang['subscribers'] = 'Enable page subscription support';
134$lang['subscribe_time'] = 'Time after which subscription lists and digests are sent (sec); This should be smaller than the time specified in recent_days.';
135$lang['compress'] = 'Compact CSS and javascript output';
136$lang['hidepages'] = 'Hide matching pages (regular expressions)';
137$lang['send404'] = 'Send "HTTP 404/Page Not Found" for non existing pages';
138$lang['sitemap'] = 'Generate Google sitemap (days)';
139$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.';
140$lang['xsendfile'] = 'Use the X-Sendfile header to let the webserver deliver static files? Your webserver needs to support this.';
141$lang['renderer_xhtml'] = 'Renderer to use for main (xhtml) wiki output';
142$lang['renderer__core'] = '%s (dokuwiki core)';
143$lang['renderer__plugin'] = '%s (plugin)';
144$lang['rememberme'] = 'Allow permanent login cookies (remember me)';
145
146$lang['rss_type'] = 'XML feed type';
147$lang['rss_linkto'] = 'XML feed links to';
148$lang['rss_content'] = 'What to display in the XML feed items?';
149$lang['rss_update'] = 'XML feed update interval (sec)';
150$lang['recent_days'] = 'How many recent changes to keep (days)';
151$lang['rss_show_summary'] = 'XML feed show summary in title';
152
153/* Target options */
154$lang['target____wiki'] = 'Target window for internal links';
155$lang['target____interwiki'] = 'Target window for interwiki links';
156$lang['target____extern'] = 'Target window for external links';
157$lang['target____media'] = 'Target window for media links';
158$lang['target____windows'] = 'Target window for windows links';
159
160/* Proxy Options */
161$lang['proxy____host'] = 'Proxy servername';
162$lang['proxy____port'] = 'Proxy port';
163$lang['proxy____user'] = 'Proxy user name';
164$lang['proxy____pass'] = 'Proxy password';
165$lang['proxy____ssl'] = 'Use SSL to connect to proxy';
166$lang['proxy____except'] = 'Regular expression to match URLs for which the proxy should be skipped for.';
167
168/* Safemode Hack */
169$lang['safemodehack'] = 'Enable safemode hack';
170$lang['ftp____host'] = 'FTP server for safemode hack';
171$lang['ftp____port'] = 'FTP port for safemode hack';
172$lang['ftp____user'] = 'FTP user name for safemode hack';
173$lang['ftp____pass'] = 'FTP password for safemode hack';
174$lang['ftp____root'] = 'FTP root directory for safemode hack';
175
176$lang['license_o_'] = 'None chosen';
177
178/* typography options */
179$lang['typography_o_0'] = 'none';
180$lang['typography_o_1'] = 'excluding single quotes';
181$lang['typography_o_2'] = 'including single quotes (might not always work)';
182
183/* userewrite options */
184$lang['userewrite_o_0'] = 'none';
185$lang['userewrite_o_1'] = '.htaccess';
186$lang['userewrite_o_2'] = 'DokuWiki internal';
187
188/* deaccent options */
189$lang['deaccent_o_0'] = 'off';
190$lang['deaccent_o_1'] = 'remove accents';
191$lang['deaccent_o_2'] = 'romanize';
192
193/* gdlib options */
194$lang['gdlib_o_0'] = 'GD Lib not available';
195$lang['gdlib_o_1'] = 'Version 1.x';
196$lang['gdlib_o_2'] = 'Autodetection';
197
198/* rss_type options */
199$lang['rss_type_o_rss'] = 'RSS 0.91';
200$lang['rss_type_o_rss1'] = 'RSS 1.0';
201$lang['rss_type_o_rss2'] = 'RSS 2.0';
202$lang['rss_type_o_atom'] = 'Atom 0.3';
203$lang['rss_type_o_atom1'] = 'Atom 1.0';
204
205/* rss_content options */
206$lang['rss_content_o_abstract'] = 'Abstract';
207$lang['rss_content_o_diff'] = 'Unified Diff';
208$lang['rss_content_o_htmldiff'] = 'HTML formatted diff table';
209$lang['rss_content_o_html'] = 'Full HTML page content';
210
211/* rss_linkto options */
212$lang['rss_linkto_o_diff'] = 'difference view';
213$lang['rss_linkto_o_page'] = 'the revised page';
214$lang['rss_linkto_o_rev'] = 'list of revisions';
215$lang['rss_linkto_o_current'] = 'the current page';
216
217/* compression options */
218$lang['compression_o_0'] = 'none';
219$lang['compression_o_gz'] = 'gzip';
220$lang['compression_o_bz2'] = 'bz2';
221
222/* xsendfile header */
223$lang['xsendfile_o_0'] = "don't use";
224$lang['xsendfile_o_1'] = 'Proprietary lighttpd header (before release 1.5)';
225$lang['xsendfile_o_2'] = 'Standard X-Sendfile header';
226$lang['xsendfile_o_3'] = 'Proprietary Nginx X-Accel-Redirect header';
227
228/* Display user info */
229$lang['showuseras_o_loginname'] = 'Login name';
230$lang['showuseras_o_username'] = "User's full name";
231$lang['showuseras_o_email'] = "User's e-mail addresss (obfuscated according to mailguard setting)";
232$lang['showuseras_o_email_link'] = "User's e-mail addresss as a mailto: link";
233
234/* useheading options */
235$lang['useheading_o_0'] = 'Never';
236$lang['useheading_o_navigation'] = 'Navigation Only';
237$lang['useheading_o_content'] = 'Wiki Content Only';
238$lang['useheading_o_1'] = 'Always';
239
240$lang['readdircache'] = 'Maximum age for readdir cache (sec)';
Note: See TracBrowser for help on using the repository browser.