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.

es-do.js 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. //! moment.js locale configuration
  2. //! locale : Spanish (Dominican Republic) [es-do]
  3. import moment from '../moment';
  4. var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
  5. '_'
  6. ),
  7. monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
  8. monthsParse = [
  9. /^ene/i,
  10. /^feb/i,
  11. /^mar/i,
  12. /^abr/i,
  13. /^may/i,
  14. /^jun/i,
  15. /^jul/i,
  16. /^ago/i,
  17. /^sep/i,
  18. /^oct/i,
  19. /^nov/i,
  20. /^dic/i,
  21. ],
  22. monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
  23. export default moment.defineLocale('es-do', {
  24. months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
  25. '_'
  26. ),
  27. monthsShort: function (m, format) {
  28. if (!m) {
  29. return monthsShortDot;
  30. } else if (/-MMM-/.test(format)) {
  31. return monthsShort[m.month()];
  32. } else {
  33. return monthsShortDot[m.month()];
  34. }
  35. },
  36. monthsRegex: monthsRegex,
  37. monthsShortRegex: monthsRegex,
  38. monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
  39. monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
  40. monthsParse: monthsParse,
  41. longMonthsParse: monthsParse,
  42. shortMonthsParse: monthsParse,
  43. weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  44. weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  45. weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  46. weekdaysParseExact: true,
  47. longDateFormat: {
  48. LT: 'h:mm A',
  49. LTS: 'h:mm:ss A',
  50. L: 'DD/MM/YYYY',
  51. LL: 'D [de] MMMM [de] YYYY',
  52. LLL: 'D [de] MMMM [de] YYYY h:mm A',
  53. LLLL: 'dddd, D [de] MMMM [de] YYYY h:mm A',
  54. },
  55. calendar: {
  56. sameDay: function () {
  57. return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  58. },
  59. nextDay: function () {
  60. return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  61. },
  62. nextWeek: function () {
  63. return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  64. },
  65. lastDay: function () {
  66. return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT';
  67. },
  68. lastWeek: function () {
  69. return (
  70. '[el] dddd [pasado a la' +
  71. (this.hours() !== 1 ? 's' : '') +
  72. '] LT'
  73. );
  74. },
  75. sameElse: 'L',
  76. },
  77. relativeTime: {
  78. future: 'en %s',
  79. past: 'hace %s',
  80. s: 'unos segundos',
  81. ss: '%d segundos',
  82. m: 'un minuto',
  83. mm: '%d minutos',
  84. h: 'una hora',
  85. hh: '%d horas',
  86. d: 'un día',
  87. dd: '%d días',
  88. w: 'una semana',
  89. ww: '%d semanas',
  90. M: 'un mes',
  91. MM: '%d meses',
  92. y: 'un año',
  93. yy: '%d años',
  94. },
  95. dayOfMonthOrdinalParse: /\d{1,2}º/,
  96. ordinal: '%dº',
  97. week: {
  98. dow: 1, // Monday is the first day of the week.
  99. doy: 4, // The week that contains Jan 4th is the first week of the year.
  100. },
  101. });