1<?php 2 3/** 4 * Slovak 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/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 Martin Hanula <mh.ikar@gmail.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//user pages 34$lang["monobook_userpage"] = "Použiť používateľské stránky?"; // eng: "Use User pages?"; 35$lang["monobook_userpage_ns"] = "Ak áno, použiť nasledovný ':menný_priestor:' (namespace) ako koreň (root) na používateľské stránky"; // eng: "If yes, use following ':namespace:' as root for user pages:"; 36 37//discussion pages 38$lang["monobook_discuss"] = "Použiť záložku 'diskusia'?"; // eng: "Use discussion tabs/sites?"; 39$lang["monobook_discuss_ns"] = "Ak áno, použiť nasledovný ':menný_priestor:' (namespace) ako koreň (root) na diskusiu"; // eng: "If yes, use following ':namespace:' as root for discussions:"; 40 41//site notice 42$lang["monobook_sitenotice"] = "Zobraziť oznámenie sídla?"; // eng: "Show site wide notice?"; 43$lang["monobook_sitenotice_location"] = "Ak áno, použiť nasledovnú wiki stránku ako oznámenie sídla"; // eng: "If yes, use following wiki page for the site wide notice:"; 44 45//navigation 46$lang["monobook_navigation"] = "Zobraziť navigáciu?"; // eng: "Show navigation?"; 47$lang["monobook_navigation_location"] = "Ak áno, použiť nasledovnú wiki stránku ako navigáciu"; // eng: "If yes, use following wiki page as navigation:"; 48 49//custom copyright notice 50$lang["monobook_copyright"] = "Zobraziť oznámenie o autorských právach (copyright)?"; // eng: "Show copyright notice?"; 51$lang["monobook_copyright_default"] = "Ak áno, použiť štandardné oznámenie o autorských právach?"; // eng: "If yes, use default copyright notice?"; 52$lang["monobook_copyright_location"] = "Ak nie štandardné, použiť nasledovnú wiki stránku ako oznámenie o autorských právach"; // eng: "If not default, use following wiki page as copyright notice:"; 53 54//search form 55$lang["monobook_search"] = "Zobraziť formulár na hľadanie?"; // eng: "Show search form?"; 56 57//toolbox 58$lang["monobook_toolbox"] = "Zobraziť nástroje?"; // eng: "Show toolbox?"; 59$lang["monobook_toolbox_default"] = "Ak áno, použiť štandardné nástroje?"; // eng: "If yes, use default toolbox?"; 60$lang["monobook_toolbox_default_print"]= "Ak sú použité štandardné nástroje, zobraziť odkaz na verziu na tlač?"; // eng: "If default toolbox is used, show printable version link?"; 61$lang["monobook_toolbox_location"] = "Ak nie štandardné, použiť nasledovnú wiki stránku ako nástroje"; // eng: "If not default, use following wiki page as toolbox location:"; 62 63//donation link/button 64$lang["monobook_donate"] = "Zobraziť odkaz/tlačidlo na darovanie?"; // eng: "Show donation link/button?"; 65$lang["monobook_donate_url"] = "Ak nie štandardné, použiť nasledovné URL na darovanie"; // eng: "If not default, use following URL for donations:"; 66 67//TOC 68$lang["monobook_toc_position"] = "Pozícia Obsahu (Table of contents) stránky"; // eng: "Table of contents (TOC) position"; 69 70//other stuff; for navigation name (breadcrumb, youarehere) see /inc/lang/sk/lang.php 71$lang["monobook_breadcrumbs_position"] = "Pozícia navigácie 'História' (ak je povolená)"; // eng: "Position of breadcrumb navigation (if enabled):"; 72$lang["monobook_youarehere_position"] = "Pozícia navigácie 'Nachádzate sa' (ak je povolená)"; // eng: "Position of 'You are here' navigation (if enabled):"; 73$lang["monobook_cite_author"] = "Meno autora v 'Citovať túto stránku'"; // eng: "Author name in 'Cite this Article':"; 74$lang["monobook_loaduserjs"] = "Natiahnuť (load) 'monobook/user/user.js'?"; // eng: "Load 'monobook/user/user.js'?"; 75$lang["monobook_closedwiki"] = "Uzavretá wiki (kým sa používateľ neprihlási je väčšina odkazov/záložiek/nástrojov skrytá)?"; // eng: "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?"; 76 77