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 4.0KB

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