forked from kbwood/calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.calendars-nl.js
24 lines (24 loc) · 1.01 KB
/
jquery.calendars-nl.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
Dutch localisation for Gregorian/Julian calendars for jQuery.
Written by Mathias Bynens <http://mathiasbynens.be/>. */
(function($) {
$.calendars.calendars.gregorian.prototype.regionalOptions['nl'] = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni',
'juli', 'augustus', 'september', 'oktober', 'november', 'december'],
monthNamesShort: ['jan', 'feb', 'maa', 'apr', 'mei', 'jun',
'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],
dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'],
dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
digits: null,
dateFormat: 'dd-mm-yyyy',
firstDay: 1,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions['nl'] =
$.calendars.calendars.gregorian.prototype.regionalOptions['nl'];
}
})(jQuery);