Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

eu.js 2.3KB

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