Brought in another asset for Ray's eye form: moment
[openemr.git] / public / assets / moment-2-13-0 / src / locale / en-gb.js
blob82a643fc34026df4afa894db667f6d239af53e68
1 //! moment.js locale configuration
2 //! locale : great britain english (en-gb)
3 //! author : Chris Gedrim : https://github.com/chrisgedrim
5 import moment from '../moment';
7 export default moment.defineLocale('en-gb', {
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 : 'HH:mm',
15         LTS : 'HH:mm:ss',
16         L : 'DD/MM/YYYY',
17         LL : 'D MMMM YYYY',
18         LLL : 'D MMMM YYYY HH:mm',
19         LLLL : 'dddd, D MMMM YYYY HH:mm'
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     ordinalParse: /\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 });