| /* Hindi initialisation for the jQuery UI date picker plugin. */
/* Written by Michael Dawart. */
jQuery(function($){
	$.datepicker.regional['hi'] = {
		closeText: '???',
		prevText: '?????',
		nextText: '????',
		currentText: '??',
		monthNames: ['????? ','?????','?????','??????','??','???',
		'?????','????? ','???????','???????','??????','???????'],
		monthNamesShort: ['??', '??', '?????', '??????', '??', '???',
		'?????', '??', '???', '????', '??', '??'],
		dayNames: ['??????', '??????', '???????', '??????', '???????', '????????', '??????'],
		dayNamesShort: ['???', '???', '????', '???', '????', '?????', '???'],
		dayNamesMin: ['???', '???', '????', '???', '????', '?????', '???'],
		weekHeader: '?????',
		dateFormat: 'dd/mm/yy',
		firstDay: 1,
		isRTL: false,
		showMonthAfterYear: false,
		yearSuffix: ''};
	$.datepicker.setDefaults($.datepicker.regional['hi']);
});
 |