LaravelTest
115 строк · 4.1 Кб
1//! moment.js locale configuration
2//! locale : French [fr]
3//! author : John Fischer : https://github.com/jfroffice
4
5;(function (global, factory) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var monthsStrictRegex = /^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,15monthsShortStrictRegex = /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?)/i,16monthsRegex = /(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?|janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,17monthsParse = [18/^janv/i,19/^févr/i,20/^mars/i,21/^avr/i,22/^mai/i,23/^juin/i,24/^juil/i,25/^août/i,26/^sept/i,27/^oct/i,28/^nov/i,29/^déc/i,30];31
32var fr = moment.defineLocale('fr', {33months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(34'_'35),36monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(37'_'38),39monthsRegex: monthsRegex,40monthsShortRegex: monthsRegex,41monthsStrictRegex: monthsStrictRegex,42monthsShortStrictRegex: monthsShortStrictRegex,43monthsParse: monthsParse,44longMonthsParse: monthsParse,45shortMonthsParse: monthsParse,46weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),47weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),48weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'),49weekdaysParseExact: true,50longDateFormat: {51LT: 'HH:mm',52LTS: 'HH:mm:ss',53L: 'DD/MM/YYYY',54LL: 'D MMMM YYYY',55LLL: 'D MMMM YYYY HH:mm',56LLLL: 'dddd D MMMM YYYY HH:mm',57},58calendar: {59sameDay: '[Aujourd’hui à] LT',60nextDay: '[Demain à] LT',61nextWeek: 'dddd [à] LT',62lastDay: '[Hier à] LT',63lastWeek: 'dddd [dernier à] LT',64sameElse: 'L',65},66relativeTime: {67future: 'dans %s',68past: 'il y a %s',69s: 'quelques secondes',70ss: '%d secondes',71m: 'une minute',72mm: '%d minutes',73h: 'une heure',74hh: '%d heures',75d: 'un jour',76dd: '%d jours',77w: 'une semaine',78ww: '%d semaines',79M: 'un mois',80MM: '%d mois',81y: 'un an',82yy: '%d ans',83},84dayOfMonthOrdinalParse: /\d{1,2}(er|)/,85ordinal: function (number, period) {86switch (period) {87// TODO: Return 'e' when day of month > 1. Move this case inside88// block for masculine words below.89// See https://github.com/moment/moment/issues/337590case 'D':91return number + (number === 1 ? 'er' : '');92
93// Words with masculine grammatical gender: mois, trimestre, jour94default:95case 'M':96case 'Q':97case 'DDD':98case 'd':99return number + (number === 1 ? 'er' : 'e');100
101// Words with feminine grammatical gender: semaine102case 'w':103case 'W':104return number + (number === 1 ? 're' : 'e');105}106},107week: {108dow: 1, // Monday is the first day of the week.109doy: 4, // The week that contains Jan 4th is the first week of the year.110},111});112
113return fr;114
115})));116