1<?php 2 3/** 4 * English language for the "vector" DokuWiki template 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). 12 * 13 * Don't forget to mail your translation to 14 * Andreas Haerter <development@andreas-haerter.com> 15 * Thanks :-D. 16 * 17 * 18 * LICENSE: This file is open source software (OSS) and may be copied under 19 * certain conditions. See COPYING file for details or try to contact 20 * the author(s) of this file in doubt. 21 * 22 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 23 * @author Andreas Haerter <development@andreas-haerter.com> 24 * @link http://www.dokuwiki.org/template:vector 25 * @link http://www.dokuwiki.org/config:lang 26 * @link http://www.dokuwiki.org/devel:configuration 27 */ 28 29 30//check if we are running within the DokuWiki environment 31if (!defined("DOKU_INC")){ 32 die(); 33} 34 35//tabs, personal tools and special links 36$lang["vector_article"] = "Article"; 37$lang["vector_discussion"] = "Discussion"; 38$lang["vector_read"] = "Read"; 39$lang["vector_edit"] = "Edit"; 40$lang["vector_create"] = "Create"; 41$lang["vector_userpage"] = "User Page"; 42$lang["vector_specialpage"] = "Special Pages"; 43$lang["vector_mytalk"] = "My Talk"; 44$lang["vector_exportodt"] = "Export: ODT"; 45$lang["vector_exportpdf"] = "Export: PDF"; 46$lang["vector_subscribens"] = "Subscribe NS Changes"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs 47$lang["vector_unsubscribens"] = "Unsubscribe NS Changes"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs 48$lang["vector_translations"] = "Languages"; 49 50//headlines for the different bars and boxes 51$lang["vector_navigation"] = "Navigation"; 52$lang["vector_toolbox"] = "Tools"; 53$lang["vector_exportbox"] = "Print/export"; 54$lang["vector_qrcodebox"] = "QR Code"; 55$lang["vector_inotherlanguages"] = "Languages"; 56$lang["vector_printexport"] = "Print/export"; 57$lang["vector_personnaltools"] = "Personal Tools"; 58 59//buttons 60$lang["vector_btn_go"] = "Go"; 61$lang["vector_btn_search"] = "Search"; 62$lang["vector_btn_search_title"] = "Search for this text"; 63 64//exportbox ("print/export") 65$lang["vector_exportbxdef_print"] = "Printable version"; 66$lang["vector_exportbxdef_downloadodt"] = "Download as ODT"; 67$lang["vector_exportbxdef_downloadpdf"] = "Download as PDF"; 68 69//default toolbox 70$lang["vector_toolbxdef_whatlinkshere"] = "What links here"; 71$lang["vector_toolbxdef_upload"] = "Upload file"; 72$lang["vector_toolbxdef_siteindex"] = "Sitemap"; 73$lang["vector_toolboxdef_permanent"] = "Permanent link"; 74$lang["vector_toolboxdef_cite"] = "Cite this page"; 75 76//qr code box 77$lang["vector_qrcodebox_qrcode"] = "QR Code"; 78$lang["vector_qrcodebox_genforcurrentpage"] = "generated for current page"; 79$lang["vector_qrcodebox_urlofcurrentpage"] = "Current page as QR Code (scan for easy mobile access)"; 80 81//cite this article 82$lang["vector_cite_bibdetailsfor"] = "Bibliographic details for"; 83$lang["vector_cite_pagename"] = "Page name"; 84$lang["vector_cite_author"] = "Author"; 85$lang["vector_cite_publisher"] = "Publisher"; 86$lang["vector_cite_dateofrev"] = "Date of this revision"; 87$lang["vector_cite_dateretrieved"] = "Date retrieved"; 88$lang["vector_cite_permurl"] = "Permanent URL"; 89$lang["vector_cite_pageversionid"] = "Page Version ID"; 90$lang["vector_cite_citationstyles"] = "Citation styles for"; 91$lang["vector_cite_checkstandards"] = "Please remember to check your manual of style, standards guide or instructor's guidelines for the exact syntax to suit your needs."; 92$lang["vector_cite_latexusepackagehint"] = "When using the LaTeX package url (\usepackage{url} somewhere in the preamble), which tends to give much more nicely formatted web addresses, the following may be preferred"; 93$lang["vector_cite_retrieved"] = "Retrieved"; 94$lang["vector_cite_from"] = "from"; 95$lang["vector_cite_in"] = "In"; 96$lang["vector_cite_accessed"] = "Accessed"; 97$lang["vector_cite_cited"] = "Cited"; 98$lang["vector_cite_lastvisited"] = "Last visited"; 99$lang["vector_cite_availableat"] = "Available at"; 100$lang["vector_cite_discussionpages"] = "DokuWiki talk pages"; 101$lang["vector_cite_markup"] = "Markup"; 102$lang["vector_cite_result"] = "Result"; 103$lang["vector_cite_thisversion"] = "this version"; 104 105//other 106$lang["vector_search"] = "Search"; 107$lang["vector_accessdenied"] = "Access denied"; 108$lang["vector_fillplaceholder"] = "Please fill or disable this placeholder"; 109$lang["vector_donate"] = "Donate"; 110$lang["vector_mdtemplatefordw"] = "vector template for DokuWiki"; 111$lang["vector_qrcodebtn"] = "QR Code generator"; 112$lang["vector_recentchanges"] = "Recent changes"; 113 114