// $Id: calendar-cs.js 6573 2007-03-09 08:36:16Z slip $
/* 
	calendar-sk.js
	language: Slovak
	encoding: UTF-8
	author: Roman Melíšek (roman@melisek.sk)

*/

// ** I18N
Zapatec.Calendar._DN  = new Array('nedeľu','pondelok','utorok','streda','štvrtok','piatok','sobotu','nedeľu');
Zapatec.Calendar._SDN = new Array('Ne','Po','Ut','St','Št','Pia','So','Ne');
Zapatec.Calendar._MN  = new Array('Január','Február','Marec','Apríl','Máj','Jún','Júl','August','September','Október','November','December');
Zapatec.Calendar._SMN = new Array('Jan','Feb','Mar','Apr','Máj','Jún','Júl','Aug','Spt','Okt','Nov','Dec');

// tooltips
Zapatec.Calendar._TT_cs = Zapatec.Calendar._TT = {};
Zapatec.Calendar._TT["INFO"] = "O kalendári";
Zapatec.Calendar._TT["TOGGLE"] = "Zmena prvého dňa v týždni";
Zapatec.Calendar._TT["PREV_YEAR"] = "Predchádzajúci rok (pridrž pre menu)";
Zapatec.Calendar._TT["PREV_MONTH"] = "Predchádzajúci mesiac (pridrž pre menu)";
Zapatec.Calendar._TT["GO_TODAY"] = "Dnešný dátum";
Zapatec.Calendar._TT["NEXT_MONTH"] = "Ďalší mesiac (pridrž pre menu)";
Zapatec.Calendar._TT["NEXT_YEAR"] = "Ďalší rok (pridrž pre menu)";
Zapatec.Calendar._TT["SEL_DATE"] = "Výber dátumu";
Zapatec.Calendar._TT["DRAG_TO_MOVE"] = "Chyťte a ťahajte pre presun";
Zapatec.Calendar._TT["PART_TODAY"] = " (dnes)";
Zapatec.Calendar._TT["MON_FIRST"] = "Ukáž ako prvný Pondelok";
//Zapatec.Calendar._TT["SUN_FIRST"] = "Ukaž jako první Neděli";

Zapatec.Calendar._TT["ABOUT"] =
"DHTML Date/Time Selector\n" +
"(c) zapatec.com 2002-2007\n" + // don't translate this this ;-)
"For latest version visit: http://www.zapatec.com/\n" +
"This translation distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
"\n\n" +
"Výběr datumu:\n" +
"- Use the \xab, \xbb buttons to select year\n" +
"- Použite tlačítka " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " k výběru měsíce\n" +
"- Podržte tlačítko myši na akomkoľvek z tých tlačítok pre rýchlejší výber.";

Zapatec.Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Výber času:\n" +
"- Kliknite na akúkoľvek z častí výberu pre zvýšenie.\n" +
"- alebo Shift - click pre zníženie\n" +
"- alebo kliknite a ťahajte pre rýchlejší výber.";

// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
Zapatec.Calendar._TT["DAY_FIRST"] = "Zobraz %s prvý";

// This may be locale-dependent.  It specifies the week-end days, as an array
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
// means Monday, etc.
Zapatec.Calendar._TT["WEEKEND"] = "0,6";

Zapatec.Calendar._TT["CLOSE"] = "Zavrieť";
Zapatec.Calendar._TT["TODAY"] = "Dnes";
Zapatec.Calendar._TT["TIME_PART"] = "(Shift-)Kliknite alebo potiahnite pre zmenu hodnoty";

// date formats
Zapatec.Calendar._TT["DEF_DATE_FORMAT"] = "d.m.yy";
Zapatec.Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";

Zapatec.Calendar._TT["WK"] = "wk";
Zapatec.Calendar._TT["TIME"] = "Čas:";

/* Preserve data */
	if(Zapatec.Calendar._DN) Zapatec.Calendar._TT._DN = Zapatec.Calendar._DN;
	if(Zapatec.Calendar._SDN) Zapatec.Calendar._TT._SDN = Zapatec.Calendar._SDN;
	if(Zapatec.Calendar._SDN_len) Zapatec.Calendar._TT._SDN_len = Zapatec.Calendar._SDN_len;
	if(Zapatec.Calendar._MN) Zapatec.Calendar._TT._MN = Zapatec.Calendar._MN;
	if(Zapatec.Calendar._SMN) Zapatec.Calendar._TT._SMN = Zapatec.Calendar._SMN;
	if(Zapatec.Calendar._SMN_len) Zapatec.Calendar._TT._SMN_len = Zapatec.Calendar._SMN_len;
	Zapatec.Calendar._DN = Zapatec.Calendar._SDN = Zapatec.Calendar._SDN_len = Zapatec.Calendar._MN = Zapatec.Calendar._SMN = Zapatec.Calendar._SMN_len = null
