Ohm-Management - Projektarbeit B-ME
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.4KB

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