// full day names
Calendar._DN = new Array
("Vasárnap",
 "Hétfő",
 "Kedd",
 "Szerda",
 "Csütörtök",
 "Péntek",
 "Szombat",
 "Vasárnap");

// short day names
Calendar._SDN = new Array
("Vas",
 "Hét",
 "Kedd",
 "Szer",
 "Csüt",
 "Pén",
 "Szom",
 "Vas");

// full month names
Calendar._MN = new Array
("Január",
 "Február",
 "Március",
 "Április",
 "Május",
 "Június",
 "Július",
 "Augusztus",
 "Szeptember",
 "Október",
 "November",
 "December");

// short month names
Calendar._SMN = new Array
("Jan",
 "Feb",
 "Már",
 "Ápr",
 "Máj",
 "Jún",
 "Júl",
 "Aug",
 "Szep",
 "Okt",
 "Nov",
 "Dec");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "A naptárrol bővebben";

Calendar._TT["ABOUT"] =
"DHTML Date/Time Selector\n" +
"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
"For latest version visit: http://dynarch.com/mishoo/calendar.epl\n" +
"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details.";

Calendar._TT["PREV_YEAR"] = "Előző év";
Calendar._TT["PREV_MONTH"] = "Előző hónap";
Calendar._TT["GO_TODAY"] = "Ugrás a mai napra";
Calendar._TT["NEXT_MONTH"] = "Következő hónap";
Calendar._TT["NEXT_YEAR"] = "Következő év";
Calendar._TT["SEL_DATE"] = "Válasszon dátumot";
Calendar._TT["DRAG_TO_MOVE"] = "Húzza a mozgatáshoz";
Calendar._TT["PART_TODAY"] = " (Mai nap)";

// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
Calendar._TT["DAY_FIRST"] = "%s a hét első napja";

// 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.
Calendar._TT["WEEKEND"] = "0,6";

Calendar._TT["CLOSE"] = "Bezár";
Calendar._TT["TODAY"] = "Mai nap";
Calendar._TT["TIME_PART"] = "Módositás: katt vagy húzás";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "%Y/%m/%d";
Calendar._TT["TT_DATE_FORMAT"] = "%b %e %a";

Calendar._TT["WK"] = "Hét";
Calendar._TT["TIME"] = "Óra:";

