25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

2 yıl önce
12345678910111213141516171819202122232425262728
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var frCh = {
  4. code: 'fr-ch',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'Précédent',
  11. next: 'Suivant',
  12. today: 'Courant',
  13. year: 'Année',
  14. month: 'Mois',
  15. week: 'Semaine',
  16. day: 'Jour',
  17. list: 'Mon planning',
  18. },
  19. weekText: 'Sm',
  20. allDayText: 'Toute la journée',
  21. moreLinkText: 'en plus',
  22. noEventsText: 'Aucun événement à afficher',
  23. };
  24. return frCh;
  25. }());