To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / b5 / b56c752cc763f92dc3d4dfc7ce0b9df55a884899.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (874 Bytes)

1 1296:038ba2d95de8 Chris
/* English/UK initialisation for the jQuery UI date picker plugin. */
2
/* Written by Stuart. */
3
jQuery(function($){
4
	$.datepicker.regional['en-GB'] = {
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-GB']);
23
});