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