No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

28 líneas
598B

  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var pl = {
  4. code: 'pl',
  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: 'Poprzedni',
  11. next: 'Następny',
  12. today: 'Dziś',
  13. month: 'Miesiąc',
  14. week: 'Tydzień',
  15. day: 'Dzień',
  16. list: 'Plan dnia',
  17. },
  18. weekText: 'Tydz',
  19. allDayText: 'Cały dzień',
  20. moreLinkText: 'więcej',
  21. noEventsText: 'Brak wydarzeń do wyświetlenia',
  22. };
  23. return pl;
  24. }());