forked from kbwood/datepick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery.datepick-af.js
More file actions
29 lines (29 loc) · 1.51 KB
/
jquery.datepick-af.js
File metadata and controls
29 lines (29 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* http://keith-wood.name/datepick.html
Afrikaans localisation for jQuery Datepicker.
Written by Renier Pretorius and Ruediger Thiede. */
(function($) {
$.datepick.regionalOptions['af'] = {
monthNames: ['Januarie','Februarie','Maart','April','Mei','Junie',
'Julie','Augustus','September','Oktober','November','Desember'],
monthNamesShort: ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun',
'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'],
dayNames: ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'],
dayNamesShort: ['Son', 'Maan', 'Dins', 'Woens', 'Don', 'Vry', 'Sat'],
dayNamesMin: ['So','Ma','Di','Wo','Do','Vr','Sa'],
dateFormat: 'dd/mm/yyyy', firstDay: 1,
renderer: $.datepick.defaultRenderer,
prevText: 'Vorige', prevStatus: 'Vertoon vorige maand',
prevJumpText: '<<', prevJumpStatus: 'Vertoon vorige jaar',
nextText: 'Volgende', nextStatus: 'Vertoon volgende maand',
nextJumpText: '>>', nextJumpStatus: 'Vertoon volgende jaar',
currentText: 'Vandag', currentStatus: 'Vertoon huidige maand',
todayText: 'Vandag', todayStatus: 'Vertoon huidige maand',
clearText: 'Vee uit', clearStatus: 'Verwyder die huidige datum',
closeText: 'Klaar', closeStatus: 'Sluit sonder verandering',
yearStatus: 'Vertoon \'n ander jaar', monthStatus: 'Vertoon \'n ander maand',
weekText: 'Wk', weekStatus: 'Week van die jaar',
dayStatus: 'Kies DD, M d', defaultStatus: 'Kies \'n datum',
isRTL: false
};
$.datepick.setDefaults($.datepick.regionalOptions['af']);
})(jQuery);