source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/monobook/lang/sk/settings.php@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 5.4 KB
Line 
1<?php
2
3/**
4 * Slovak 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/monobook/lang/<your lang>/lang.php"
9 * - "/lib/tpl/monobook/lang/<your lang>/settings.php"
10 * If they are not existing, copy and translate the English ones. And don't
11 * forget to mail the translation to me,
12 * Andreas Haerter <[email protected]>. Thanks :-D.
13 *
14 *
15 * LICENSE: This file is open source software (OSS) and may be copied under
16 * certain conditions. See COPYING file for details or try to contact
17 * the author(s) of this file in doubt.
18 *
19 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
20 * @author Martin Hanula <[email protected]>
21 * @link http://andreas-haerter.com/projects/dokuwiki-template-monobook
22 * @link http://www.dokuwiki.org/template:monobook
23 * @link http://www.dokuwiki.org/config:lang
24 * @link http://www.dokuwiki.org/devel:configuration
25 */
26
27
28//check if we are running within the DokuWiki environment
29if (!defined("DOKU_INC")){
30 die();
31}
32
33//user pages
34$lang["monobook_userpage"] = "Pouşiť pouşívateğské stránky?"; // eng: "Use User pages?";
35$lang["monobook_userpage_ns"] = "Ak áno, pouÅŸiÅ¥ nasledovnÃœ ':mennÃœ_priestor:' (namespace) ako koreň (root) na pouşívateÄŸské stránky"; // eng: "If yes, use following ':namespace:' as root for user pages:";
36
37//discussion pages
38$lang["monobook_discuss"] = "Pouşiť záloşku 'diskusia'?"; // eng: "Use discussion tabs/sites?";
39$lang["monobook_discuss_ns"] = "Ak áno, pouÅŸiÅ¥ nasledovnÃœ ':mennÃœ_priestor:' (namespace) ako koreň (root) na diskusiu"; // eng: "If yes, use following ':namespace:' as root for discussions:";
40
41//site notice
42$lang["monobook_sitenotice"] = "Zobraziť oznámenie sídla?"; // eng: "Show site wide notice?";
43$lang["monobook_sitenotice_location"] = "Ak áno, pouşiť nasledovnú wiki stránku ako oznámenie sídla"; // eng: "If yes, use following wiki page for the site wide notice:";
44
45//navigation
46$lang["monobook_navigation"] = "Zobraziť navigáciu?"; // eng: "Show navigation?";
47$lang["monobook_navigation_location"] = "Ak áno, pouşiť nasledovnú wiki stránku ako navigáciu"; // eng: "If yes, use following wiki page as navigation:";
48
49//custom copyright notice
50$lang["monobook_copyright"] = "Zobraziť oznámenie o autorskÜch právach (copyright)?"; // eng: "Show copyright notice?";
51$lang["monobook_copyright_default"] = "Ak áno, pouşiť štandardné oznámenie o autorskÜch právach?"; // eng: "If yes, use default copyright notice?";
52$lang["monobook_copyright_location"] = "Ak nie štandardné, pouşiť nasledovnú wiki stránku ako oznámenie o autorskÜch právach"; // eng: "If not default, use following wiki page as copyright notice:";
53
54//search form
55$lang["monobook_search"] = "Zobraziť formulár na hğadanie?"; // eng: "Show search form?";
56
57//toolbox
58$lang["monobook_toolbox"] = "Zobraziť nástroje?"; // eng: "Show toolbox?";
59$lang["monobook_toolbox_default"] = "Ak áno, pouşiť štandardné nástroje?"; // eng: "If yes, use default toolbox?";
60$lang["monobook_toolbox_default_print"]= "Ak sú pouşité štandardné nástroje, zobraziť odkaz na verziu na tlač?"; // eng: "If default toolbox is used, show printable version link?";
61$lang["monobook_toolbox_location"] = "Ak nie štandardné, pouşiť nasledovnú wiki stránku ako nástroje"; // eng: "If not default, use following wiki page as toolbox location:";
62
63//donation link/button
64$lang["monobook_donate"] = "Zobraziť odkaz/tlačidlo na darovanie?"; // eng: "Show donation link/button?";
65$lang["monobook_donate_default"] = "Ak áno, pouşiť štandardné cieğové URL na darovanie?"; // eng: "If yes, use default donation target URL?";
66$lang["monobook_donate_url"] = "Ak nie štandardné, pouşiť nasledovné URL na darovanie"; // eng: "If not default, use following URL for donations:";
67
68//TOC
69$lang["monobook_toc_position"] = "Pozícia Obsahu (Table of contents) stránky"; // eng: "Table of contents (TOC) position";
70
71//other stuff; for navigation name (breadcrumb, youarehere) see /inc/lang/sk/lang.php
72$lang["monobook_breadcrumbs_position"] = "Pozícia navigácie 'História' (ak je povolená)"; // eng: "Position of breadcrumb navigation (if enabled):";
73$lang["monobook_youarehere_position"] = "Pozícia navigácie 'Nachádzate sa' (ak je povolená)"; // eng: "Position of 'You are here' navigation (if enabled):";
74$lang["monobook_cite_author"] = "Meno autora v 'Citovať túto stránku'"; // eng: "Author name in 'Cite this Article':";
75$lang["monobook_loaduserjs"] = "Natiahnuť (load) 'monobook/user/user.js'?"; // eng: "Load 'monobook/user/user.js'?";
76$lang["monobook_closedwiki"] = "Uzavretá wiki (kÜm sa pouşívateğ neprihlási je vÀčšina odkazov/záloşiek/nástrojov skrytá)?"; // eng: "Closed wiki (most links/tabs/boxes are hidden until user is logged in)?";
77
Note: See TracBrowser for help on using the repository browser.