// $Id: calendar-sk.js ???? 2009-02-03 16:25:00Z slip $
/* 
	calendar-sk-win.js
	language: Slovak
	encoding: UTF-8
	author: Bofo (bofo@bofo.sk)
*/

// ** I18N
Zapatec.Calendar._DN  = new Array('Nedeľa','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota','Nedeľa');
Zapatec.Calendar._SDN = new Array('Ned','Pon','Uto','Str','Štv','Pia','Sob','Ned');
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','Sep','Okt','Nov','Dec');

// tooltips
Zapatec.Calendar._TT_cs = Zapatec.Calendar._TT = {};
Zapatec.Calendar._TT["INFO"] = "O komponente kalendár";
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"] = "Vyber dátum [ŠEDÁ PLOCHA = OBSADENÝ TERMÍN]";
Zapatec.Calendar._TT["DRAG_TO_MOVE"] = "Chyť a ťahaj pre zmenu pozície";
Zapatec.Calendar._TT["PART_TODAY"] = " (dnes)";
Zapatec.Calendar._TT["MON_FIRST"] = "Ukáž ako prvý Pondelok";
//Zapatec.Calendar._TT["SUN_FIRST"] = "Ukáž ako prvú Nedeľu";

Zapatec.Calendar._TT["ABOUT"] =
"DHTML Date/Time Selector\n" +
"(c) zapatec.com 2002-2007\n" + // don't translate this this ;-)
"Aktuálnu verziu nájdete na: http://www.zapatec.com/\n" +
"Tento preklad je distribuovaný prostredníctvom GNU LGPL.\n" +
"Pozri http://gnu.org/licenses/lgpl.html pre podrobnosti." +
"\n\n" +
"Výber dátumu:\n" +
"- Použite tlačítka \xab , \xbb pre výber roku.\n" +
"- Použite tlačítka " + String.fromCharCode(0x2039) + " , " + String.fromCharCode(0x203a) + " pre výber mesiaca.\n" +
"- Podržte tlačítko myši na ktoromkoľvek z týchto tlačidiel pre rýchlejší výber.";

Zapatec.Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Výber času:\n" +
"- Kliknite na ktorúkoľvek z častí výberu času pre zvýšenie.\n" +
"- alebo Shift-click pre zníženie\n" +
"- alebo kliknite a potiahnite 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 ako 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"] = "Dnešný dátum";
Zapatec.Calendar._TT["TIME_PART"] = "(Shift-)Klikni alebo potiahni pre zmenu hodnoty";

// date formats
Zapatec.Calendar._TT["DEF_DATE_FORMAT"] = "d.m.yy";
Zapatec.Calendar._TT["TT_DATE_FORMAT"] = "%d.%m.%Y – %A";

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
