core-resource-app-test
Version:
App that contains assets and scripts for the core apps
22 lines (21 loc) • 1.04 kB
JavaScript
/* http://keith-wood.name/calendars.html
English/New Zealand localisation for calendars datepicker for jQuery.
Based on en-GB. */
(function($) {
$.calendars.picker.regional['en-NZ'] = {
renderer: $.calendars.picker.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
};
$.calendars.picker.setDefaults($.calendars.picker.regional['en-NZ']);
})(jQuery);