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

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