forked from kbwood/calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.calendars-sq.js
24 lines (24 loc) · 983 Bytes
/
jquery.calendars-sq.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
Albanian localisation for Gregorian/Julian calendars for jQuery.
Written by Flakron Bytyqi ([email protected]). */
(function($) {
$.calendars.calendars.gregorian.prototype.regionalOptions['sq'] = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['Janar','Shkurt','Mars','Prill','Maj','Qershor',
'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'],
monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer',
'Kor','Gus','Sht','Tet','Nën','Dhj'],
dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'],
dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'],
dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'],
digits: null,
dateFormat: 'dd.mm.yyyy',
firstDay: 1,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions['sq'] =
$.calendars.calendars.gregorian.prototype.regionalOptions['sq'];
}
})(jQuery);