xref: /template/wikiweko/lang/en/settings.php (revision fa5fcaca4ebbd24e6c8814f25b15de04818f6f42)
1*fa5fcacaSAndreas Haerter<?php
2*fa5fcacaSAndreas Haerter
3*fa5fcacaSAndreas Haerter/**
4*fa5fcacaSAndreas Haerter * English language for the Config Manager
5*fa5fcacaSAndreas Haerter *
6*fa5fcacaSAndreas Haerter * If your language is not/only partially translated or you found an error/typo,
7*fa5fcacaSAndreas Haerter * have a look at the following files:
8*fa5fcacaSAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/lang.php"
9*fa5fcacaSAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/settings.php"
10*fa5fcacaSAndreas Haerter * If they are not existing, copy and translate the English ones (hint: looking
11*fa5fcacaSAndreas Haerter * at <http://[your lang].wikipedia.org> might be helpful). And don't forget to
12*fa5fcacaSAndreas Haerter * mail the translation to me,
13*fa5fcacaSAndreas Haerter * Andreas Haerter <andreas.haerter@dev.mail-node.com>. Thanks :-D.
14*fa5fcacaSAndreas Haerter *
15*fa5fcacaSAndreas Haerter *
16*fa5fcacaSAndreas Haerter * LICENSE: This file is open source software (OSS) and may be copied under
17*fa5fcacaSAndreas Haerter *          certain conditions. See COPYING file for details or try to contact
18*fa5fcacaSAndreas Haerter *          the author(s) of this file in doubt.
19*fa5fcacaSAndreas Haerter *
20*fa5fcacaSAndreas Haerter * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
21*fa5fcacaSAndreas Haerter * @author Andreas Haerter <andreas.haerter@dev.mail-node.com>
22*fa5fcacaSAndreas Haerter * @link http://andreas-haerter.com/projects/dokuwiki-template-vector
23*fa5fcacaSAndreas Haerter * @link http://www.dokuwiki.org/template:vector
24*fa5fcacaSAndreas Haerter * @link http://www.dokuwiki.org/config:lang
25*fa5fcacaSAndreas Haerter * @link http://www.dokuwiki.org/devel:configuration
26*fa5fcacaSAndreas Haerter */
27*fa5fcacaSAndreas Haerter
28*fa5fcacaSAndreas Haerter
29*fa5fcacaSAndreas Haerter//check if we are running within the DokuWiki environment
30*fa5fcacaSAndreas Haerterif (!defined("DOKU_INC")){
31*fa5fcacaSAndreas Haerter    die();
32*fa5fcacaSAndreas Haerter}
33*fa5fcacaSAndreas Haerter
34*fa5fcacaSAndreas Haerter//user pages
35*fa5fcacaSAndreas Haerter$lang["vector_userpage"]    = "Use User pages?";
36*fa5fcacaSAndreas Haerter$lang["vector_userpage_ns"] = "If yes, use following ':namespace:' as root for user pages:";
37*fa5fcacaSAndreas Haerter
38*fa5fcacaSAndreas Haerter//discussion pages
39*fa5fcacaSAndreas Haerter$lang["vector_discuss"]    = "Use discussion tabs/sites?";
40*fa5fcacaSAndreas Haerter$lang["vector_discuss_ns"] = "If yes, use following ':namespace:' as root for discussions:";
41*fa5fcacaSAndreas Haerter
42*fa5fcacaSAndreas Haerter//site notice
43*fa5fcacaSAndreas Haerter$lang["vector_sitenotice"]          = "Show site wide notice?";
44*fa5fcacaSAndreas Haerter$lang["vector_sitenotice_location"] = "If yes, use following wiki page for the site wide notice:";
45*fa5fcacaSAndreas Haerter
46*fa5fcacaSAndreas Haerter//navigation
47*fa5fcacaSAndreas Haerter$lang["vector_navigation"]          = "Show navigation?";
48*fa5fcacaSAndreas Haerter$lang["vector_navigation_location"] = "If yes, use following wiki page as navigation:";
49*fa5fcacaSAndreas Haerter
50*fa5fcacaSAndreas Haerter//exportbox ("print/export")
51*fa5fcacaSAndreas Haerter$lang["vector_exportbox"]          = "Show 'print/export' box?";
52*fa5fcacaSAndreas Haerter$lang["vector_exportbox_default"]  = "If yes, use default 'print/export' box?";
53*fa5fcacaSAndreas Haerter$lang["vector_exportbox_location"] = "If not default, use following wiki page as 'print/export' box location:";
54*fa5fcacaSAndreas Haerter
55*fa5fcacaSAndreas Haerter//toolbox
56*fa5fcacaSAndreas Haerter$lang["vector_toolbox"]          = "Show toolbox?";
57*fa5fcacaSAndreas Haerter$lang["vector_toolbox_default"]  = "If yes, use default toolbox?";
58*fa5fcacaSAndreas Haerter$lang["vector_toolbox_location"] = "If not default, use following wiki page as toolbox location:";
59*fa5fcacaSAndreas Haerter
60*fa5fcacaSAndreas Haerter//custom copyright notice
61*fa5fcacaSAndreas Haerter$lang["vector_copyright"]          = "Show copyright notice?";
62*fa5fcacaSAndreas Haerter$lang["vector_copyright_default"]  = "If yes, use default copyright notice?";
63*fa5fcacaSAndreas Haerter$lang["vector_copyright_location"] = "If not default, use following wiki page as copyright notice:";
64*fa5fcacaSAndreas Haerter
65*fa5fcacaSAndreas Haerter//donation link/button
66*fa5fcacaSAndreas Haerter$lang["vector_donate"]          = "Show donation link/button?";
67*fa5fcacaSAndreas Haerter$lang["vector_donate_default"]  = "If yes, use default donation target URL?";
68*fa5fcacaSAndreas Haerter$lang["vector_donate_url"]      = "If not default, use following URL for donations:";
69*fa5fcacaSAndreas Haerter
70*fa5fcacaSAndreas Haerter//TOC
71*fa5fcacaSAndreas Haerter$lang["vector_toc_position"] = "Table of contents (TOC) position";
72*fa5fcacaSAndreas Haerter
73*fa5fcacaSAndreas Haerter//other stuff
74*fa5fcacaSAndreas Haerter$lang["vector_mediamanager_embedded"] = "Display mediamanger embedded within the common layout?";
75*fa5fcacaSAndreas Haerter$lang["vector_breadcrumbs_position"]  = "Position of breadcrumb navigation (if enabled):";
76*fa5fcacaSAndreas Haerter$lang["vector_youarehere_position"]   = "Position of 'You are here' navigation (if enabled):";
77*fa5fcacaSAndreas Haerter$lang["vector_cite_author"]           = "Author name in 'Cite this Article':";
78*fa5fcacaSAndreas Haerter$lang["vector_loaduserjs"]            = "Load 'vector/user/user.js'?";
79*fa5fcacaSAndreas Haerter$lang["vector_closedwiki"]            = "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?";
80*fa5fcacaSAndreas Haerter
81