SECURITY: resources: Patch jQuery 3.3.1 for CVE-2019-11358
[lhc/web/wiklou.git] / resources / lib / moment / locale / en-ca.js
index 9ac521f..5d0dab0 100644 (file)
@@ -1,16 +1,14 @@
 //! moment.js locale configuration
-//! locale : English (Canada) [en-ca]
-//! author : Jonathan Abourbih : https://github.com/jonbca
 
 ;(function (global, factory) {
    typeof exports === 'object' && typeof module !== 'undefined'
        && typeof require === 'function' ? factory(require('../moment')) :
    typeof define === 'function' && define.amd ? define(['../moment'], factory) :
    factory(global.moment)
-}(this, function (moment) { 'use strict';
+}(this, (function (moment) { 'use strict';
 
 
-    var en_ca = moment.defineLocale('en-ca', {
+    var enCa = moment.defineLocale('en-ca', {
         months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
         monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
         weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
@@ -36,6 +34,7 @@
             future : 'in %s',
             past : '%s ago',
             s : 'a few seconds',
+            ss : '%d seconds',
             m : 'a minute',
             mm : '%d minutes',
             h : 'an hour',
@@ -47,7 +46,7 @@
             y : 'a year',
             yy : '%d years'
         },
-        ordinalParse: /\d{1,2}(st|nd|rd|th)/,
+        dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
         ordinal : function (number) {
             var b = number % 10,
                 output = (~~(number % 100 / 10) === 1) ? 'th' :
@@ -58,6 +57,6 @@
         }
     });
 
-    return en_ca;
+    return enCa;
 
-}));
\ No newline at end of file
+})));