Update Moment.js from 2.8.3 to 2.8.4
[lhc/web/wiklou.git] / resources / lib / moment / locale / eu.js
1 // moment.js locale configuration
2 // locale : euskara (eu)
3 // author : Eneko Illarramendi : https://github.com/eillarra
4
5 (function (factory) {
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
10 } else {
11 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
12 }
13 }(function (moment) {
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('_'),
20 longDateFormat : {
21 LT : 'HH:mm',
22 LTS : 'LT:ss',
23 L : 'YYYY-MM-DD',
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',
27 l : 'YYYY-M-D',
28 ll : 'YYYY[ko] MMM D[a]',
29 lll : 'YYYY[ko] MMM D[a] LT',
30 llll : 'ddd, YYYY[ko] MMM D[a] LT'
31 },
32 calendar : {
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]',
38 sameElse : 'L'
39 },
40 relativeTime : {
41 future : '%s barru',
42 past : 'duela %s',
43 s : 'segundo batzuk',
44 m : 'minutu bat',
45 mm : '%d minutu',
46 h : 'ordu bat',
47 hh : '%d ordu',
48 d : 'egun bat',
49 dd : '%d egun',
50 M : 'hilabete bat',
51 MM : '%d hilabete',
52 y : 'urte bat',
53 yy : '%d urte'
54 },
55 ordinalParse: /\d{1,2}\./,
56 ordinal : '%d.',
57 week : {
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.
60 }
61 });
62 }));