1
|
/*
|
2
|
calendar-cs-win.js
|
3
|
language: Czech
|
4
|
encoding: windows-1250
|
5
|
author: Lubos Jerabek (xnet@seznam.cz)
|
6
|
Jan Uhlir (espinosa@centrum.cz)
|
7
|
*/
|
8
|
|
9
|
// ** I18N
|
10
|
Calendar._DN = new Array('Ned?le','Pond?l?','?ter?','St?eda','?tvrtek','P?tek','Sobota','Ned?le');
|
11
|
Calendar._SDN = new Array('Ne','Po','?t','St','?t','P?','So','Ne');
|
12
|
Calendar._MN = new Array('Leden','?nor','B?ezen','Duben','Kv?ten','?erven','?ervenec','Srpen','Z???','??jen','Listopad','Prosinec');
|
13
|
Calendar._SMN = new Array('Led','?no','B?e','Dub','Kv?','?rv','?vc','Srp','Z??','??j','Lis','Pro');
|
14
|
|
15
|
// tooltips
|
16
|
Calendar._TT = {};
|
17
|
Calendar._TT["INFO"] = "O komponent? kalend??";
|
18
|
Calendar._TT["TOGGLE"] = "Zm?na prvn?ho dne v t?dnu";
|
19
|
Calendar._TT["PREV_YEAR"] = "P?edchoz? rok (p?idr? pro menu)";
|
20
|
Calendar._TT["PREV_MONTH"] = "P?edchoz? m?s?c (p?idr? pro menu)";
|
21
|
Calendar._TT["GO_TODAY"] = "Dne?n? datum";
|
22
|
Calendar._TT["NEXT_MONTH"] = "Dal?? m?s?c (p?idr? pro menu)";
|
23
|
Calendar._TT["NEXT_YEAR"] = "Dal?? rok (p?idr? pro menu)";
|
24
|
Calendar._TT["SEL_DATE"] = "Vyber datum";
|
25
|
Calendar._TT["DRAG_TO_MOVE"] = "Chy? a t?hni, pro p?esun";
|
26
|
Calendar._TT["PART_TODAY"] = " (dnes)";
|
27
|
Calendar._TT["MON_FIRST"] = "Uka? jako prvn? Pond?l?";
|
28
|
//Calendar._TT["SUN_FIRST"] = "Uka? jako prvn? Ned?li";
|
29
|
|
30
|
Calendar._TT["ABOUT"] =
|
31
|
"DHTML Date/Time Selector\n" +
|
32
|
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
|
33
|
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
|
34
|
"Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
|
35
|
"\n\n" +
|
36
|
"V?b?r datumu:\n" +
|
37
|
"- Use the \xab, \xbb buttons to select year\n" +
|
38
|
"- Pou?ijte tla??tka " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " k v?b?ru m?s?ce\n" +
|
39
|
"- Podr?te tla??tko my?i na jak?mkoliv z t?ch tla??tek pro rychlej?? v?b?r.";
|
40
|
|
41
|
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
42
|
"V?b?r ?asu:\n" +
|
43
|
"- Klikn?te na jakoukoliv z ??st? v?b?ru ?asu pro zv??en?.\n" +
|
44
|
"- nebo Shift-click pro sn?en?\n" +
|
45
|
"- nebo klikn?te a t?hn?te pro rychlej?? v?b?r.";
|
46
|
|
47
|
// the following is to inform that "%s" is to be the first day of week
|
48
|
// %s will be replaced with the day name.
|
49
|
Calendar._TT["DAY_FIRST"] = "Zobraz %s prvn?";
|
50
|
|
51
|
// This may be locale-dependent. It specifies the week-end days, as an array
|
52
|
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
53
|
// means Monday, etc.
|
54
|
Calendar._TT["WEEKEND"] = "0,6";
|
55
|
|
56
|
Calendar._TT["CLOSE"] = "Zav??t";
|
57
|
Calendar._TT["TODAY"] = "Dnes";
|
58
|
Calendar._TT["TIME_PART"] = "(Shift-)Klikni nebo t?hni pro zm?nu hodnoty";
|
59
|
|
60
|
// date formats
|
61
|
Calendar._TT["DEF_DATE_FORMAT"] = "d.m.yy";
|
62
|
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
|
63
|
|
64
|
Calendar._TT["WK"] = "wk";
|
65
|
Calendar._TT["TIME"] = "?as:";
|