No Description

de.js 1022B

123456789101112131415161718192021222324252627282930313233
  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.de = factory()));
  5. }(this, function () { 'use strict';
  6. var de = {
  7. code: "de",
  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: "Zurück",
  14. next: "Vor",
  15. today: "Heute",
  16. year: "Jahr",
  17. month: "Monat",
  18. week: "Woche",
  19. day: "Tag",
  20. list: "Terminübersicht"
  21. },
  22. weekLabel: "KW",
  23. allDayText: "Ganztägig",
  24. eventLimitText: function (n) {
  25. return "+ weitere " + n;
  26. },
  27. noEventsMessage: "Keine Ereignisse anzuzeigen"
  28. };
  29. return de;
  30. }));