Mercurial > hg > rc2
comparison plugins/jqueryui/js/i18n/jquery.ui.datepicker-fr.js @ 0:4681f974d28b
vanilla 1.3.3 distro, I hope
author | Charlie Root |
---|---|
date | Thu, 04 Jan 2018 15:52:31 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4681f974d28b |
---|---|
1 /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */ | |
2 /* French initialisation for the jQuery UI date picker plugin. */ | |
3 /* Written by Keith Wood (kbwood{at}iinet.com.au), | |
4 Stéphane Nahmani (sholby@sholby.net), | |
5 Stéphane Raimbault <stephane.raimbault@gmail.com> */ | |
6 jQuery(function($){ | |
7 $.datepicker.regional['fr'] = { | |
8 closeText: 'Fermer', | |
9 prevText: 'Précédent', | |
10 nextText: 'Suivant', | |
11 currentText: 'Aujourd\'hui', | |
12 monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin', | |
13 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'], | |
14 monthNamesShort: ['Janv.','Févr.','Mars','Avril','Mai','Juin', | |
15 'Juil.','Août','Sept.','Oct.','Nov.','Déc.'], | |
16 dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'], | |
17 dayNamesShort: ['Dim.','Lun.','Mar.','Mer.','Jeu.','Ven.','Sam.'], | |
18 dayNamesMin: ['D','L','M','M','J','V','S'], | |
19 weekHeader: 'Sem.', | |
20 dateFormat: 'dd/mm/yy', | |
21 firstDay: 1, | |
22 isRTL: false, | |
23 showMonthAfterYear: false, | |
24 yearSuffix: ''}; | |
25 $.datepicker.setDefaults($.datepicker.regional['fr']); | |
26 }); | |
27 /* @license-end */ |