1 |
|
2 | import dayjs from '../index';
|
3 | var locale = {
|
4 | name: 'fr-ch',
|
5 | weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
|
6 | months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
|
7 | weekStart: 1,
|
8 | weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
|
9 | monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
|
10 | weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
|
11 | ordinal: function ordinal(n) {
|
12 | return n;
|
13 | },
|
14 | formats: {
|
15 | LT: 'HH:mm',
|
16 | LTS: 'HH:mm:ss',
|
17 | L: 'DD.MM.YYYY',
|
18 | LL: 'D MMMM YYYY',
|
19 | LLL: 'D MMMM YYYY HH:mm',
|
20 | LLLL: 'dddd D MMMM YYYY HH:mm'
|
21 | },
|
22 | relativeTime: {
|
23 | future: 'dans %s',
|
24 | past: 'il y a %s',
|
25 | s: 'quelques secondes',
|
26 | m: 'une minute',
|
27 | mm: '%d minutes',
|
28 | h: 'une heure',
|
29 | hh: '%d heures',
|
30 | d: 'un jour',
|
31 | dd: '%d jours',
|
32 | M: 'un mois',
|
33 | MM: '%d mois',
|
34 | y: 'un an',
|
35 | yy: '%d ans'
|
36 | }
|
37 | };
|
38 | dayjs.locale(locale, null, true);
|
39 | export default locale; |
\ | No newline at end of file |