34 lines
1.0 KiB
JavaScript
34 lines
1.0 KiB
JavaScript
/* http://keith-wood.name/calendars.html
|
|
English/New Zealand localisation for calendars datepicker for jQuery.
|
|
Based on en-GB. */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions['en-NZ'] = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: 'Prev',
|
|
prevStatus: 'Show the previous month',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: 'Show the previous year',
|
|
nextText: 'Next',
|
|
nextStatus: 'Show the next month',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: 'Show the next year',
|
|
currentText: 'Current',
|
|
currentStatus: 'Show the current month',
|
|
todayText: 'Today',
|
|
todayStatus: 'Show today\'s month',
|
|
clearText: 'Clear',
|
|
clearStatus: 'Clear all the dates',
|
|
closeText: 'Done',
|
|
closeStatus: 'Close the datepicker',
|
|
yearStatus: 'Change the year',
|
|
monthStatus: 'Change the month',
|
|
weekText: 'Wk',
|
|
weekStatus: 'Week of the year',
|
|
dayStatus: 'Select DD, M d, yyyy',
|
|
defaultStatus: 'Select a date',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['en-NZ']);
|
|
})(jQuery);
|