corrade-nucleus-nucleons – Blame information for rev 38

Subversion Repositories:
Rev:
Rev Author Line No. Line
38 office 1 //! moment.js locale configuration
2 //! locale : English (Australia) [en-au]
3 //! author : Jared Morse : https://github.com/jarcoal
4  
5 import moment from '../moment';
6  
7 export default moment.defineLocale('en-au', {
8 months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
9 monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
10 weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
11 weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
12 weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
13 longDateFormat : {
14 LT : 'h:mm A',
15 LTS : 'h:mm:ss A',
16 L : 'DD/MM/YYYY',
17 LL : 'D MMMM YYYY',
18 LLL : 'D MMMM YYYY h:mm A',
19 LLLL : 'dddd, D MMMM YYYY h:mm A'
20 },
21 calendar : {
22 sameDay : '[Today at] LT',
23 nextDay : '[Tomorrow at] LT',
24 nextWeek : 'dddd [at] LT',
25 lastDay : '[Yesterday at] LT',
26 lastWeek : '[Last] dddd [at] LT',
27 sameElse : 'L'
28 },
29 relativeTime : {
30 future : 'in %s',
31 past : '%s ago',
32 s : 'a few seconds',
33 m : 'a minute',
34 mm : '%d minutes',
35 h : 'an hour',
36 hh : '%d hours',
37 d : 'a day',
38 dd : '%d days',
39 M : 'a month',
40 MM : '%d months',
41 y : 'a year',
42 yy : '%d years'
43 },
44 dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
45 ordinal : function (number) {
46 var b = number % 10,
47 output = (~~(number % 100 / 10) === 1) ? 'th' :
48 (b === 1) ? 'st' :
49 (b === 2) ? 'nd' :
50 (b === 3) ? 'rd' : 'th';
51 return number + output;
52 },
53 week : {
54 dow : 1, // Monday is the first day of the week.
55 doy : 4 // The week that contains Jan 4th is the first week of the year.
56 }
57 });
58