Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / resources / lib / moment / locale / en-gb.js
index 843d2e5..85302e5 100644 (file)
@@ -1,16 +1,14 @@
 //! moment.js locale configuration
-//! locale : English (United Kingdom) [en-gb]
-//! author : Chris Gedrim : https://github.com/chrisgedrim
 
 ;(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_gb = moment.defineLocale('en-gb', {
+    var enGb = moment.defineLocale('en-gb', {
         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' :
@@ -62,6 +61,6 @@
         }
     });
 
-    return en_gb;
+    return enGb;
 
-}));
\ No newline at end of file
+})));