source: trunk/themes/default/js/ui/i18n/jquery.ui.datepicker-fr-CH.js @ 28780

Last change on this file since 28780 was 28780, checked in by rvelices, 10 years ago

upgrade jquery ui from 1.10.1 to 1.10.4

File size: 957 bytes
Line 
1/* Swiss-French initialisation for the jQuery UI date picker plugin. */
2/* Written Martin Voelkle (martin.voelkle@e-tc.ch). */
3jQuery(function($){
4        $.datepicker.regional['fr-CH'] = {
5                closeText: 'Fermer',
6                prevText: '<Préc',
7                nextText: 'Suiv>',
8                currentText: 'Courant',
9                monthNames: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin',
10                        'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
11                monthNamesShort: ['janv.', 'févr.', 'mars', 'avril', 'mai', 'juin',
12                        'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],
13                dayNames: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
14                dayNamesShort: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],
15                dayNamesMin: ['D', 'L', 'M', 'M', 'J', 'V', 'S'],
16                weekHeader: 'Sm',
17                dateFormat: 'dd.mm.yy',
18                firstDay: 1,
19                isRTL: false,
20                showMonthAfterYear: false,
21                yearSuffix: ''};
22        $.datepicker.setDefaults($.datepicker.regional['fr-CH']);
23});
Note: See TracBrowser for help on using the repository browser.