1 // moment.js language configuration
2 // language : 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(window.moment); // Browser global
14 return moment.lang('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("_"),
23 LL : "YYYY[ko] MMMM[ren] D[a]",
24 LLL : "YYYY[ko] MMMM[ren] D[a] LT",
25 LLLL : "dddd, YYYY[ko] MMMM[ren] D[a] LT",
27 ll : "YYYY[ko] MMM D[a]",
28 lll : "YYYY[ko] MMM D[a] LT",
29 llll : "ddd, YYYY[ko] MMM D[a] LT"
32 sameDay : '[gaur] LT[etan]',
33 nextDay : '[bihar] LT[etan]',
34 nextWeek : 'dddd LT[etan]',
35 lastDay : '[atzo] LT[etan]',
36 lastWeek : '[aurreko] dddd LT[etan]',
56 dow : 1, // Monday is the first day of the week.
57 doy : 7 // The week that contains Jan 1st is the first week of the year.