et.global.js 818 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: 'et',
  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: 'Eelnev',
  16. next: 'Järgnev',
  17. today: 'Täna',
  18. year: 'Aasta',
  19. month: 'Kuu',
  20. week: 'Nädal',
  21. day: 'Päev',
  22. list: 'Päevakord',
  23. },
  24. weekText: 'näd',
  25. allDayText: 'Kogu päev',
  26. moreLinkText(n) {
  27. return '+ veel ' + n;
  28. },
  29. noEventsText: 'Kuvamiseks puuduvad sündmused',
  30. };
  31. index_js.globalLocales.push(locale);
  32. })(FullCalendar);