xref: /template/wikiweko/lang/cs/settings.php (revision dbba3fd5d0de6350525ab4e6b6e68b8896a78a4e)
1ff435a3fSAndreas Haerter<?php
2ff435a3fSAndreas Haerter
3ff435a3fSAndreas Haerter/**
4ff435a3fSAndreas Haerter * Czech language for the Config Manager
5ff435a3fSAndreas Haerter *
6ff435a3fSAndreas Haerter * If your language is not/only partially translated or you found an error/typo,
7ff435a3fSAndreas Haerter * have a look at the following files:
8ff435a3fSAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/lang.php"
9ff435a3fSAndreas Haerter * - "/lib/tpl/vector/lang/<your lang>/settings.php"
10ff435a3fSAndreas Haerter * If they are not existing, copy and translate the English ones (hint: looking
11ff435a3fSAndreas Haerter * at <http://[your lang].wikipedia.org> might be helpful). And don't forget to
12*dbba3fd5SAndreas Haerter * mail the translation to us, SYN Systems <dokuwiki@dev.syn-systems.com>.
13*dbba3fd5SAndreas Haerter * Thanks :-D.
14ff435a3fSAndreas Haerter *
15ff435a3fSAndreas Haerter *
16ff435a3fSAndreas Haerter * LICENSE: This file is open source software (OSS) and may be copied under
17ff435a3fSAndreas Haerter *          certain conditions. See COPYING file for details or try to contact
18ff435a3fSAndreas Haerter *          the author(s) of this file in doubt.
19ff435a3fSAndreas Haerter *
20ff435a3fSAndreas Haerter * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
21ff435a3fSAndreas Haerter * @author David Roesel <http://david.roesel.cz/>
22ff435a3fSAndreas Haerter * @link http://www.dokuwiki.org/template:vector
23ff435a3fSAndreas Haerter * @link http://www.dokuwiki.org/config:lang
24ff435a3fSAndreas Haerter * @link http://www.dokuwiki.org/devel:configuration
25ff435a3fSAndreas Haerter */
26ff435a3fSAndreas Haerter
27ff435a3fSAndreas Haerter
28ff435a3fSAndreas Haerter//check if we are running within the DokuWiki environment
29ff435a3fSAndreas Haerterif (!defined("DOKU_INC")){
30ff435a3fSAndreas Haerter    die();
31ff435a3fSAndreas Haerter}
32ff435a3fSAndreas Haerter
33ff435a3fSAndreas Haerter//user pages
34ff435a3fSAndreas Haerter$lang["vector_userpage"]    = "Používat uživatelské stránky?";
35ff435a3fSAndreas Haerter$lang["vector_userpage_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář:";
36ff435a3fSAndreas Haerter
37ff435a3fSAndreas Haerter//discussion pages
38ff435a3fSAndreas Haerter$lang["vector_discuss"]    = "Používat diskusní taby/stránky?";
39ff435a3fSAndreas Haerter$lang["vector_discuss_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář pro diskuse:";
40ff435a3fSAndreas Haerter
41ff435a3fSAndreas Haerter//site notice
42ff435a3fSAndreas Haerter$lang["vector_sitenotice"]          = "Zobrazovat globální upozornění?";
43ff435a3fSAndreas Haerter$lang["vector_sitenotice_location"] = "Pokud ano, použít jako globální upozornění tuto stránku:";
44ff435a3fSAndreas Haerter
45ff435a3fSAndreas Haerter//navigation
46ff435a3fSAndreas Haerter$lang["vector_navigation"]          = "Zobrazovat navigaci?";
47ff435a3fSAndreas Haerter$lang["vector_navigation_location"] = "Pokud ano, použít jako navigaci následující stránku:";
48ff435a3fSAndreas Haerter
49ff435a3fSAndreas Haerter//exportbox ("print/export")
50ff435a3fSAndreas Haerter$lang["vector_exportbox"]          = "Zobrazovat 'tisk/export' sekci?";
51ff435a3fSAndreas Haerter$lang["vector_exportbox_default"]  = "Pokud ano, používat původní 'tisk/export' sekci?";
52ff435a3fSAndreas Haerter$lang["vector_exportbox_location"] = "Pokud ne tu původní, potom používat následující stránku jako 'tisk/export' sekci:";
53ff435a3fSAndreas Haerter
54ff435a3fSAndreas Haerter//toolbox
55ff435a3fSAndreas Haerter$lang["vector_toolbox"]          = "Zobrazovat nástroje?";
56ff435a3fSAndreas Haerter$lang["vector_toolbox_default"]  = "Pokud ano, používat původní nástroje?";
57ff435a3fSAndreas Haerter$lang["vector_toolbox_location"] = "Pokud ne ty původní, potom používat následující stránku jako nástroje:";
58ff435a3fSAndreas Haerter
59ff435a3fSAndreas Haerter//custom copyright notice
60ff435a3fSAndreas Haerter$lang["vector_copyright"]          = "Zobrazovat informace o autorských právech?";
61ff435a3fSAndreas Haerter$lang["vector_copyright_default"]  = "Pokud ano, používat původní informace o autorských právech?";
62ff435a3fSAndreas Haerter$lang["vector_copyright_location"] = "Pokud ne ty původní, potom používat následující stránku jako informace o autorských právech:";
63ff435a3fSAndreas Haerter
64ff435a3fSAndreas Haerter//donation link/button
65ff435a3fSAndreas Haerter$lang["vector_donate"]          = "Zobrazovat možnost \"Přispět\"?";
66ff435a3fSAndreas Haerter$lang["vector_donate_url"]      = "Pokud ne ten původní, potom tento odkaz:";
67ff435a3fSAndreas Haerter
68ff435a3fSAndreas Haerter//TOC
69ff435a3fSAndreas Haerter$lang["vector_toc_position"] = "Pozice obsahu:";
70ff435a3fSAndreas Haerter
71ff435a3fSAndreas Haerter//other stuff
72ff435a3fSAndreas Haerter$lang["vector_mediamanager_embedded"] = "Zobrazovat mediamanger vložený v běžném layoutu?";
73ff435a3fSAndreas Haerter$lang["vector_breadcrumbs_position"]  = "Pozice aktuální cesty (breadcrumbs) (je-li tato funkce povolena):";
74ff435a3fSAndreas Haerter$lang["vector_youarehere_position"]   = "Pozice navigace 'Jste tady' (je-li tato funkce povolena):";
75ff435a3fSAndreas Haerter$lang["vector_cite_author"]           = "Jméno autora při použití 'Citovat tento článek':";
76ff435a3fSAndreas Haerter$lang["vector_loaduserjs"]            = "Nahrávat 'vector/user/user.js'?";
77ff435a3fSAndreas Haerter$lang["vector_closedwiki"]            = "Je wiki zavřená (většina odkazů/tabů/boxů nebude vidět do přihlášení)?";
78ff435a3fSAndreas Haerter
79