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-us.js 3.4KB

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