/* Hungarian (UTF-8) initialisation for the jQuery UI date picker plugin. */
/* Written by Tamas Erdelyi (terdelyi@gmail.com). */
jQuery(function($){
	$.datepicker.regional['hu'] = {
		clearText: 'Törlés', // Display text for clear link
		clearStatus: 'Aktuális dátum törlése', // Status text for clear link
		closeText: 'Bezárás', // Display text for close link
		closeStatus: 'Bezárás mentés nélkül', // Status text for close link
		prevText: '&#x3c;Hátra', // Display text for previous month link
		prevStatus: 'Előző hónap megjelenítése', // Status text for previous month link
		nextText: 'Előre&#x3e;', // Display text for next month link
		nextStatus: 'Következő hónap megjelenítése', // Status text for next month link
		currentText: 'Ma', // Display text for current month link
		currentStatus: 'Aktuális hónap megjelenítése', // Status text for current month link
		monthNames: ['január','február','március','április','május','június', 'július','augusztus','szeptember','október','november','december'], // Names of months for drop-down and formatting
		monthNamesShort: ['jan.', 'febr.', 'márc.', 'ápr.', 'máj.', 'jún.', 'júl.', 'aug.', 'szept.', 'okt.', 'nov.', 'dec.'], // For formatting
		monthStatus: 'Más hónap megjelenítése', // Status text for selecting a month
		yearStatus: 'Más év megjelenítése', // Status text for selecting a year
		weekHeader: 'Hét', // Header for the week of the year column
		weekStatus: 'Az év hete', // Status text for the week of the year column
		dayNames: ['vasárnap', 'hétfő', 'kedd', 'szerda', 'csütörtök', 'péntek', 'szombat'], // For formatting
		dayNamesShort: ['vas.', 'hét.', 'ke.', 'szer.', 'csüt.', 'pént.', 'szomb.'], // For formatting
		dayNamesMin: ['v','h','k','sz','cs','p','szo'], // Column headings for days starting at Sunday
		dayStatus: 'Set DD as first week day', // Status text for the day of the week selection
		dateStatus: 'Kiválasztás: ÉÉ, H N', // Status text for the date selection
		dateFormat: 'yy/mm/dd', // See format options on parseDate
		firstDay: 1, // The first day of the week, Sun = 0, Mon = 1, ...
		initStatus: 'Válassz egy dátumot!', // Initial Status text on opening
		isRTL: false // True if right-to-left language, false if left-to-right;
		}
	$.datepicker.setDefaults($.datepicker.regional['hu']);
});
