xref: /template/wikiweko/lang/en/settings.php (revision dbba3fd5d0de6350525ab4e6b6e68b8896a78a4e)
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/vector/lang/<your lang>/lang.php"
9 * - "/lib/tpl/vector/lang/<your lang>/settings.php"
10 * If they are not existing, copy and translate the English ones (hint: looking
11 * at <http://[your lang].wikipedia.org> might be helpful). And don't forget to
12 * mail the translation to us, SYN Systems <dokuwiki@dev.syn-systems.com>.
13 * Thanks :-D.
14 *
15 *
16 * LICENSE: This file is open source software (OSS) and may be copied under
17 *          certain conditions. See COPYING file for details or try to contact
18 *          the author(s) of this file in doubt.
19 *
20 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
21 * @author Andreas Haerter <ah@syn-systems.com>
22 * @link http://www.dokuwiki.org/template:vector
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["vector_userpage"]    = "Use User pages?";
35$lang["vector_userpage_ns"] = "If yes, use following ':namespace:' as root for user pages:";
36
37//discussion pages
38$lang["vector_discuss"]    = "Use discussion tabs/sites?";
39$lang["vector_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:";
40
41//site notice
42$lang["vector_sitenotice"]           = "Show site wide notice?";
43$lang["vector_sitenotice_location"]  = "If yes, use following wiki page for the site wide notice:";
44$lang["vector_sitenotice_translate"] = "If yes and <a href=\"http://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific site wide notice?<br />The wiki page of the translated site notice(s) is [value of 'vector_sitenotice_location']_[iso lang code] (e.g. ':wiki:site_notice_de').";
45
46//navigation
47$lang["vector_navigation"]           = "Show navigation?";
48$lang["vector_navigation_location"]  = "If yes, use following wiki page as navigation:";
49$lang["vector_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 'vector_navigation_location']_[iso lang code] (e.g. ':wiki:navigation_de').";
50
51//exportbox ("print/export")
52$lang["vector_exportbox"]          = "Show 'print/export' box?";
53$lang["vector_exportbox_default"]  = "If yes, use default 'print/export' box?";
54$lang["vector_exportbox_location"] = "If not default, use following wiki page as 'print/export' box location:";
55
56//toolbox
57$lang["vector_toolbox"]          = "Show toolbox?";
58$lang["vector_toolbox_default"]  = "If yes, use default toolbox?";
59$lang["vector_toolbox_location"] = "If not default, use following wiki page as toolbox location:";
60
61//qr code box
62$lang["vector_qrcodebox"] = "Show box with QR Code of current wiki page URL (for easy URL transfer to mobile browser)?";
63
64//custom copyright notice
65$lang["vector_copyright"]           = "Show copyright notice?";
66$lang["vector_copyright_default"]   = "If yes, use default copyright notice?";
67$lang["vector_copyright_location"]  = "If not default, use following wiki page as copyright notice:";
68$lang["vector_copyright_translate"] = "If not default and <a href=\"http://www.dokuwiki.org/plugin:translation\">Translation plugin</a> available: load language specific copyright notice?<br />The wiki page of the translated copyright notice(s) is [value of 'vector_copyright_location']_[iso lang code] (e.g. ':wiki:copyright_de').";
69
70//donation link/button
71$lang["vector_donate"]          = "Show donation link/button?";
72$lang["vector_donate_url"]      = "Use following URL for donations:";
73
74//TOC
75$lang["vector_toc_position"] = "Table of contents (TOC) position";
76
77//other stuff
78$lang["vector_breadcrumbs_position"]  = "Position of breadcrumb navigation (if enabled):";
79$lang["vector_youarehere_position"]   = "Position of 'You are here' navigation (if enabled):";
80$lang["vector_cite_author"]           = "Author name in 'Cite this Article':";
81$lang["vector_loaduserjs"]            = "Load 'vector/user/user.js'?";
82$lang["vector_closedwiki"]            = "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?";
83
84