settings.php 2.5 KB

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