1<?php 2 3/** 4 * English language for the "monobook" 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/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. 11 * 12 * Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.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 ARSAVA <dokuwiki@dev.arsava.com> 22 * @link https://www.dokuwiki.org/template:monobook 23 * @link https://www.dokuwiki.org/config:lang 24 * @link https://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//tabs 34$lang["monobook_tab_article"] = "Article"; 35$lang["monobook_tab_discussion"] = "Discussion"; 36$lang["monobook_tab_userpage"] = "User Page"; 37$lang["monobook_tab_specialpage"] = "Special Pages"; 38$lang["monobook_tab_mytalk"] = "My Talk"; 39$lang["monobook_tab_exportodt"] = "Export: ODT"; 40$lang["monobook_tab_exportpdf"] = "Export: PDF"; 41 42//headlines for the different bars 43$lang["monobook_bar_views"] = "Views"; 44$lang["monobook_bar_personnaltools"] = "Personal Tools"; 45$lang["monobook_bar_navigation"] = "Navigation"; 46$lang["monobook_bar_toolbox"] = "Toolbox"; 47$lang["monobook_qrcodebox"] = "QR Code"; 48$lang["monobook_bar_inotherlanguages"] = "In Other Languages"; 49$lang["monobook_bar_search"] = "Search"; 50 51//buttons 52$lang["monobook_btn_go"] = "Go"; 53$lang["monobook_btn_search"] = "Search"; 54 55//default toolbox 56$lang["monobook_toolbxdef_whatlinkshere"] = "What links here"; 57$lang["monobook_toolbxdef_upload"] = "Upload file"; 58$lang["monobook_toolbxdef_siteindex"] = "Site index"; 59$lang["monobook_toolbxdef_print"] = "Printable version"; 60$lang["monobook_toolboxdef_permanent"] = "Permanent link"; 61$lang["monobook_toolboxdef_cite"] = "Cite this article"; 62 63//qr code box 64$lang["monobook_qrcodebox_qrcode"] = "QR Code"; 65$lang["monobook_qrcodebox_genforcurrentpage"] = "generated for current page"; 66$lang["monobook_qrcodebox_urlofcurrentpage"] = "Current page as QR Code (scan for easy mobile access)"; 67 68//cite this article 69$lang["monobook_cite_bibdetailsfor"] = "Bibliographic details for"; 70$lang["monobook_cite_pagename"] = "Page name"; 71$lang["monobook_cite_author"] = "Author"; 72$lang["monobook_cite_publisher"] = "Publisher"; 73$lang["monobook_cite_dateofrev"] = "Date of this revision"; 74$lang["monobook_cite_dateretrieved"] = "Date retrieved"; 75$lang["monobook_cite_permurl"] = "Permanent URL"; 76$lang["monobook_cite_pageversionid"] = "Page Version ID"; 77$lang["monobook_cite_citationstyles"] = "Citation styles for"; 78$lang["monobook_cite_checkstandards"] = "Please remember to check your manual of style, standards guide or instructor's guidelines for the exact syntax to suit your needs"; 79$lang["monobook_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"; 80$lang["monobook_cite_retrieved"] = "Retrieved"; 81$lang["monobook_cite_from"] = "from"; 82$lang["monobook_cite_in"] = "In"; 83$lang["monobook_cite_accessed"] = "Accessed"; 84$lang["monobook_cite_cited"] = "Cited"; 85$lang["monobook_cite_lastvisited"] = "Last visited"; 86$lang["monobook_cite_availableat"] = "Available at"; 87$lang["monobook_cite_discussionpages"] = "DokuWiki talk pages"; 88$lang["monobook_cite_markup"] = "Markup"; 89$lang["monobook_cite_result"] = "Result"; 90$lang["monobook_cite_thisversion"] = "this version"; 91 92//other 93$lang["monobook_accessdenied"] = "Access denied"; 94$lang["monobook_fillplaceholder"] = "Please fill or disable this placeholder"; 95$lang["monobook_donate"] = "Donate"; 96$lang["monobook_mdtemplatefordw"] = "monobook template for DokuWiki"; 97$lang["monobook_recentchanges"] = "Recent changes"; 98 99