UNPKG

619 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var fr = {
5 code: "fr",
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4 // The week that contains Jan 4th is the first week of the year.
9 },
10 buttonText: {
11 prev: "Précédent",
12 next: "Suivant",
13 today: "Aujourd'hui",
14 year: "Année",
15 month: "Mois",
16 week: "Semaine",
17 day: "Jour",
18 list: "Planning"
19 },
20 weekText: "Sem.",
21 allDayText: "Toute la journée",
22 moreLinkText: "en plus",
23 noEventsText: "Aucun événement à afficher"
24 };
25
26 return fr;
27
28}());