bs.global.js 820 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: 'bs',
  10. week: {
  11. dow: 1,
  12. doy: 7, // The week that contains Jan 1st is the first week of the year.
  13. },
  14. buttonText: {
  15. prev: 'Prošli',
  16. next: 'Sljedeći',
  17. today: 'Danas',
  18. year: 'Godina',
  19. month: 'Mjesec',
  20. week: 'Sedmica',
  21. day: 'Dan',
  22. list: 'Raspored',
  23. },
  24. weekText: 'Sed',
  25. allDayText: 'Cijeli dan',
  26. moreLinkText(n) {
  27. return '+ još ' + n;
  28. },
  29. noEventsText: 'Nema događaja za prikazivanje',
  30. };
  31. index_js.globalLocales.push(locale);
  32. })(FullCalendar);