You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					24 lines
				
				905 B
			
		
		
			
		
	
	
					24 lines
				
				905 B
			| 
											13 years ago
										 | /* Slovak initialisation for the jQuery UI date picker plugin. */
 | ||
|  | /* Written by Vojtech Rinik (vojto@hmm.sk). */
 | ||
|  | jQuery(function($){
 | ||
|  | 	$.datepicker.regional['sk'] = {
 | ||
|  | 		closeText: 'Zavrieť',
 | ||
|  | 		prevText: '<Predchádzajúci',
 | ||
|  | 		nextText: 'Nasledujúci>',
 | ||
|  | 		currentText: 'Dnes',
 | ||
|  | 		monthNames: ['január','február','marec','apríl','máj','jún',
 | ||
|  | 		'júl','august','september','október','november','december'],
 | ||
|  | 		monthNamesShort: ['Jan','Feb','Mar','Apr','Máj','Jún',
 | ||
|  | 		'Júl','Aug','Sep','Okt','Nov','Dec'],
 | ||
|  | 		dayNames: ['nedeľa','pondelok','utorok','streda','štvrtok','piatok','sobota'],
 | ||
|  | 		dayNamesShort: ['Ned','Pon','Uto','Str','Štv','Pia','Sob'],
 | ||
|  | 		dayNamesMin: ['Ne','Po','Ut','St','Št','Pia','So'],
 | ||
|  | 		weekHeader: 'Ty',
 | ||
|  | 		dateFormat: 'dd.mm.yy',
 | ||
|  | 		firstDay: 1,
 | ||
|  | 		isRTL: false,
 | ||
|  | 		showMonthAfterYear: false,
 | ||
|  | 		yearSuffix: ''};
 | ||
|  | 	$.datepicker.setDefaults($.datepicker.regional['sk']);
 | ||
|  | });
 |