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.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. ;(function (global, factory) {
  8. typeof exports === 'object' && typeof module !== 'undefined'
  9. && typeof require === 'function' ? factory(require('../moment')) :
  10. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  11. factory(global.moment)
  12. }(this, (function (moment) { 'use strict';
  13. //! moment.js locale configuration
  14. var eo = moment.defineLocale('eo', {
  15. months: 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split(
  16. '_'
  17. ),
  18. monthsShort: 'jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec'.split('_'),
  19. weekdays: 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'),
  20. weekdaysShort: 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'),
  21. weekdaysMin: 'di_lu_ma_me_ĵa_ve_sa'.split('_'),
  22. longDateFormat: {
  23. LT: 'HH:mm',
  24. LTS: 'HH:mm:ss',
  25. L: 'YYYY-MM-DD',
  26. LL: '[la] D[-an de] MMMM, YYYY',
  27. LLL: '[la] D[-an de] MMMM, YYYY HH:mm',
  28. LLLL: 'dddd[n], [la] D[-an de] MMMM, YYYY HH:mm',
  29. llll: 'ddd, [la] D[-an de] MMM, YYYY HH:mm',
  30. },
  31. meridiemParse: /[ap]\.t\.m/i,
  32. isPM: function (input) {
  33. return input.charAt(0).toLowerCase() === 'p';
  34. },
  35. meridiem: function (hours, minutes, isLower) {
  36. if (hours > 11) {
  37. return isLower ? 'p.t.m.' : 'P.T.M.';
  38. } else {
  39. return isLower ? 'a.t.m.' : 'A.T.M.';
  40. }
  41. },
  42. calendar: {
  43. sameDay: '[Hodiaŭ je] LT',
  44. nextDay: '[Morgaŭ je] LT',
  45. nextWeek: 'dddd[n je] LT',
  46. lastDay: '[Hieraŭ je] LT',
  47. lastWeek: '[pasintan] dddd[n je] LT',
  48. sameElse: 'L',
  49. },
  50. relativeTime: {
  51. future: 'post %s',
  52. past: 'antaŭ %s',
  53. s: 'kelkaj sekundoj',
  54. ss: '%d sekundoj',
  55. m: 'unu minuto',
  56. mm: '%d minutoj',
  57. h: 'unu horo',
  58. hh: '%d horoj',
  59. d: 'unu tago', //ne 'diurno', ĉar estas uzita por proksimumo
  60. dd: '%d tagoj',
  61. M: 'unu monato',
  62. MM: '%d monatoj',
  63. y: 'unu jaro',
  64. yy: '%d jaroj',
  65. },
  66. dayOfMonthOrdinalParse: /\d{1,2}a/,
  67. ordinal: '%da',
  68. week: {
  69. dow: 1, // Monday is the first day of the week.
  70. doy: 7, // The week that contains Jan 7th is the first week of the year.
  71. },
  72. });
  73. return eo;
  74. })));