Merge "Revert "Use display name in category page subheadings if provided""
[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 // 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
11 } else {
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
13 }*/
14 factory(this.moment);
15 }(function (moment) {
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('_'),
22 longDateFormat : {
23 LT : 'HH:mm',
24 LTS : 'LT:ss',
25 L : 'YYYY-MM-DD',
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',
29 l : 'YYYY-M-D',
30 ll : 'YYYY[ko] MMM D[a]',
31 lll : 'YYYY[ko] MMM D[a] LT',
32 llll : 'ddd, YYYY[ko] MMM D[a] LT'
33 },
34 calendar : {
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]',
40 sameElse : 'L'
41 },
42 relativeTime : {
43 future : '%s barru',
44 past : 'duela %s',
45 s : 'segundo batzuk',
46 m : 'minutu bat',
47 mm : '%d minutu',
48 h : 'ordu bat',
49 hh : '%d ordu',
50 d : 'egun bat',
51 dd : '%d egun',
52 M : 'hilabete bat',
53 MM : '%d hilabete',
54 y : 'urte bat',
55 yy : '%d urte'
56 },
57 ordinalParse: /\d{1,2}\./,
58 ordinal : '%d.',
59 week : {
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.
62 }
63 });
64 }));