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