설명 없음

el.js 1.0KB

123456789101112131415161718192021222324252627282930
  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.el = factory()));
  5. }(this, function () { 'use strict';
  6. var el = {
  7. code: "el",
  8. week: {
  9. dow: 1,
  10. doy: 4 // The week that contains Jan 4st is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "Προηγούμενος",
  14. next: "Επόμενος",
  15. today: "Σήμερα",
  16. month: "Μήνας",
  17. week: "Εβδομάδα",
  18. day: "Ημέρα",
  19. list: "Ατζέντα"
  20. },
  21. weekLabel: "Εβδ",
  22. allDayText: "Ολοήμερο",
  23. eventLimitText: "περισσότερα",
  24. noEventsMessage: "Δεν υπάρχουν γεγονότα για να εμφανιστεί"
  25. };
  26. return el;
  27. }));