xref: /plugin/include/lang/en/settings.php (revision 8d13979c0c635dfac29350fc7b2121abb2037082)
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['usernamespace'] = 'namespace for user pages';
25$lang['doindent']      = 'indent included pages relative to the page they get included in';
26$lang['linkonly']      = 'link only to the included page instead of showing the content';
27$lang['title']         = 'use first heading of page in link even if useheading is off (only affects linkonly mode)';
28$lang['pageexists']    = 'do not display a link if the page does not exist (only affects linkonly mode)';
29$lang['parlink']       = 'put a paragraph around the link (only affects linkonly mode)';
30$lang['safeindex']     = 'prevent indexing of metadata from non-public included pages';
31$lang['order']         = 'ordering criteria of includes with multiple pages';
32$lang['order_o_id']    = 'page ID';
33$lang['order_o_title'] = 'title';
34$lang['order_o_created'] = 'creation date';
35$lang['order_o_modified'] = 'modification date';
36$lang['order_o_indexmenu'] = 'custom order with indexmenu syntax';
37$lang['order_o_custom'] = 'custom order with include syntax';
38$lang['rsort']         = 'reverse the sort order of the included pages';
39$lang['depth']         = 'maximum depth of namespace includes, 0 for unlimited depth';
40//Setup VIM: ex: et ts=2 :
41