1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
| /* Swiss-French initialisation for the jQuery UI date picker plugin. */
| /* Written Martin Voelkle (martin.voelkle@e-tc.ch). */
| jQuery(function($){
| $.datepicker.regional['fr-CH'] = {
| closeText: 'Fermer',
| prevText: '<Préc',
| nextText: 'Suiv>',
| currentText: 'Courant',
| monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
| 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
| monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun',
| 'Jul','Aoû','Sep','Oct','Nov','Déc'],
| dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
| dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'],
| dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'],
| weekHeader: 'Sm',
| dateFormat: 'dd.mm.yy',
| firstDay: 1,
| isRTL: false,
| showMonthAfterYear: false,
| yearSuffix: ''};
| $.datepicker.setDefaults($.datepicker.regional['fr-CH']);
| });
| /* @license-end */
|
|