sk.global.js 829 B

1234567891011121314151617181920212223242526272829303132333435
  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: 'sk',
  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: 'Predchádzajúci',
  16. next: 'Nasledujúci',
  17. today: 'Dnes',
  18. year: 'Rok',
  19. month: 'Mesiac',
  20. week: 'Týždeň',
  21. day: 'Deň',
  22. list: 'Rozvrh',
  23. },
  24. weekText: 'Ty',
  25. allDayText: 'Celý deň',
  26. moreLinkText(n) {
  27. return '+ďalšie: ' + n;
  28. },
  29. noEventsText: 'Žiadne akcie na zobrazenie',
  30. };
  31. index_js.globalLocales.push(locale);
  32. })(FullCalendar);