fr.global.js 830 B

12345678910111213141516171819202122232425262728293031323334
  1. /*!
  2. FullCalendar Core v6.1.14
  3. Docs & License: https://fullcalendar.io
  4. (c) 2024 Adam Shaw
  5. */
  6. (function (index_js) {
  7. 'use strict';
  8. var locale = {
  9. code: 'fr',
  10. week: {
  11. dow: 1,
  12. doy: 4, // The week that contains Jan 4th is the first week of the year.
  13. },
  14. buttonText: {
  15. prev: 'Précédent',
  16. next: 'Suivant',
  17. today: 'Aujourd\'hui',
  18. year: 'Année',
  19. month: 'Mois',
  20. week: 'Semaine',
  21. day: 'Jour',
  22. list: 'Planning',
  23. },
  24. weekText: 'Sem.',
  25. weekTextLong: 'Semaine',
  26. allDayText: 'Toute la journée',
  27. moreLinkText: 'en plus',
  28. noEventsText: 'Aucun évènement à afficher',
  29. };
  30. index_js.globalLocales.push(locale);
  31. })(FullCalendar);