de.js 640 B

123456789101112131415161718192021222324252627282930
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var de = {
  4. code: 'de',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'Zurück',
  11. next: 'Vor',
  12. today: 'Heute',
  13. year: 'Jahr',
  14. month: 'Monat',
  15. week: 'Woche',
  16. day: 'Tag',
  17. list: 'Terminübersicht',
  18. },
  19. weekText: 'KW',
  20. allDayText: 'Ganztägig',
  21. moreLinkText: function(n) {
  22. return '+ weitere ' + n
  23. },
  24. noEventsText: 'Keine Ereignisse anzuzeigen',
  25. };
  26. return de;
  27. }());