[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
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(window.moment); // Browser 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 L : 'YYYY-MM-DD', 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', 26 l : 'YYYY-M-D', 27 ll : 'YYYY[ko] MMM D[a]', 28 lll : 'YYYY[ko] MMM D[a] LT', 29 llll : 'ddd, YYYY[ko] MMM D[a] LT' 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 m : 'minutu bat', 44 mm : '%d minutu', 45 h : 'ordu bat', 46 hh : '%d ordu', 47 d : 'egun bat', 48 dd : '%d egun', 49 M : 'hilabete bat', 50 MM : '%d hilabete', 51 y : 'urte bat', 52 yy : '%d urte' 53 }, 54 ordinal : '%d.', 55 week : { 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. 58 } 59 }); 60 }));
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |