1 // moment.js locale configuration
2 // locale : canadian english (en-ca)
3 // author : Jonathan Abourbih : https://github.com/jonbca
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
16 return moment.defineLocale('en-ca', {
17 months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
18 monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
19 weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
20 weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
21 weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
27 LLL : 'D MMMM, YYYY LT',
28 LLLL : 'dddd, D MMMM, YYYY LT'
31 sameDay : '[Today at] LT',
32 nextDay : '[Tomorrow at] LT',
33 nextWeek : 'dddd [at] LT',
34 lastDay : '[Yesterday at] LT',
35 lastWeek : '[Last] dddd [at] LT',
53 ordinalParse: /\d{1,2}(st|nd|rd|th)/,
54 ordinal : function (number) {
56 output = (~~(number % 100 / 10) === 1) ? 'th' :
59 (b === 3) ? 'rd' : 'th';
60 return number + output;