UNPKG

596 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var pl = {
5 code: "pl",
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4 // The week that contains Jan 4th is the first week of the year.
9 },
10 buttonText: {
11 prev: "Poprzedni",
12 next: "Następny",
13 today: "Dziś",
14 month: "Miesiąc",
15 week: "Tydzień",
16 day: "Dzień",
17 list: "Plan dnia"
18 },
19 weekText: "Tydz",
20 allDayText: "Cały dzień",
21 moreLinkText: "więcej",
22 noEventsText: "Brak wydarzeń do wyświetlenia"
23 };
24
25 return pl;
26
27}());