source: documentation/trunk/packages/templates/greenstone-monobook/lang/en/settings.php@ 30114

Last change on this file since 30114 was 30114, checked in by jmt12, 9 years ago

Updated Greenstone customizations for Detritus, but rearranged to move into separate plugin. Initial checkin of plugins, template, special wiki pages.

File size: 3.6 KB
Line 
1<?php
2
3/**
4 * English language for the Config Manager
5 *
6 * If your language is not/only partially translated or you found an error/typo,
7 * have a look at the following files:
8 * - "/lib/tpl/monobook/lang/<your lang>/lang.php"
9 * - "/lib/tpl/monobook/lang/<your lang>/settings.php"
10 * If they are not existing, copy and translate the English ones. And don't
11 * forget to mail the translation to me,
12 * Andreas Haerter <[email protected]>. Thanks :-D.
13 *
14 *
15 * LICENSE: This file is open source software (OSS) and may be copied under
16 * certain conditions. See COPYING file for details or try to contact
17 * the author(s) of this file in doubt.
18 *
19 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
20 * @author Andreas Haerter <[email protected]>
21 * @link http://andreas-haerter.com/projects/dokuwiki-template-monobook
22 * @link http://www.dokuwiki.org/template:monobook
23 * @link http://www.dokuwiki.org/config:lang
24 * @link http://www.dokuwiki.org/devel:configuration
25 */
26
27
28//check if we are running within the DokuWiki environment
29if (!defined("DOKU_INC")){
30 die();
31}
32
33//user pages
34$lang["monobook_userpage"] = "Use User pages?";
35$lang["monobook_userpage_ns"] = "If yes, use following ':namespace:' as root for user pages:";
36
37//discussion pages
38$lang["monobook_discuss"] = "Use discussion tabs/sites?";
39$lang["monobook_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:";
40
41//site notice
42$lang["monobook_sitenotice"] = "Show site wide notice?";
43$lang["monobook_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
44
45//navigation
46$lang["monobook_navigation"] = "Show navigation?";
47$lang["monobook_navigation_location"] = "If yes, use following wiki page as navigation:";
48$lang["monobook_navigation_translate"] = "If yes and <a href=\"http://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific navigation?<br />The wiki page of the translated navigation(s) is [value of 'monobook_navigation_location']_[iso lang code] (e.g. ':wiki:navigation_de').";
49
50//custom copyright notice
51$lang["monobook_copyright"] = "Show copyright notice?";
52$lang["monobook_copyright_default"] = "If yes, use default copyright notice?";
53$lang["monobook_copyright_location"] = "If not default, use following wiki page as copyright notice:";
54
55//search form
56$lang["monobook_search"] = "Show search form?";
57
58//toolbox
59$lang["monobook_toolbox"] = "Show toolbox?";
60$lang["monobook_toolbox_default"] = "If yes, use default toolbox?";
61$lang["monobook_toolbox_default_print"] = "If default toolbox is used, show printable version link?";
62$lang["monobook_toolbox_location"] = "If not default, use following wiki page as toolbox location:";
63
64//donation link/button
65$lang["monobook_donate"] = "Show donation link/button?";
66$lang["monobook_donate_default"] = "If yes, use default donation target URL?";
67$lang["monobook_donate_url"] = "If not default, use following URL for donations:";
68
69//TOC
70$lang["monobook_toc_position"] = "Table of contents (TOC) position";
71
72//other stuff
73$lang["monobook_breadcrumbs_position"] = "Position of breadcrumb navigation (if enabled):";
74$lang["monobook_youarehere_position"] = "Position of 'You are here' navigation (if enabled):";
75$lang["monobook_cite_author"] = "Author name in 'Cite this Article':";
76$lang["monobook_loaduserjs"] = "Load 'monobook/user/user.js'?";
77$lang["monobook_closedwiki"] = "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?";
78
Note: See TracBrowser for help on using the repository browser.