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> 7cd3ed83cSMatthias Schulte * @author Matthias Schulte <dokuwiki@lupo49.de> 88bc5de1fSSchplurtz le Déboulonné * @author Schplurtz le Déboulonné <Schplurtz@laposte.net> 910449332Schris */ 1010449332Schris 1110449332Schris// for admin plugins, the menu prompt to be displayed in the admin menu 1210449332Schris// if set here, the plugin doesn't need to override the getMenuText() method 13262065efSAndreas Gohr$lang['menu'] = 'Configuration Settings'; 1410449332Schris 1510449332Schris$lang['error'] = 'Settings not updated due to an invalid value, please review your changes and resubmit. 1610449332Schris <br />The incorrect value(s) will be shown surrounded by a red border.'; 1710449332Schris$lang['updated'] = 'Settings updated successfully.'; 1810449332Schris$lang['nochoice'] = '(no other choices available)'; 1910449332Schris$lang['locked'] = 'The settings file can not be updated, if this is unintentional, <br /> 2010449332Schris ensure the local settings file name and permissions are correct.'; 2110449332Schris 2264e4ebedSAndreas Gohr$lang['danger'] = 'Danger: Changing this option could make your wiki and the configuration menu inaccessible.'; 237ed33b2aSAnika Henke$lang['warning'] = 'Warning: Changing this option could cause unintended behaviour.'; 247ed33b2aSAnika Henke$lang['security'] = 'Security Warning: Changing this option could present a security risk.'; 257ed33b2aSAnika Henke 264fa2dffcSBen Coburn/* --- Config Setting Headers --- */ 274fa2dffcSBen Coburn$lang['_configuration_manager'] = 'Configuration Manager'; //same as heading in intro.txt 28cd3ed83cSMatthias Schulte$lang['_header_dokuwiki'] = 'DokuWiki'; 29cd3ed83cSMatthias Schulte$lang['_header_plugin'] = 'Plugin'; 30cd3ed83cSMatthias Schulte$lang['_header_template'] = 'Template'; 31685bdd2eSBen Coburn$lang['_header_undefined'] = 'Undefined Settings'; 324fa2dffcSBen Coburn 334fa2dffcSBen Coburn/* --- Config Setting Groups --- */ 34cd3ed83cSMatthias Schulte$lang['_basic'] = 'Basic'; 35cd3ed83cSMatthias Schulte$lang['_display'] = 'Display'; 36cd3ed83cSMatthias Schulte$lang['_authentication'] = 'Authentication'; 37cd3ed83cSMatthias Schulte$lang['_anti_spam'] = 'Anti-Spam'; 38cd3ed83cSMatthias Schulte$lang['_editing'] = 'Editing'; 39cd3ed83cSMatthias Schulte$lang['_links'] = 'Links'; 40cd3ed83cSMatthias Schulte$lang['_media'] = 'Media'; 41cd3ed83cSMatthias Schulte$lang['_notifications'] = 'Notification'; 42cd3ed83cSMatthias Schulte$lang['_syndication'] = 'Syndication (RSS)'; 43cd3ed83cSMatthias Schulte$lang['_advanced'] = 'Advanced'; 44cd3ed83cSMatthias Schulte$lang['_network'] = 'Network'; 4510449332Schris 46685bdd2eSBen Coburn/* --- Undefined Setting Messages --- */ 47685bdd2eSBen Coburn$lang['_msg_setting_undefined'] = 'No setting metadata.'; 48685bdd2eSBen Coburn$lang['_msg_setting_no_class'] = 'No setting class.'; 497a0ee538SAndreas Gohr$lang['_msg_setting_no_known_class'] = 'Setting class not available.'; 50685bdd2eSBen Coburn$lang['_msg_setting_no_default'] = 'No default value.'; 51685bdd2eSBen Coburn 522825d176SAndreas Gohr/* -------------------- Config Options --------------------------- */ 5310449332Schris 547cd0713eSAndreas Gohr/* Basic Settings */ 55b5cc8f4bSAndreas Gohr$lang['title'] = 'Wiki title aka. your wiki\'s name'; 56b5cc8f4bSAndreas Gohr$lang['start'] = 'Page name to use as the starting point for each namespace'; 570caf582dSAndreas Gohr$lang['lang'] = 'Interface language'; 58b5cc8f4bSAndreas Gohr$lang['template'] = 'Template aka. the design of the wiki.'; 5917c6179bSAndreas Gohr$lang['syntax'] = 'Wiki syntax flavor'; 60*13a62f81SAndreas Gohr$lang['syntax_o_dw'] = 'DokuWiki only'; 61*13a62f81SAndreas Gohr$lang['syntax_o_md'] = 'Markdown only'; 6217c6179bSAndreas Gohr$lang['syntax_o_dw+md'] = 'Both (DokuWiki preferred)'; 6317c6179bSAndreas Gohr$lang['syntax_o_md+dw'] = 'Both (Markdown preferred)'; 6491e90457SAnika Henke$lang['tagline'] = 'Tagline (if template supports it)'; 6591e90457SAnika Henke$lang['sidebar'] = 'Sidebar page name (if template supports it), empty field disables the sidebar'; 66066fee30SAndreas Gohr$lang['license'] = 'Under which license should your content be released?'; 677cd0713eSAndreas Gohr$lang['savedir'] = 'Directory for saving data'; 687cd0713eSAndreas Gohr$lang['basedir'] = 'Server path (eg. <code>/dokuwiki/</code>). Leave blank for autodetection.'; 697cd0713eSAndreas Gohr$lang['baseurl'] = 'Server URL (eg. <code>http://www.yourserver.com</code>). Leave blank for autodetection.'; 707cd0713eSAndreas Gohr$lang['cookiedir'] = 'Cookie path. Leave blank for using baseurl.'; 717cd0713eSAndreas Gohr$lang['dmode'] = 'Directory creation mode'; 727cd0713eSAndreas Gohr$lang['fmode'] = 'File creation mode'; 73919c95beSMatt Perry$lang['allowdebug'] = 'Allow debug. <b>Disable if not needed!</b>'; 747cd0713eSAndreas Gohr 757cd0713eSAndreas Gohr/* Display Settings */ 76b5cc8f4bSAndreas Gohr$lang['recent'] = 'Number of entries per page in the recent changes'; 777cd0713eSAndreas Gohr$lang['recent_days'] = 'How many recent changes to keep (days)'; 78b5cc8f4bSAndreas Gohr$lang['breadcrumbs'] = 'Number of "trace" breadcrumbs. Set to 0 to disable.'; 79b5cc8f4bSAndreas Gohr$lang['youarehere'] = 'Use hierarchical breadcrumbs (you probably want to disable the above option then)'; 80ff2f7f21SAndreas Gohr$lang['fullpath'] = 'Reveal full path of pages in the footer'; 81ff2f7f21SAndreas Gohr$lang['typography'] = 'Do typographical replacements'; 8259752844SAnders Sandblad$lang['dformat'] = 'Date format (see PHP\'s <a href="http://php.net/strftime">strftime</a> function)'; 83b5cc8f4bSAndreas Gohr$lang['signature'] = 'What to insert with the signature button in the editor'; 847cd0713eSAndreas Gohr$lang['showuseras'] = 'What to display when showing the user that last edited a page'; 85ff2f7f21SAndreas Gohr$lang['toptoclevel'] = 'Top level for table of contents'; 86c69534d4SAnika Henke$lang['tocminheads'] = 'Minimum amount of headlines that determines whether the TOC is built'; 87ff2f7f21SAndreas Gohr$lang['maxtoclevel'] = 'Maximum level for table of contents'; 88ff2f7f21SAndreas Gohr$lang['maxseclevel'] = 'Maximum section edit level'; 89ff2f7f21SAndreas Gohr$lang['camelcase'] = 'Use CamelCase for links'; 90b5cc8f4bSAndreas Gohr$lang['deaccent'] = 'How to clean pagenames'; 91ff2f7f21SAndreas Gohr$lang['useheading'] = 'Use first heading for pagenames'; 92b5cc8f4bSAndreas Gohr$lang['sneaky_index'] = 'By default, DokuWiki will show all namespaces in the sitemap. Enabling this option will hide those where the user doesn\'t have read permissions. This might result in hiding of accessable subnamespaces which may make the index unusable with certain ACL setups.'; 937a61cb65SMatt Perry$lang['hidepages'] = 'Hide pages matching this regular expression from search, the sitemap and other automatic indexes'; 942825d176SAndreas Gohr 957cd0713eSAndreas Gohr/* Authentication Settings */ 96ff2f7f21SAndreas Gohr$lang['useacl'] = 'Use access control lists'; 97ff2f7f21SAndreas Gohr$lang['autopasswd'] = 'Autogenerate passwords'; 98ff2f7f21SAndreas Gohr$lang['authtype'] = 'Authentication backend'; 99ff2f7f21SAndreas Gohr$lang['passcrypt'] = 'Password encryption method'; 100b5cc8f4bSAndreas Gohr$lang['defaultgroup']= 'Default group, all new users will be placed in this group'; 101ada32d75SGuy Brand$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'; 102ada32d75SGuy Brand$lang['manager'] = 'Manager - group, user or comma separated list user1,@group1,user2 with access to certain management functions'; 103ff2f7f21SAndreas Gohr$lang['profileconfirm'] = 'Confirm profile changes with password'; 1047cd0713eSAndreas Gohr$lang['rememberme'] = 'Allow permanent login cookies (remember me)'; 105306ca8aaSchris$lang['disableactions'] = 'Disable DokuWiki actions'; 106306ca8aaSchris$lang['disableactions_check'] = 'Check'; 107306ca8aaSchris$lang['disableactions_subscription'] = 'Subscribe/Unsubscribe'; 108306ca8aaSchris$lang['disableactions_wikicode'] = 'View source/Export Raw'; 1092a7abf2dSChristopher Smith$lang['disableactions_profile_delete'] = 'Delete Own Account'; 110306ca8aaSchris$lang['disableactions_other'] = 'Other actions (comma separated)'; 111faa51292SAndreas Gohr$lang['disableactions_rss'] = 'XML Syndication (RSS)'; 1124c989037SChris Smith$lang['auth_security_timeout'] = 'Authentication Security Timeout (seconds)'; 113f5c6743cSAndreas Gohr$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.'; 114486f82fcSAndreas Gohr$lang['samesitecookie'] = 'The samesite cookie attribute to use. Leaving it empty will let the browser decide on the samesite policy.'; 115f914ba96SAndreas Gohr$lang['remote'] = 'Enable the remote API system. This allows other applications to access the wiki via XML-RPC or other mechanisms.'; 116f914ba96SAndreas Gohr$lang['remoteuser'] = 'Restrict remote API access to the comma separated groups or users given here. Leave empty to give access to everyone.'; 1173df364a3STimo Richter$lang['remotecors'] = 'Enable Cross-Origin Resource Sharing (CORS) for the remote interfaces. Asterisk (*) to allow all origins. Leave empty to deny CORS.'; 11810449332Schris 1197cd0713eSAndreas Gohr/* Anti-Spam Settings */ 1207cd0713eSAndreas Gohr$lang['usewordblock']= 'Block spam based on wordlist'; 121e50efeb7SWes from StarArmy.com$lang['relnofollow'] = 'Use rel="ugc nofollow" on external links'; 1227cd0713eSAndreas Gohr$lang['indexdelay'] = 'Time delay before indexing (sec)'; 1237cd0713eSAndreas Gohr$lang['mailguard'] = 'Obfuscate email addresses'; 1247cd0713eSAndreas Gohr$lang['iexssprotect']= 'Check uploaded files for possibly malicious JavaScript or HTML code'; 1257cd0713eSAndreas Gohr 1267cd0713eSAndreas Gohr/* Editing Settings */ 12717e7a281SBen Coburn$lang['usedraft'] = 'Automatically save a draft while editing'; 128ff2f7f21SAndreas Gohr$lang['locktime'] = 'Maximum age for lock files (sec)'; 1297cd0713eSAndreas Gohr$lang['cachetime'] = 'Maximum age for cache (sec)'; 13010449332Schris 1317cd0713eSAndreas Gohr/* Link settings */ 132ff2f7f21SAndreas Gohr$lang['target____wiki'] = 'Target window for internal links'; 133ff2f7f21SAndreas Gohr$lang['target____interwiki'] = 'Target window for interwiki links'; 134ff2f7f21SAndreas Gohr$lang['target____extern'] = 'Target window for external links'; 135ff2f7f21SAndreas Gohr$lang['target____media'] = 'Target window for media links'; 136ff2f7f21SAndreas Gohr$lang['target____windows'] = 'Target window for windows links'; 13710449332Schris 1387cd0713eSAndreas Gohr/* Media Settings */ 1397cd0713eSAndreas Gohr$lang['mediarevisions'] = 'Enable Mediarevisions?'; 140b5cc8f4bSAndreas Gohr$lang['refcheck'] = 'Check if a media file is still in use before deleting it'; 1417cd0713eSAndreas Gohr$lang['gdlib'] = 'GD Lib version'; 1427cd0713eSAndreas Gohr$lang['im_convert'] = 'Path to ImageMagick\'s convert tool'; 1437cd0713eSAndreas Gohr$lang['jpg_quality'] = 'JPG compression quality (0-100)'; 144b5cc8f4bSAndreas Gohr$lang['fetchsize'] = 'Maximum size (bytes) fetch.php may download from external URLs, eg. to cache and resize external images.'; 1457cd0713eSAndreas Gohr 1467cd0713eSAndreas Gohr/* Notification Settings */ 1477cd0713eSAndreas Gohr$lang['subscribers'] = 'Allow users to subscribe to page changes by email'; 1487cd0713eSAndreas Gohr$lang['subscribe_time'] = 'Time after which subscription lists and digests are sent (sec); This should be smaller than the time specified in recent_days.'; 149b5cc8f4bSAndreas Gohr$lang['notify'] = 'Always send change notifications to this email address'; 150b5cc8f4bSAndreas Gohr$lang['registernotify'] = 'Always send info on newly registered users to this email address'; 151b5cc8f4bSAndreas Gohr$lang['mailfrom'] = 'Sender email address to use for automatic mails'; 1525f43dcf4SLukas Rademacher$lang['mailreturnpath'] = 'Recipient email address for non delivery notifications'; 153b5cc8f4bSAndreas Gohr$lang['mailprefix'] = 'Email subject prefix to use for automatic mails. Leave blank to use the wiki title'; 1548aea6381SAndreas Gohr$lang['htmlmail'] = 'Send better looking, but larger in size HTML multipart emails. Disable for plain text only mails.'; 155cad4fbf6SAndreas Gohr$lang['dontlog'] = 'Disable logging for these types of logs.'; 156df9e4a18SAndreas Gohr$lang['logretain'] = 'How many days of logs to keep.'; 1577cd0713eSAndreas Gohr 1587cd0713eSAndreas Gohr/* Syndication Settings */ 159b5cc8f4bSAndreas Gohr$lang['sitemap'] = 'Generate Google sitemap this often (in days). 0 to disable'; 1607cd0713eSAndreas Gohr$lang['rss_type'] = 'XML feed type'; 1617cd0713eSAndreas Gohr$lang['rss_linkto'] = 'XML feed links to'; 1627cd0713eSAndreas Gohr$lang['rss_content'] = 'What to display in the XML feed items?'; 1637cd0713eSAndreas Gohr$lang['rss_update'] = 'XML feed update interval (sec)'; 1647cd0713eSAndreas Gohr$lang['rss_show_summary'] = 'XML feed show summary in title'; 1657b299f22SAurélien Martin$lang['rss_show_deleted'] = 'XML feed Show deleted feeds'; 1667cd0713eSAndreas Gohr$lang['rss_media'] = 'What kind of changes should be listed in the XML feed?'; 1678bc5de1fSSchplurtz le Déboulonné$lang['rss_media_o_both'] = 'both'; 1688bc5de1fSSchplurtz le Déboulonné$lang['rss_media_o_pages'] = 'pages'; 1698bc5de1fSSchplurtz le Déboulonné$lang['rss_media_o_media'] = 'media'; 1708bc5de1fSSchplurtz le Déboulonné 1717cd0713eSAndreas Gohr 1727cd0713eSAndreas Gohr/* Advanced Options */ 1737cd0713eSAndreas Gohr$lang['updatecheck'] = 'Check for updates and security warnings? DokuWiki needs to contact update.dokuwiki.org for this feature.'; 1747cd0713eSAndreas Gohr$lang['userewrite'] = 'Use nice URLs'; 1757cd0713eSAndreas Gohr$lang['useslash'] = 'Use slash as namespace separator in URLs'; 1767cd0713eSAndreas Gohr$lang['sepchar'] = 'Page name word separator'; 1777cd0713eSAndreas Gohr$lang['canonical'] = 'Use fully canonical URLs'; 1787cd0713eSAndreas Gohr$lang['fnencode'] = 'Method for encoding non-ASCII filenames.'; 1797cd0713eSAndreas Gohr$lang['autoplural'] = 'Check for plural forms in links'; 1807cd0713eSAndreas Gohr$lang['compression'] = 'Compression method for attic files'; 1817cd0713eSAndreas Gohr$lang['gzip_output'] = 'Use gzip Content-Encoding for xhtml'; 1827cd0713eSAndreas Gohr$lang['compress'] = 'Compact CSS and javascript output'; 1838f709990SAnika Henke$lang['cssdatauri'] = 'Size in bytes up to which images referenced in CSS files should be embedded right into the stylesheet to reduce HTTP request header overhead. <code>400</code> to <code>600</code> bytes is a good value. Set <code>0</code> to disable.'; 1847cd0713eSAndreas Gohr$lang['send404'] = 'Send "HTTP 404/Page Not Found" for non existing pages'; 185efc7c022SMichael Sy$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.'; 1867cd0713eSAndreas Gohr$lang['xsendfile'] = 'Use the X-Sendfile header to let the webserver deliver static files? Your webserver needs to support this.'; 1877cd0713eSAndreas Gohr$lang['renderer_xhtml'] = 'Renderer to use for main (xhtml) wiki output'; 1887cd0713eSAndreas Gohr$lang['renderer__core'] = '%s (dokuwiki core)'; 1897cd0713eSAndreas Gohr$lang['renderer__plugin'] = '%s (plugin)'; 19013ce475dSAndreas Gohr$lang['search_nslimit'] = 'Limit the search to the current X namespaces. When a search is executed from a page within a deeper namespace, the first X namespaces will be added as filter'; 19113ce475dSAndreas Gohr$lang['search_fragment'] = 'Specify the default fragment search behavior'; 19213ce475dSAndreas Gohr$lang['search_fragment_o_exact'] = 'exact'; 19313ce475dSAndreas Gohr$lang['search_fragment_o_starts_with'] = 'starts with'; 19413ce475dSAndreas Gohr$lang['search_fragment_o_ends_with'] = 'ends with'; 19513ce475dSAndreas Gohr$lang['search_fragment_o_contains'] = 'contains'; 1967cd0713eSAndreas Gohr 197fc6b11d2SMichael Große$lang['_feature_flags'] = 'Feature Flags'; 198fc6b11d2SMichael Große$lang['defer_js'] = 'Defer javascript to be execute after the page\'s HTML has been parsed. Improves perceived page speed but could break a small number of plugins.'; 199be6462f4SAndreas Gohr$lang['hidewarnings'] = 'Do not display any warnings issued by PHP. This may ease the transisition to PHP8+. Warnings will still be logged in the error log and should be reported.'; 200fc6b11d2SMichael Große 20122ef1e32SAndreas Gohr/* Network Options */ 20222ef1e32SAndreas Gohr$lang['dnslookups'] = 'DokuWiki will lookup hostnames for remote IP addresses of users editing pages. If you have a slow or non working DNS server or don\'t want this feature, disable this option'; 203fa078663SAndreas Gohr$lang['jquerycdn'] = 'Should the jQuery and jQuery UI script files be loaded from a CDN? This adds additional HTTP requests, but files may load faster and users may have them cached already.'; 20419d5ba27SAndreas Gohr$lang['trustedproxies'] = 'Comma-separated list of trusted proxy servers from which to read the X-Forwarded-For header. Each item in the array may be either an IPv4 or IPv6 address, or an IPv4 or IPv6 CIDR range (e.g. 10.0.0.0/8). Leave empty to trust no proxy.'; 20519d5ba27SAndreas Gohr$lang['realip'] = 'Trust the X-Real-IP header. Only enable this if your server writes this header, otherwise it may be spoofed.'; 206fa078663SAndreas Gohr 207fa078663SAndreas Gohr/* jQuery CDN options */ 208fa078663SAndreas Gohr$lang['jquerycdn_o_0'] = 'No CDN, local delivery only'; 209fa078663SAndreas Gohr$lang['jquerycdn_o_jquery'] = 'CDN at code.jquery.com'; 210fa078663SAndreas Gohr$lang['jquerycdn_o_cdnjs'] = 'CDN at cdnjs.com'; 21122ef1e32SAndreas Gohr 2122825d176SAndreas Gohr/* Proxy Options */ 213ff2f7f21SAndreas Gohr$lang['proxy____host'] = 'Proxy servername'; 214ff2f7f21SAndreas Gohr$lang['proxy____port'] = 'Proxy port'; 215ff2f7f21SAndreas Gohr$lang['proxy____user'] = 'Proxy user name'; 216ff2f7f21SAndreas Gohr$lang['proxy____pass'] = 'Proxy password'; 217fd4b6351SAndreas Gohr$lang['proxy____ssl'] = 'Use SSL to connect to proxy'; 218a44e6f80SMatt Perry$lang['proxy____except'] = 'Regular expression to match URLs for which the proxy should be skipped.'; 21910449332Schris 2207cd0713eSAndreas Gohr/* License Options */ 221066fee30SAndreas Gohr$lang['license_o_'] = 'None chosen'; 222066fee30SAndreas Gohr 2239426a41aSAndreas Gohr/* typography options */ 2249426a41aSAndreas Gohr$lang['typography_o_0'] = 'none'; 225078467f9SAnika Henke$lang['typography_o_1'] = 'excluding single quotes'; 226078467f9SAnika Henke$lang['typography_o_2'] = 'including single quotes (might not always work)'; 2279426a41aSAndreas Gohr 22810449332Schris/* userewrite options */ 22910449332Schris$lang['userewrite_o_0'] = 'none'; 230ff2f7f21SAndreas Gohr$lang['userewrite_o_1'] = '.htaccess'; 231ff2f7f21SAndreas Gohr$lang['userewrite_o_2'] = 'DokuWiki internal'; 23210449332Schris 2332825d176SAndreas Gohr/* deaccent options */ 2342825d176SAndreas Gohr$lang['deaccent_o_0'] = 'off'; 2352825d176SAndreas Gohr$lang['deaccent_o_1'] = 'remove accents'; 2362825d176SAndreas Gohr$lang['deaccent_o_2'] = 'romanize'; 2372825d176SAndreas Gohr 23810449332Schris/* gdlib options */ 23920e7ccb0Schris$lang['gdlib_o_0'] = 'GD Lib not available'; 240ff2f7f21SAndreas Gohr$lang['gdlib_o_1'] = 'Version 1.x'; 241ff2f7f21SAndreas Gohr$lang['gdlib_o_2'] = 'Autodetection'; 24210449332Schris 24310449332Schris/* rss_type options */ 24410449332Schris$lang['rss_type_o_rss'] = 'RSS 0.91'; 24510449332Schris$lang['rss_type_o_rss1'] = 'RSS 1.0'; 24610449332Schris$lang['rss_type_o_rss2'] = 'RSS 2.0'; 24710449332Schris$lang['rss_type_o_atom'] = 'Atom 0.3'; 2484ab889eaSAndreas Gohr$lang['rss_type_o_atom1'] = 'Atom 1.0'; 2494ab889eaSAndreas Gohr 2504ab889eaSAndreas Gohr/* rss_content options */ 2514ab889eaSAndreas Gohr$lang['rss_content_o_abstract'] = 'Abstract'; 2524ab889eaSAndreas Gohr$lang['rss_content_o_diff'] = 'Unified Diff'; 2534ab889eaSAndreas Gohr$lang['rss_content_o_htmldiff'] = 'HTML formatted diff table'; 2544ab889eaSAndreas Gohr$lang['rss_content_o_html'] = 'Full HTML page content'; 25510449332Schris 25610449332Schris/* rss_linkto options */ 257ff2f7f21SAndreas Gohr$lang['rss_linkto_o_diff'] = 'difference view'; 25810449332Schris$lang['rss_linkto_o_page'] = 'the revised page'; 25910449332Schris$lang['rss_linkto_o_rev'] = 'list of revisions'; 26010449332Schris$lang['rss_linkto_o_current'] = 'the current page'; 26110449332Schris 262fd49f8dfSchris/* compression options */ 263fd49f8dfSchris$lang['compression_o_0'] = 'none'; 264fd49f8dfSchris$lang['compression_o_gz'] = 'gzip'; 265fd49f8dfSchris$lang['compression_o_bz2'] = 'bz2'; 266fd49f8dfSchris 2679a87c72aSAndreas Gohr/* xsendfile header */ 2689a87c72aSAndreas Gohr$lang['xsendfile_o_0'] = "don't use"; 26903305f56SAndreas Gohr$lang['xsendfile_o_1'] = 'Proprietary lighttpd header (before release 1.5)'; 2709a87c72aSAndreas Gohr$lang['xsendfile_o_2'] = 'Standard X-Sendfile header'; 27103305f56SAndreas Gohr$lang['xsendfile_o_3'] = 'Proprietary Nginx X-Accel-Redirect header'; 272dc58b6f4SAndy Webber 273dc58b6f4SAndy Webber/* Display user info */ 274dc58b6f4SAndy Webber$lang['showuseras_o_loginname'] = 'Login name'; 275dc58b6f4SAndy Webber$lang['showuseras_o_username'] = "User's full name"; 2767f081821SGerrit Uitslag$lang['showuseras_o_username_link'] = "User's full name as interwiki user link"; 277dc58b6f4SAndy Webber$lang['showuseras_o_email'] = "User's e-mail addresss (obfuscated according to mailguard setting)"; 278dc58b6f4SAndy Webber$lang['showuseras_o_email_link'] = "User's e-mail addresss as a mailto: link"; 279fe9ec250SChris Smith 280fe9ec250SChris Smith/* useheading options */ 281fe9ec250SChris Smith$lang['useheading_o_0'] = 'Never'; 282fe9ec250SChris Smith$lang['useheading_o_navigation'] = 'Navigation Only'; 283fe9ec250SChris Smith$lang['useheading_o_content'] = 'Wiki Content Only'; 284fe9ec250SChris Smith$lang['useheading_o_1'] = 'Always'; 285fe9ec250SChris Smith 28622952965SYoBoY$lang['readdircache'] = 'Maximum age for readdir cache (sec)'; 287