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.

62 lines
2.3 KiB

  1. //! moment.js locale configuration
  2. //! locale : euskara (eu)
  3. //! author : Eneko Illarramendi : https://github.com/eillarra
  4. (function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
  6. typeof define === 'function' && define.amd ? define(['moment'], factory) :
  7. factory(global.moment)
  8. }(this, function (moment) { 'use strict';
  9. var eu = moment.defineLocale('eu', {
  10. months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
  11. monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
  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. longDateFormat : {
  16. LT : 'HH:mm',
  17. LTS : 'LT:ss',
  18. L : 'YYYY-MM-DD',
  19. LL : 'YYYY[ko] MMMM[ren] D[a]',
  20. LLL : 'YYYY[ko] MMMM[ren] D[a] LT',
  21. LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] LT',
  22. l : 'YYYY-M-D',
  23. ll : 'YYYY[ko] MMM D[a]',
  24. lll : 'YYYY[ko] MMM D[a] LT',
  25. llll : 'ddd, YYYY[ko] MMM D[a] LT'
  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. ordinalParse: /\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. return eu;
  58. }));