eu.js 2.2 KB

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