source: trunk/themes/default/js/ui/i18n/jquery.ui.datepicker-en-NZ.js @ 9172

Last change on this file since 9172 was 9172, checked in by patdenice, 13 years ago

Update jQuery to 1.5 and jQuery UI to 1.8.9

File size: 899 bytes
Line 
1/* English/New Zealand initialisation for the jQuery UI date picker plugin. */
2/* Based on the en-GB initialisation. */
3jQuery(function($){
4        $.datepicker.regional['en-NZ'] = {
5                closeText: 'Done',
6                prevText: 'Prev',
7                nextText: 'Next',
8                currentText: 'Today',
9                monthNames: ['January','February','March','April','May','June',
10                'July','August','September','October','November','December'],
11                monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
12                'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
13                dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
14                dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
15                dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
16                weekHeader: 'Wk',
17                dateFormat: 'dd/mm/yy',
18                firstDay: 1,
19                isRTL: false,
20                showMonthAfterYear: false,
21                yearSuffix: ''};
22        $.datepicker.setDefaults($.datepicker.regional['en-NZ']);
23});
Note: See TracBrowser for help on using the repository browser.