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//Setup VIM: ex: et ts=2 : 41