1<?php
2/**
3 * English language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Esther Brunner <wikidesign@gmail.com>
7 */
8
9// for the configuration manager
10$lang['noheader']      = 'Don\'t show the first header of included pages/sections';
11$lang['firstseconly']  = 'Show only the first section of included pages';
12$lang['showtaglogos']  = 'Show image for first tag';
13$lang['showfooter']    = 'Show info about included page below';
14$lang['showlink']      = 'Link first headline of included page';
15$lang['showpermalink'] = 'Show permalinks below included page';
16$lang['showdate']      = 'Show dates below included page';
17$lang['showmdate']     = 'Show modified dates below included page';
18$lang['showuser']      = 'Show usernames below included page';
19$lang['showcomments']  = 'Show comments below included page (Discussion plugin needed)';
20$lang['showlinkbacks'] = 'Show linkbacks below included page (Linkback Plugin needed)';
21$lang['showtags']      = 'Show tags below included page (Tag Plugin needed)';
22$lang['showeditbtn']   = 'Show edit button';
23$lang['doredirect']    = 'Redirect to the original page after editing the included page';
24$lang['doindent']      = 'Indent included pages relative to the page they get included in';
25$lang['linkonly']      = 'Link only to the included page instead of showing the content';
26$lang['title']         = 'Use first heading of page in link even if useheading is off (only affects linkonly mode)';
27$lang['pageexists']    = 'Do not display a link if the page does not exist (only affects linkonly mode)';
28$lang['parlink']       = 'Put a paragraph around the link (only affects linkonly mode)';
29$lang['safeindex']     = 'Prevent indexing of metadata from non-public included pages';
30$lang['order']         = 'Ordering criteria of includes with multiple pages';
31$lang['order_o_id']    = 'page ID';
32$lang['order_o_title'] = 'title';
33$lang['order_o_created'] = 'creation date';
34$lang['order_o_modified'] = 'modification date';
35$lang['order_o_indexmenu'] = 'custom order with indexmenu syntax';
36$lang['order_o_custom'] = 'custom order with include syntax';
37$lang['rsort']         = 'Reverse the sort order of the included pages';
38$lang['depth']         = 'Maximum depth of namespace includes, 0 for unlimited depth';
39$lang['readmore']       = 'Show or not the \'Read More\' link in case of firstsection only';
40$lang['debugoutput']    = 'Print verbose debug information to the dokuwiki debuglog if the global "allowdebug" option is enabled';
41//Setup VIM: ex: et ts=2 :
42