1 //! moment.js locale configuration
2 //! locale : canadian english (en-ca)
3 //! author : Jonathan Abourbih : https://github.com/jonbca
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['moment'], factory) :
10 }(this, function (moment) { 'use strict';
13 var en_ca = moment.defineLocale('en-ca', {
14 months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
15 monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
16 weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
17 weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
18 weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
24 LLL : 'MMMM D, YYYY h:mm A',
25 LLLL : 'dddd, MMMM D, YYYY h:mm A'
28 sameDay : '[Today at] LT',
29 nextDay : '[Tomorrow at] LT',
30 nextWeek : 'dddd [at] LT',
31 lastDay : '[Yesterday at] LT',
32 lastWeek : '[Last] dddd [at] LT',
50 ordinalParse: /\d{1,2}(st|nd|rd|th)/,
51 ordinal : function (number) {
53 output = (~~(number % 100 / 10) === 1) ? 'th' :
56 (b === 3) ? 'rd' : 'th';
57 return number + output;