1 // moment.js locale configuration
2 // locale : euskara (eu)
3 // author : Eneko Illarramendi : https://github.com/eillarra
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('eu', {
17 months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
18 monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
19 weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),
20 weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'),
21 weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'),
26 LL : 'YYYY[ko] MMMM[ren] D[a]',
27 LLL : 'YYYY[ko] MMMM[ren] D[a] LT',
28 LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] LT',
30 ll : 'YYYY[ko] MMM D[a]',
31 lll : 'YYYY[ko] MMM D[a] LT',
32 llll : 'ddd, YYYY[ko] MMM D[a] LT'
35 sameDay : '[gaur] LT[etan]',
36 nextDay : '[bihar] LT[etan]',
37 nextWeek : 'dddd LT[etan]',
38 lastDay : '[atzo] LT[etan]',
39 lastWeek : '[aurreko] dddd LT[etan]',
57 ordinalParse: /\d{1,2}\./,
60 dow : 1, // Monday is the first day of the week.
61 doy : 7 // The week that contains Jan 1st is the first week of the year.