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.
		
		
		
		
			
				
					26 lines
				
				1008 B
			
		
		
			
		
	
	
					26 lines
				
				1008 B
			| 
											13 years ago
										 | /* French initialisation for the jQuery UI date picker plugin. */
 | ||
|  | /* Written by Keith Wood (kbwood{at}iinet.com.au),
 | ||
|  | 			  Stéphane Nahmani (sholby@sholby.net),
 | ||
|  | 			  Stéphane Raimbault <stephane.raimbault@gmail.com> */
 | ||
|  | jQuery(function($){
 | ||
|  | 	$.datepicker.regional['fr'] = {
 | ||
|  | 		closeText: 'Fermer',
 | ||
|  | 		prevText: 'Précédent',
 | ||
|  | 		nextText: 'Suivant',
 | ||
|  | 		currentText: 'Aujourd\'hui',
 | ||
|  | 		monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
 | ||
|  | 		'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
 | ||
|  | 		monthNamesShort: ['Janv.','Févr.','Mars','Avril','Mai','Juin',
 | ||
|  | 		'Juil.','Août','Sept.','Oct.','Nov.','Déc.'],
 | ||
|  | 		dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
 | ||
|  | 		dayNamesShort: ['Dim.','Lun.','Mar.','Mer.','Jeu.','Ven.','Sam.'],
 | ||
|  | 		dayNamesMin: ['D','L','M','M','J','V','S'],
 | ||
|  | 		weekHeader: 'Sem.',
 | ||
|  | 		dateFormat: 'dd/mm/yy',
 | ||
|  | 		firstDay: 1,
 | ||
|  | 		isRTL: false,
 | ||
|  | 		showMonthAfterYear: false,
 | ||
|  | 		yearSuffix: ''};
 | ||
|  | 	$.datepicker.setDefaults($.datepicker.regional['fr']);
 | ||
|  | });
 |