Skip to content

Commit 29abdbf

Browse files
committed
Merge pull request uxsolutions#1744 from chappoo/master
Add en-AU (Australian English) locale config
2 parents 10efa06 + 9a0f4f3 commit 29abdbf

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* Australian English translation for bootstrap-datepicker
3+
* Steve Chapman <steven.p.chapman@gmail.com>
4+
*/
5+
;(function($){
6+
$.fn.datepicker.dates['en-AU'] = {
7+
days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
8+
daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
9+
daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"],
10+
months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
11+
monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
12+
today: "Today",
13+
monthsTitle: "Months",
14+
clear: "Clear",
15+
weekStart: 1,
16+
format: "d/mm/yyyy"
17+
};
18+
}(jQuery));

0 commit comments

Comments
 (0)