corrade-nucleus-nucleons – Blame information for rev 38

Subversion Repositories:
Rev:
Rev Author Line No. Line
38 office 1 //! moment.js locale configuration
2 //! locale : Basque [eu]
3 //! author : Eneko Illarramendi : https://github.com/eillarra
4  
5 import moment from '../moment';
6  
7 export default moment.defineLocale('eu', {
8 months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
9 monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
10 monthsParseExact : true,
11 weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),
12 weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'),
13 weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'),
14 weekdaysParseExact : true,
15 longDateFormat : {
16 LT : 'HH:mm',
17 LTS : 'HH:mm:ss',
18 L : 'YYYY-MM-DD',
19 LL : 'YYYY[ko] MMMM[ren] D[a]',
20 LLL : 'YYYY[ko] MMMM[ren] D[a] HH:mm',
21 LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
22 l : 'YYYY-M-D',
23 ll : 'YYYY[ko] MMM D[a]',
24 lll : 'YYYY[ko] MMM D[a] HH:mm',
25 llll : 'ddd, YYYY[ko] MMM D[a] HH:mm'
26 },
27 calendar : {
28 sameDay : '[gaur] LT[etan]',
29 nextDay : '[bihar] LT[etan]',
30 nextWeek : 'dddd LT[etan]',
31 lastDay : '[atzo] LT[etan]',
32 lastWeek : '[aurreko] dddd LT[etan]',
33 sameElse : 'L'
34 },
35 relativeTime : {
36 future : '%s barru',
37 past : 'duela %s',
38 s : 'segundo batzuk',
39 m : 'minutu bat',
40 mm : '%d minutu',
41 h : 'ordu bat',
42 hh : '%d ordu',
43 d : 'egun bat',
44 dd : '%d egun',
45 M : 'hilabete bat',
46 MM : '%d hilabete',
47 y : 'urte bat',
48 yy : '%d urte'
49 },
50 dayOfMonthOrdinalParse: /\d{1,2}\./,
51 ordinal : '%d.',
52 week : {
53 dow : 1, // Monday is the first day of the week.
54 doy : 7 // The week that contains Jan 1st is the first week of the year.
55 }
56 });
57