eo.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // moment.js language configuration
  2. // language : esperanto (eo)
  3. // author : Colin Dean : https://github.com/colindean
  4. // komento: Mi estas malcerta se mi korekte traktis akuzativojn en tiu traduko.
  5. // Se ne, bonvolu korekti kaj avizi min por ke mi povas lerni!
  6. (function (factory) {
  7. if (typeof define === 'function' && define.amd) {
  8. define(['moment'], factory); // AMD
  9. } else if (typeof exports === 'object') {
  10. module.exports = factory(require('../moment')); // Node
  11. } else {
  12. factory(window.moment); // Browser global
  13. }
  14. }(function (moment) {
  15. return moment.lang('eo', {
  16. months : "januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro".split("_"),
  17. monthsShort : "jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec".split("_"),
  18. weekdays : "Dimanĉo_Lundo_Mardo_Merkredo_Ĵaŭdo_Vendredo_Sabato".split("_"),
  19. weekdaysShort : "Dim_Lun_Mard_Merk_Ĵaŭ_Ven_Sab".split("_"),
  20. weekdaysMin : "Di_Lu_Ma_Me_Ĵa_Ve_Sa".split("_"),
  21. longDateFormat : {
  22. LT : "HH:mm",
  23. L : "YYYY-MM-DD",
  24. LL : "D[-an de] MMMM, YYYY",
  25. LLL : "D[-an de] MMMM, YYYY LT",
  26. LLLL : "dddd, [la] D[-an de] MMMM, YYYY LT"
  27. },
  28. meridiem : function (hours, minutes, isLower) {
  29. if (hours > 11) {
  30. return isLower ? 'p.t.m.' : 'P.T.M.';
  31. } else {
  32. return isLower ? 'a.t.m.' : 'A.T.M.';
  33. }
  34. },
  35. calendar : {
  36. sameDay : '[Hodiaŭ je] LT',
  37. nextDay : '[Morgaŭ je] LT',
  38. nextWeek : 'dddd [je] LT',
  39. lastDay : '[Hieraŭ je] LT',
  40. lastWeek : '[pasinta] dddd [je] LT',
  41. sameElse : 'L'
  42. },
  43. relativeTime : {
  44. future : "je %s",
  45. past : "antaŭ %s",
  46. s : "sekundoj",
  47. m : "minuto",
  48. mm : "%d minutoj",
  49. h : "horo",
  50. hh : "%d horoj",
  51. d : "tago",//ne 'diurno', ĉar estas uzita por proksimumo
  52. dd : "%d tagoj",
  53. M : "monato",
  54. MM : "%d monatoj",
  55. y : "jaro",
  56. yy : "%d jaroj"
  57. },
  58. ordinal : "%da",
  59. week : {
  60. dow : 1, // Monday is the first day of the week.
  61. doy : 7 // The week that contains Jan 1st is the first week of the year.
  62. }
  63. });
  64. }));