No Description

et.js 997B

1234567891011121314151617181920212223242526272829303132
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.et = factory()));
  5. }(this, function () { 'use strict';
  6. var et = {
  7. code: "et",
  8. week: {
  9. dow: 1,
  10. doy: 4 // The week that contains Jan 4th is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "Eelnev",
  14. next: "Järgnev",
  15. today: "Täna",
  16. month: "Kuu",
  17. week: "Nädal",
  18. day: "Päev",
  19. list: "Päevakord"
  20. },
  21. weekLabel: "näd",
  22. allDayText: "Kogu päev",
  23. eventLimitText: function (n) {
  24. return "+ veel " + n;
  25. },
  26. noEventsMessage: "Kuvamiseks puuduvad sündmused"
  27. };
  28. return et;
  29. }));