はじまりの大地

This commit is contained in:
miteruzo
2024-07-08 03:32:47 +09:00
commit c616a96f53
7749 changed files with 478270 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#Note: If this file prevents running vector in your environment, simply delete
# it. Everything should be safe even if the files blocked by the following
# Apache rules are accessible.
# The reason for protecting these files is to to keep searchengines/foo
# away from indexing files containing version information, names and/or not
# necessarily public template parts by default.
Deny from all
+9
View File
@@ -0,0 +1,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<title></title>
</head>
<body>
<!-- prevent directory browsing -->
</body>
</html>
+105
View File
@@ -0,0 +1,105 @@
<?php
/**
* Czech language for the "vector" DokuWiki template
*
* If your language is not/only partially translated or you found an error/typo,
* have a look at the following files:
* - /lib/tpl/vector/lang/<your lang>/lang.php
* - /lib/tpl/vector/lang/<your lang>/settings.php
* If they are not existing, copy and translate the English ones (hint: looking
* at <http://[your lang].wikipedia.org> might be helpful).
*
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
* Thanks! :-D
*
*
* LICENSE: This file is open source software (OSS) and may be copied under
* certain conditions. See COPYING file for details or try to contact
* the author(s) of this file in doubt.
*
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
* @author David Roesel <http://david.roesel.cz/>
* @link https://www.dokuwiki.org/template:vector
* @link https://www.dokuwiki.org/config:lang
* @link https://www.dokuwiki.org/devel:configuration
*/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//tabs, personal tools and special links
$lang["vector_article"] = "Článek";
$lang["vector_discussion"] = "Diskuse";
$lang["vector_read"] = "Číst";
$lang["vector_edit"] = "Upravit";
$lang["vector_create"] = "Vytvořit";
$lang["vector_userpage"] = "Uživatelská stránka";
$lang["vector_specialpage"] = "Speciální stránky";
$lang["vector_mytalk"] = "Můj pokec";
$lang["vector_exportodt"] = "Export: ODT";
$lang["vector_exportpdf"] = "Export: PDF";
$lang["vector_subscribens"] = "Odebírat NS změny"; //original DW lang $lang["btn_subscribens"] is simply too long for common tab configs
$lang["vector_unsubscribens"] = "Přestat odebírat NS změny"; //original DW lang $lang["btn_unsubscribens"] is simply too long for common tab configs
$lang["vector_translations"] = "Jazyky";
//headlines for the different bars and boxes
$lang["vector_navigation"] = "Navigace";
$lang["vector_toolbox"] = "Nástroje";
$lang["vector_exportbox"] = "Tisk/export";
$lang["vector_inotherlanguages"] = "Jazyky";
$lang["vector_printexport"] = "Vytisknout/exportovat";
$lang["vector_personnaltools"] = "Osobní nástroje";
//buttons
$lang["vector_btn_go"] = "Přejít";
$lang["vector_btn_search"] = "Hledat";
$lang["vector_btn_search_title"] = "Hledat tento text";
//exportbox ("print/export")
$lang["vector_exportbxdef_print"] = "Verze k tisku";
$lang["vector_exportbxdef_downloadodt"] = "Stáhnout jako ODT";
$lang["vector_exportbxdef_downloadpdf"] = "Stáhnout jako PDF";
//default toolbox
$lang["vector_toolbxdef_whatlinkshere"] = "Stránky odkazující sem";
$lang["vector_toolbxdef_upload"] = "Nahrát soubor";
$lang["vector_toolbxdef_siteindex"] = "Hlavní stránka";
$lang["vector_toolboxdef_permanent"] = "Trvalý odkaz";
$lang["vector_toolboxdef_cite"] = "Citovat tuto stránku";
//cite this article
$lang["vector_cite_bibdetailsfor"] = "Bibliografické údaje";
$lang["vector_cite_pagename"] = "Název stránky";
$lang["vector_cite_author"] = "Autor";
$lang["vector_cite_publisher"] = "Vydavatel";
$lang["vector_cite_dateofrev"] = "Datum této verze";
$lang["vector_cite_dateretrieved"] = "Vytažené datum"; //not sure about the actual implementation
$lang["vector_cite_permurl"] = "Trvalý odkaz";
$lang["vector_cite_pageversionid"] = "ID verze stránky";
$lang["vector_cite_citationstyles"] = "Styly citací pro";
$lang["vector_cite_checkstandards"] = "Nezpomeňte si zkontrolovat, který z následujících stylů přesně odpovídá formátu, vyžadovanému vaším zadávajícím/odborným vedoucím.";
$lang["vector_cite_latexusepackagehint"] = "Při používání odkazů na LaTeX balíky (\usepackage{url} někde v preambuli), které často dávají hezčí adresy, by se vám mohlo hodit následující";
$lang["vector_cite_retrieved"] = "Vytaženo";
$lang["vector_cite_from"] = "od";
$lang["vector_cite_in"] = "V";
$lang["vector_cite_accessed"] = "Zobrazeno"; //or "Přistoupeno k", but a complete reformulation would be necessary
$lang["vector_cite_cited"] = "Citováno";
$lang["vector_cite_lastvisited"] = "Naposledy navštíveno";
$lang["vector_cite_availableat"] = "Dostupné na";
$lang["vector_cite_discussionpages"] = "DokuWiki diskuse";
$lang["vector_cite_markup"] = "Markup"; //no suitable translation as far as I know, perhaps "Značkovací jazyk"/"Značkování"
$lang["vector_cite_result"] = "Výsledek";
$lang["vector_cite_thisversion"] = "tato verze";
//other
$lang["vector_search"] = "Hledat";
$lang["vector_accessdenied"] = "Nepovolený přístup";
$lang["vector_fillplaceholder"] = "Vyplňte prosím toto umístění";
$lang["vector_donate"] = "Přispět";
$lang["vector_mdtemplatefordw"] = "téma vector pro systém DokuWiki";
$lang["vector_recentchanges"] = "Poslední změny";
+79
View File
@@ -0,0 +1,79 @@
<?php
/**
* Czech language for the Config Manager
*
* If your language is not/only partially translated or you found an error/typo,
* have a look at the following files:
* - /lib/tpl/vector/lang/<your lang>/lang.php
* - /lib/tpl/vector/lang/<your lang>/settings.php
* If they are not existing, copy and translate the English ones (hint: looking
* at <http://[your lang].wikipedia.org> might be helpful).
*
* Don't forget to mail your translation to ARSAVA <dokuwiki@dev.arsava.com>.
* Thanks! :-D
*
*
* LICENSE: This file is open source software (OSS) and may be copied under
* certain conditions. See COPYING file for details or try to contact
* the author(s) of this file in doubt.
*
* @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
* @author David Roesel <http://david.roesel.cz/>
* @link https://www.dokuwiki.org/template:vector
* @link https://www.dokuwiki.org/config:lang
* @link https://www.dokuwiki.org/devel:configuration
*/
//check if we are running within the DokuWiki environment
if (!defined("DOKU_INC")){
die();
}
//user pages
$lang["vector_userpage"] = "Používat uživatelské stránky?";
$lang["vector_userpage_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář:";
//discussion pages
$lang["vector_discuss"] = "Používat diskusní taby/stránky?";
$lang["vector_discuss_ns"] = "Pokud ano, používat tento ':jmenný prostor:' jako kořenový adresář pro diskuse:";
//site notice
$lang["vector_sitenotice"] = "Zobrazovat globální upozornění?";
$lang["vector_sitenotice_location"] = "Pokud ano, použít jako globální upozornění tuto stránku:";
//navigation
$lang["vector_navigation"] = "Zobrazovat navigaci?";
$lang["vector_navigation_location"] = "Pokud ano, použít jako navigaci následující stránku:";
//exportbox ("print/export")
$lang["vector_exportbox"] = "Zobrazovat 'tisk/export' sekci?";
$lang["vector_exportbox_default"] = "Pokud ano, používat původní 'tisk/export' sekci?";
$lang["vector_exportbox_location"] = "Pokud ne tu původní, potom používat následující stránku jako 'tisk/export' sekci:";
//toolbox
$lang["vector_toolbox"] = "Zobrazovat nástroje?";
$lang["vector_toolbox_default"] = "Pokud ano, používat původní nástroje?";
$lang["vector_toolbox_location"] = "Pokud ne ty původní, potom používat následující stránku jako nástroje:";
//custom copyright notice
$lang["vector_copyright"] = "Zobrazovat informace o autorských právech?";
$lang["vector_copyright_default"] = "Pokud ano, používat původní informace o autorských právech?";
$lang["vector_copyright_location"] = "Pokud ne ty původní, potom používat následující stránku jako informace o autorských právech:";
//donation link/button
$lang["vector_donate"] = "Zobrazovat možnost \"Přispět\"?";
$lang["vector_donate_url"] = "Pokud ne ten původní, potom tento odkaz:";
//TOC
$lang["vector_toc_position"] = "Pozice obsahu:";
//other stuff
$lang["vector_mediamanager_embedded"] = "Zobrazovat mediamanger vložený v běžném layoutu?";
$lang["vector_breadcrumbs_position"] = "Pozice aktuální cesty (breadcrumbs) (je-li tato funkce povolena):";
$lang["vector_youarehere_position"] = "Pozice navigace 'Jste tady' (je-li tato funkce povolena):";
$lang["vector_cite_author"] = "Jméno autora při použití 'Citovat tento článek':";
$lang["vector_loaduserjs"] = "Nahrávat 'vector/user/user.js'?";
$lang["vector_closedwiki"] = "Je wiki zavřená (většina odkazů/tabů/boxů nebude vidět do přihlášení)?";
View File