forked from kbwood/calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.calendars-pl.js
24 lines (24 loc) · 1003 Bytes
/
jquery.calendars-pl.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* http://keith-wood.name/calendars.html
Polish localisation for Gregorian/Julian calendars for jQuery.
Written by Jacek Wysocki ([email protected]). */
(function($) {
$.calendars.calendars.gregorian.prototype.regionalOptions['pl'] = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec',
'Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'],
monthNamesShort: ['Sty','Lu','Mar','Kw','Maj','Cze',
'Lip','Sie','Wrz','Pa','Lis','Gru'],
dayNames: ['Niedziela','Poniedzialek','Wtorek','Środa','Czwartek','Piątek','Sobota'],
dayNamesShort: ['Nie','Pn','Wt','Śr','Czw','Pt','So'],
dayNamesMin: ['N','Pn','Wt','Śr','Cz','Pt','So'],
digits: null,
dateFormat: 'yyyy-mm-dd',
firstDay: 1,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions['pl'] =
$.calendars.calendars.gregorian.prototype.regionalOptions['pl'];
}
})(jQuery);