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