// ** I18N

// Calendar HU language
// Author: Mihai Bazon, <mishoo@infoiasi.ro>
// Translation: Vass László <vassdoki@imind.hu>
// Encoding: iso-8859-2
// Distributed under the same terms as the calendar itself.

Calendar.I18N={};

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

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

// short day names
Calendar.I18N._SDN = new Array
("V",
 "H",
 "K",
 "SZE",
 "CS",
 "P",
 "SZO",
 "V");

// full month names
Calendar.I18N._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.I18N._SMN = new Array
("Jan",
 "Feb",
 "Már",
 "Ápr",
 "Máj",
 "Jún",
 "Júl",
 "Aug",
 "Szep",
 "Okt",
 "Nov",
 "Dec");

// tooltips
Calendar.I18N._TT = {};
Calendar.I18N._TT["INFO"] = "Névjegy";

Calendar.I18N._TT["ABOUT"] =
"DHTML dátum/idő választó\n" +
"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
"Legfrissebb verzió: http://dynarch.com/mishoo/calendar.epl\n" +
"GNU LGPL lincensszel terjesztve. Lásd: http://gnu.org/licenses/lgpl.html a részletekért." +
"\n\n" +
"Dátum választás:\n" +
"- Használd \xab, \xbb gombokat az év választáshoz\n" +
"- Használd a " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " gombokat a hónap választáshoz\n" +
"- Tarsd lenyomva az egér gombot bármelyiken a fennt említett gombokon a gyorsabb választásért.";
Calendar.I18N._TT["ABOUT_TIME"] = "\n\n" +
"Idő választás:\n" +
"- Klikkelj bármelyik részére a növeléshez\n" +
"- vagy shift+klikk a csökkentéshez\n" +
"- vagy tartsd lenyomva az egér gombot és jobbra-balra változtasd az értéket.";

Calendar.I18N._TT["PREV_YEAR"] = "Előző év (nyomva tart-menü)";
Calendar.I18N._TT["PREV_MONTH"] = "Előző hó (nyomva tart-menü)";
Calendar.I18N._TT["GO_TODAY"] = "Mai Nap";
Calendar.I18N._TT["NEXT_MONTH"] = "Következő hó (nyomva tart-menü)";
Calendar.I18N._TT["NEXT_YEAR"] = "Következő év (nyomva tart-menü)";
Calendar.I18N._TT["SEL_DATE"] = "Válassz dátumot";
Calendar.I18N._TT["DRAG_TO_MOVE"] = "Húzd a mozgatáshoz";
Calendar.I18N._TT["PART_TODAY"] = " (ma)";

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

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

Calendar.I18N._TT["CLOSE"] = "Bezár";
Calendar.I18N._TT["TODAY"] = "Ma";
Calendar.I18N._TT["TIME_PART"] = "(Shift-)Klikk vagy húzd";

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

Calendar.I18N._TT["WK"] = "hét";
Calendar.I18N._TT["TIME"] = "Idő:";
