Project

General

Profile

Patch #2126 » calendar-sk.js

Calendar SK javascript - fixed version from 9.11.2008 - Stanislav Pach, 2008-11-09 00:50

 
1
/* 
2
	calendar-sk.js
3
	language: Slovak
4
	encoding: UTF-8
5
	author: Stanislav Pach (stano.pach@seznam.cz)
6
*/
7

    
8
// ** I18N
9
Calendar._DN  = new Array('Nedeľa','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota','Nedeľa');
10
Calendar._SDN = new Array('Ne','Po','Ut','St','Št','Pi','So','Ne');
11
Calendar._MN  = new Array('Január','Február','Marec','Apríl','Máj','Jún','Júl','August','September','Október','November','December');
12
Calendar._SMN = new Array('Jan','Feb','Mar','Apr','Máj','Jún','Júl','Aug','Sep','Okt','Nov','Dec');
13

    
14
// First day of the week. "0" means display Sunday first, "1" means display
15
// Monday first, etc.
16
Calendar._FD = 1;
17

    
18
// tooltips
19
Calendar._TT = {};
20
Calendar._TT["INFO"] = "O komponente kalendár";
21
Calendar._TT["TOGGLE"] = "Zmena prvého dňa v týždni";
22
Calendar._TT["PREV_YEAR"] = "Predchádzajúci rok (pridrž pre menu)";
23
Calendar._TT["PREV_MONTH"] = "Predchádzajúci mesiac (pridrž pre menu)";
24
Calendar._TT["GO_TODAY"] = "Dnešný dátum";
25
Calendar._TT["NEXT_MONTH"] = "Ďalší mesiac (pridrž pre menu)";
26
Calendar._TT["NEXT_YEAR"] = "Ďalší rok (pridrž pre menu)";
27
Calendar._TT["SEL_DATE"] = "Zvoľ dátum";
28
Calendar._TT["DRAG_TO_MOVE"] = "Chyť a ťahaj pre presun";
29
Calendar._TT["PART_TODAY"] = " (dnes)";
30
Calendar._TT["MON_FIRST"] = "Ukáž ako prvný Pondelok";
31
//Calendar._TT["SUN_FIRST"] = "Ukaž jako první Neděli";
32

    
33
Calendar._TT["ABOUT"] =
34
"DHTML Date/Time Selector\n" +
35
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
36
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
37
"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
38
"\n\n" +
39
"Výber dátumu:\n" +
40
"- Použijte tlačítka \xab, \xbb pre voľbu roku\n" +
41
"- Použijte tlačítka " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " pre výber mesiaca\n" +
42
"- Podržte tlačítko myši na akomkoľvek z týchto tlačítok pre rýchlejší výber.";
43

    
44
Calendar._TT["ABOUT_TIME"] = "\n\n" +
45
"Výber času:\n" +
46
"- Kliknite na akúkoľvek časť z výberu času pre zvýšenie.\n" +
47
"- alebo Shift-klick pre zníženie\n" +
48
"- alebo kliknite a ťahajte pre rýchlejší výber.";
49

    
50
// the following is to inform that "%s" is to be the first day of week
51
// %s will be replaced with the day name.
52
Calendar._TT["DAY_FIRST"] = "Zobraz %s ako prvý";
53

    
54
// This may be locale-dependent.  It specifies the week-end days, as an array
55
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
56
// means Monday, etc.
57
Calendar._TT["WEEKEND"] = "0,6";
58

    
59
Calendar._TT["CLOSE"] = "Zavrieť";
60
Calendar._TT["TODAY"] = "Dnes";
61
Calendar._TT["TIME_PART"] = "(Shift-)Klikni alebo ťahaj pre zmenu hodnoty";
62

    
63
// date formats
64
Calendar._TT["DEF_DATE_FORMAT"] = "d.m.yy";
65
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
66

    
67
Calendar._TT["WK"] = "týž";
68
Calendar._TT["TIME"] = "Čas:";
(5-5/8)