Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / resources / lib / moment / locale / eu.js
index 15d7dd3..2c7781b 100644 (file)
@@ -1,13 +1,11 @@
 //! moment.js locale configuration
-//! locale : Basque [eu]
-//! author : Eneko Illarramendi : https://github.com/eillarra
 
 ;(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 eu = moment.defineLocale('eu', {
@@ -42,6 +40,7 @@
             future : '%s barru',
             past : 'duela %s',
             s : 'segundo batzuk',
+            ss : '%d segundo',
             m : 'minutu bat',
             mm : '%d minutu',
             h : 'ordu bat',
             y : 'urte bat',
             yy : '%d urte'
         },
-        ordinalParse: /\d{1,2}\./,
+        dayOfMonthOrdinalParse: /\d{1,2}\./,
         ordinal : '%d.',
         week : {
             dow : 1, // Monday is the first day of the week.
-            doy : 7  // The week that contains Jan 1st is the first week of the year.
+            doy : 7  // The week that contains Jan 7th is the first week of the year.
         }
     });
 
     return eu;
 
-}));
\ No newline at end of file
+})));