1 // moment.js locale configuration
2 // locale : euskara (eu)
3 // author : Eneko Illarramendi : https://github.com/eillarra
6 if (typeof define === 'function' && define.amd) {
7 define(['moment'], factory); // AMD
8 } else if (typeof exports === 'object') {
9 module.exports = factory(require('../moment')); // Node
11 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
14 return moment.defineLocale('eu', {
15 months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
16 monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
17 weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),
18 weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'),
19 weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'),
24 LL : 'YYYY[ko] MMMM[ren] D[a]',
25 LLL : 'YYYY[ko] MMMM[ren] D[a] LT',
26 LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] LT',
28 ll : 'YYYY[ko] MMM D[a]',
29 lll : 'YYYY[ko] MMM D[a] LT',
30 llll : 'ddd, YYYY[ko] MMM D[a] LT'
33 sameDay : '[gaur] LT[etan]',
34 nextDay : '[bihar] LT[etan]',
35 nextWeek : 'dddd LT[etan]',
36 lastDay : '[atzo] LT[etan]',
37 lastWeek : '[aurreko] dddd LT[etan]',
55 ordinalParse: /\d{1,2}\./,
58 dow : 1, // Monday is the first day of the week.
59 doy : 7 // The week that contains Jan 1st is the first week of the year.