You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
896 B
23 lines
896 B
/* Afrikaans initialisation for the jQuery UI date picker plugin. */ |
|
/* Written by Renier Pretorius. */ |
|
jQuery(function($){ |
|
$.datepicker.regional['af'] = { |
|
closeText: 'Selekteer', |
|
prevText: 'Vorige', |
|
nextText: 'Volgende', |
|
currentText: 'Vandag', |
|
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', 'Maa', 'Din', 'Woe', 'Don', 'Vry', 'Sat'], |
|
dayNamesMin: ['So','Ma','Di','Wo','Do','Vr','Sa'], |
|
weekHeader: 'Wk', |
|
dateFormat: 'dd/mm/yy', |
|
firstDay: 1, |
|
isRTL: false, |
|
showMonthAfterYear: false, |
|
yearSuffix: ''}; |
|
$.datepicker.setDefaults($.datepicker.regional['af']); |
|
});
|
|
|