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-mx.js 4.1KB

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