Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / lib / moment / locale / fr.js
blobe79d52e0ef97257b097e7488eaa06e869cc16c7c
1 //! moment.js locale configuration
2 //! locale : French [fr]
3 //! author : John Fischer : https://github.com/jfroffice
5 ;(function (global, factory) {
6    typeof exports === 'object' && typeof module !== 'undefined'
7        && typeof require === 'function' ? factory(require('../moment')) :
8    typeof define === 'function' && define.amd ? define(['../moment'], factory) :
9    factory(global.moment)
10 }(this, (function (moment) { 'use strict';
12     //! moment.js locale configuration
14     var fr = moment.defineLocale('fr', {
15         months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
16             '_'
17         ),
18         monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
19             '_'
20         ),
21         monthsParseExact: true,
22         weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
23         weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
24         weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),
25         weekdaysParseExact: true,
26         longDateFormat: {
27             LT: 'HH:mm',
28             LTS: 'HH:mm:ss',
29             L: 'DD/MM/YYYY',
30             LL: 'D MMMM YYYY',
31             LLL: 'D MMMM YYYY HH:mm',
32             LLLL: 'dddd D MMMM YYYY HH:mm',
33         },
34         calendar: {
35             sameDay: '[Aujourd’hui à] LT',
36             nextDay: '[Demain à] LT',
37             nextWeek: 'dddd [à] LT',
38             lastDay: '[Hier à] LT',
39             lastWeek: 'dddd [dernier à] LT',
40             sameElse: 'L',
41         },
42         relativeTime: {
43             future: 'dans %s',
44             past: 'il y a %s',
45             s: 'quelques secondes',
46             ss: '%d secondes',
47             m: 'une minute',
48             mm: '%d minutes',
49             h: 'une heure',
50             hh: '%d heures',
51             d: 'un jour',
52             dd: '%d jours',
53             M: 'un mois',
54             MM: '%d mois',
55             y: 'un an',
56             yy: '%d ans',
57         },
58         dayOfMonthOrdinalParse: /\d{1,2}(er|)/,
59         ordinal: function (number, period) {
60             switch (period) {
61                 // TODO: Return 'e' when day of month > 1. Move this case inside
62                 // block for masculine words below.
63                 // See https://github.com/moment/moment/issues/3375
64                 case 'D':
65                     return number + (number === 1 ? 'er' : '');
67                 // Words with masculine grammatical gender: mois, trimestre, jour
68                 default:
69                 case 'M':
70                 case 'Q':
71                 case 'DDD':
72                 case 'd':
73                     return number + (number === 1 ? 'er' : 'e');
75                 // Words with feminine grammatical gender: semaine
76                 case 'w':
77                 case 'W':
78                     return number + (number === 1 ? 're' : 'e');
79             }
80         },
81         week: {
82             dow: 1, // Monday is the first day of the week.
83             doy: 4, // The week that contains Jan 4th is the first week of the year.
84         },
85     });
87     return fr;
89 })));