1<?php 2 3/** 4 * Czech 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/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 David Roesel <http://david.roesel.cz/> 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//user pages 36$lang["vector_userpage"] = "Používat uživatelské stránky?"; 37$lang["vector_userpage_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář:"; 38 39//discussion pages 40$lang["vector_discuss"] = "Používat diskusní taby/stránky?"; 41$lang["vector_discuss_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář pro diskuse:"; 42 43//site notice 44$lang["vector_sitenotice"] = "Zobrazovat globální upozornění?"; 45$lang["vector_sitenotice_location"] = "Pokud ano, použít jako globální upozornění tuto stránku:"; 46 47//navigation 48$lang["vector_navigation"] = "Zobrazovat navigaci?"; 49$lang["vector_navigation_location"] = "Pokud ano, použít jako navigaci následující stránku:"; 50 51//exportbox ("print/export") 52$lang["vector_exportbox"] = "Zobrazovat 'tisk/export' sekci?"; 53$lang["vector_exportbox_default"] = "Pokud ano, používat původní 'tisk/export' sekci?"; 54$lang["vector_exportbox_location"] = "Pokud ne tu původní, potom používat následující stránku jako 'tisk/export' sekci:"; 55 56//toolbox 57$lang["vector_toolbox"] = "Zobrazovat nástroje?"; 58$lang["vector_toolbox_default"] = "Pokud ano, používat původní nástroje?"; 59$lang["vector_toolbox_location"] = "Pokud ne ty původní, potom používat následující stránku jako nástroje:"; 60 61//custom copyright notice 62$lang["vector_copyright"] = "Zobrazovat informace o autorských právech?"; 63$lang["vector_copyright_default"] = "Pokud ano, používat původní informace o autorských právech?"; 64$lang["vector_copyright_location"] = "Pokud ne ty původní, potom používat následující stránku jako informace o autorských právech:"; 65 66//donation link/button 67$lang["vector_donate"] = "Zobrazovat možnost \"Přispět\"?"; 68$lang["vector_donate_url"] = "Pokud ne ten původní, potom tento odkaz:"; 69 70//TOC 71$lang["vector_toc_position"] = "Pozice obsahu:"; 72 73//other stuff 74$lang["vector_mediamanager_embedded"] = "Zobrazovat mediamanger vložený v běžném layoutu?"; 75$lang["vector_breadcrumbs_position"] = "Pozice aktuální cesty (breadcrumbs) (je-li tato funkce povolena):"; 76$lang["vector_youarehere_position"] = "Pozice navigace 'Jste tady' (je-li tato funkce povolena):"; 77$lang["vector_cite_author"] = "Jméno autora při použití 'Citovat tento článek':"; 78$lang["vector_loaduserjs"] = "Nahrávat 'vector/user/user.js'?"; 79$lang["vector_closedwiki"] = "Je wiki zavřená (většina odkazů/tabů/boxů nebude vidět do přihlášení)?"; 80 81