Merge "Improve docs for Title::getInternalURL/getCanonicalURL"
[lhc/web/wiklou.git] / resources / lib / moment / locale / eu.js
1 //! moment.js locale configuration
2
3 ;(function (global, factory) {
4 typeof exports === 'object' && typeof module !== 'undefined'
5 && typeof require === 'function' ? factory(require('../moment')) :
6 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
7 factory(global.moment)
8 }(this, (function (moment) { 'use strict';
9
10
11 var eu = moment.defineLocale('eu', {
12 months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
13 monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
14 monthsParseExact : true,
15 weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),
16 weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'),
17 weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'),
18 weekdaysParseExact : true,
19 longDateFormat : {
20 LT : 'HH:mm',
21 LTS : 'HH:mm:ss',
22 L : 'YYYY-MM-DD',
23 LL : 'YYYY[ko] MMMM[ren] D[a]',
24 LLL : 'YYYY[ko] MMMM[ren] D[a] HH:mm',
25 LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
26 l : 'YYYY-M-D',
27 ll : 'YYYY[ko] MMM D[a]',
28 lll : 'YYYY[ko] MMM D[a] HH:mm',
29 llll : 'ddd, YYYY[ko] MMM D[a] HH:mm'
30 },
31 calendar : {
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]',
37 sameElse : 'L'
38 },
39 relativeTime : {
40 future : '%s barru',
41 past : 'duela %s',
42 s : 'segundo batzuk',
43 ss : '%d segundo',
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 dayOfMonthOrdinalParse: /\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 7th is the first week of the year.
60 }
61 });
62
63 return eu;
64
65 })));