No Description

fr.js 999B

12345678910111213141516171819202122232425262728293031
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fr = factory()));
  5. }(this, function () { 'use strict';
  6. var fr = {
  7. code: "fr",
  8. week: {
  9. dow: 1,
  10. doy: 4 // The week that contains Jan 4th is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "Précédent",
  14. next: "Suivant",
  15. today: "Aujourd'hui",
  16. year: "Année",
  17. month: "Mois",
  18. week: "Semaine",
  19. day: "Jour",
  20. list: "Mon planning"
  21. },
  22. weekLabel: "Sem.",
  23. allDayHtml: "Toute la<br/>journée",
  24. eventLimitText: "en plus",
  25. noEventsMessage: "Aucun événement à afficher"
  26. };
  27. return fr;
  28. }));