1<?php
2/**
3 * English language file.
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author  Viktor Kristian <vkristian@gmail.com>
7 * @package DokuWiki\lang\en\lang
8 */
9
10// settings must be present and set appropriately for the language
11$lang['encoding']   = 'utf-8';
12$lang['direction']  = 'ltr';
13
14// export button
15$lang['view'] = 'Exportovať stránku do formátu Open Document';
16$lang['export_odt_button'] = 'Export do ODT';
17$lang['export_odt_pdf_button'] = 'Export ODT=>PDF';
18
19// template not found in the directory
20$lang['tpl_not_found'] = 'CHYBA : ODT šablóna "%s" nebola nájdená v adresári so šablónami "%s". Export je prerušený.';
21
22// default TOC and chapter index title
23$lang['toc_title']          = 'Obsah';
24$lang['chapter_title']      = 'Index kapitol';
25$lang['toc_msg']            = 'Sem bude vložený obsah.';
26$lang['chapter_msg']        = 'Sem bude vložený index kapitol.';
27$lang['update_toc_msg']     = 'Prosím nezabudnite po exporte aktualizovať obsah.';
28$lang['update_chapter_msg'] = 'Prosím nezabudnite po exporte aktualizovať index kapitol.';
29
30$lang['needtitle']         = 'Prosím izadajte nadpis.';
31$lang['needns']            = 'Prosím zadajte existujúci menný priestor.';
32$lang['empty']             = "Zatiaľ ste nevybrali žiadne stránky.";
33$lang['forbidden']         = "Nemáte prístup k nasledujúcim stránkam: %s.<br/><br/>Na vytvorenie knihy obsahujúcej dostupné stránky prosím použite možnosť 'Preskočiť neprístupné stránky'.";
34
35// Error message for failed conversion.
36// The following replacments are supported:
37// %command%      = the complete command line which was executed
38// %errorcode%    = the error code reported after executing the command
39// %errormessage% = the detailed error message reported after executing the command
40$lang['conversion_failed_msg'] =
41'====== Počas konverzie do formátu ODT nastala chyba: ======
42
43Vykonávaný príkaz:
44
45<code>%command%</code>
46
47Kód chyby: %errorcode%
48
49Chybová správa:
50
51<code>%errormessage%</code>
52
53[[%pageid%|Vrátiť sa na predchádzajúcu stránku]]';
54
55// Error message for failed conversion.
56$lang['init_failed_msg'] =
57'====== Počas konverzie do formátu ODT nastala chyba: ======
58
59Je vaša verzia DokuWiki kompatibilná s ODT pluginom?
60
61Od verzie pluginu 2017-02-11 a vyššej sa vyžaduje verziu DokuWiki "Detritus" a novšej!
62Detailné informácie o požiadavkach nájdete v sekcii [[https://www.dokuwiki.org/plugin:odt#requirements|"Requirements section"]] stránok ODS pluginu na DokuWiki.org.
63
64(Používate verziu DokuWiki %DWVERSION%)';
65