Project

General

Profile

Patch #2126 » calendar-sk.js

Translated calendar - Stanislav Pach, 2008-11-03 22:23

 
1
// ** I18N
2

    
3
// Calendar Slovak (SK) language
4
// Author: Stanislav Pach, <stano.pach@seznam.cz>
5
// Encoding: UTF-8
6
// Distributed under the same terms as the calendar itself.
7

    
8
// For translators: please use UTF-8 if possible.  We strongly believe that
9
// Unicode is the answer to a real internationalized world.  Also please
10
// include your contact information in the header, as can be seen above.
11

    
12
// 
13

    
14
// full day names
15
Calendar._DN = new Array
16
("Nedeľa",
17
 "Pondelok",
18
 "Utorok",
19
 "Streda",
20
 "Štvrtok,
21
 "Piatok",
22
 "Sobota",
23
 "Nedeľa");
24

    
25
// Please note that the following array of short day names (and the same goes
26
// for short month names, _SMN) isn't absolutely necessary.  We give it here
27
// for exemplification on how one can customize the short day names, but if
28
// they are simply the first N letters of the full name you can simply say:
29
//
30
//   Calendar._SDN_len = N; // short day name length
31
//   Calendar._SMN_len = N; // short month name length
32
//
33
// If N = 3 then this is not needed either since we assume a value of 3 if not
34
// present, to be compatible with translation files that were written before
35
// this feature.
36

    
37
// short day names
38
Calendar._SDN = new Array
39
("Ne",
40
 "Po",
41
 "Ut",
42
 "St",
43
 "Št",
44
 "Pi",
45
 "So",
46
 "Ne");
47

    
48
// First day of the week. "0" means display Sunday first, "1" means display
49
// Monday first, etc.
50
Calendar._FD = 1;
51

    
52
// full month names
53
Calendar._MN = new Array
54
("Január",
55
 "Február",
56
 "Marec",
57
 "Apríl",
58
 "Máj",
59
 "Jún",
60
 "Júl",
61
 "August",
62
 "September",
63
 "Október",
64
 "November",
65
 "December");
66

    
67
// short month names
68
Calendar._SMN = new Array
69
("Jan",
70
 "Feb",
71
 "Mar",
72
 "Apr",
73
 "Maj",
74
 "Jun",
75
 "Jul",
76
 "Aug",
77
 "Sep",
78
 "Okt",
79
 "Nov",
80
 "Dec");
81

    
82
// tooltips
83
Calendar._TT = {};
84
Calendar._TT["INFO"] = "O komponente kalendár";
85

    
86
Calendar._TT["ABOUT"] =
87
"DHTML Date/Time Selector\n" +
88
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
89
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
90
"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
91
"\n\n" +
92
"Nastavenie dátumu:\n" +
93
"- Použijte klávesy \xab, \xbb pre voľbu roku\n" +
94
"- Použijte tlačítka " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " pre voľbu mesiaca\n" +
95
"- Podržte tlačitko myši na hociakej časti týchto tlačítiek pre rychlú voľbu.";
96
Calendar._TT["ABOUT_TIME"] = "\n\n" +
97
"Nastavenie času:\n" +
98
"- Kliknite na hociakú časť času pre jeho zvýšenie\n" +
99
"- alebo kliknite spolu so Shiftom, aby ste ho znížil\n" +
100
"- alebo kliknite a ťahajte pre rýchlejší výber.";
101

    
102
Calendar._TT["PREV_YEAR"] = "Predchádzajúci rok (pridrž pre menu)";
103
Calendar._TT["PREV_MONTH"] = "Predchádzajúci mesiac (pridrž pre menu)";
104
Calendar._TT["GO_TODAY"] = "Dnešný dátum";
105
Calendar._TT["NEXT_MONTH"] = "Daľší mesiac (pridrž pre menu)";
106
Calendar._TT["NEXT_YEAR"] = "Daľší rok (pridrž pre menu)";
107
Calendar._TT["SEL_DATE"] = "Zvoľ dátum";
108
Calendar._TT["DRAG_TO_MOVE"] = "Chyť a ťahaj pre presun";
109
Calendar._TT["PART_TODAY"] = " (dnes)";
110

    
111
// the following is to inform that "%s" is to be the first day of week
112
// %s will be replaced with the day name.
113
Calendar._TT["DAY_FIRST"] = "Zobraz %s prvý";
114

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

    
120
Calendar._TT["CLOSE"] = "Zavrieť";
121
Calendar._TT["TODAY"] = "Dnes";
122
Calendar._TT["TIME_PART"] = "(Shift-)Klikni alebo ťahaj pre zmenu hodnoty";
123

    
124
// date formats
125
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
126
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
127

    
128
Calendar._TT["WK"] = "wk";
129
Calendar._TT["TIME"] = "Čas:";
(2-2/8)