Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

eo.js 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //! moment.js locale configuration
  2. //! locale : Esperanto [eo]
  3. //! author : Colin Dean : https://github.com/colindean
  4. //! author : Mia Nordentoft Imperatori : https://github.com/miestasmia
  5. //! comment : miestasmia corrected the translation by colindean
  6. //! comment : Vivakvo corrected the translation by colindean and miestasmia
  7. import moment from '../moment';
  8. export default moment.defineLocale('eo', {
  9. months: 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split(
  10. '_'
  11. ),
  12. monthsShort: 'jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec'.split('_'),
  13. weekdays: 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'),
  14. weekdaysShort: 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'),
  15. weekdaysMin: 'di_lu_ma_me_ĵa_ve_sa'.split('_'),
  16. longDateFormat: {
  17. LT: 'HH:mm',
  18. LTS: 'HH:mm:ss',
  19. L: 'YYYY-MM-DD',
  20. LL: '[la] D[-an de] MMMM, YYYY',
  21. LLL: '[la] D[-an de] MMMM, YYYY HH:mm',
  22. LLLL: 'dddd[n], [la] D[-an de] MMMM, YYYY HH:mm',
  23. llll: 'ddd, [la] D[-an de] MMM, YYYY HH:mm',
  24. },
  25. meridiemParse: /[ap]\.t\.m/i,
  26. isPM: function (input) {
  27. return input.charAt(0).toLowerCase() === 'p';
  28. },
  29. meridiem: function (hours, minutes, isLower) {
  30. if (hours > 11) {
  31. return isLower ? 'p.t.m.' : 'P.T.M.';
  32. } else {
  33. return isLower ? 'a.t.m.' : 'A.T.M.';
  34. }
  35. },
  36. calendar: {
  37. sameDay: '[Hodiaŭ je] LT',
  38. nextDay: '[Morgaŭ je] LT',
  39. nextWeek: 'dddd[n je] LT',
  40. lastDay: '[Hieraŭ je] LT',
  41. lastWeek: '[pasintan] dddd[n je] LT',
  42. sameElse: 'L',
  43. },
  44. relativeTime: {
  45. future: 'post %s',
  46. past: 'antaŭ %s',
  47. s: 'kelkaj sekundoj',
  48. ss: '%d sekundoj',
  49. m: 'unu minuto',
  50. mm: '%d minutoj',
  51. h: 'unu horo',
  52. hh: '%d horoj',
  53. d: 'unu tago', //ne 'diurno', ĉar estas uzita por proksimumo
  54. dd: '%d tagoj',
  55. M: 'unu monato',
  56. MM: '%d monatoj',
  57. y: 'unu jaro',
  58. yy: '%d jaroj',
  59. },
  60. dayOfMonthOrdinalParse: /\d{1,2}a/,
  61. ordinal: '%da',
  62. week: {
  63. dow: 1, // Monday is the first day of the week.
  64. doy: 7, // The week that contains Jan 7th is the first week of the year.
  65. },
  66. });