forked from kbwood/datepick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery.datepick-en.js
More file actions
29 lines (29 loc) · 1.46 KB
/
jquery.datepick-en.js
File metadata and controls
29 lines (29 loc) · 1.46 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
English UK localisation for jQuery Datepicker.
Written by Stuart. */
(function($) {
$.datepick.regional['en-US'] = {
monthNames: ['January','February','March','April','May','June',
'July','August','September','October','November','December'],
monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
dayNamesMin: ['S','M','T','W','T','F','S'],
dateFormat: 'dd/mm/yyyy', firstDay: 1,
renderer: $.datepick.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: 'Erase the current date',
closeText: 'Done', closeStatus: 'Close without change',
yearStatus: 'Show a different year', monthStatus: 'Show a different month',
weekText: 'Wk', weekStatus: 'Week of the year',
dayStatus: 'Select DD, M d', defaultStatus: 'Select a date',
isRTL: false
};
$.datepick.setDefaults($.datepick.regional['en-US']);
})(jQuery);