es-do.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Spanish (Dominican Republic) [es-do]
  2. import dayjs from '../index';
  3. var locale = {
  4. name: 'es-do',
  5. weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
  6. weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
  7. weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
  8. months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
  9. monthsShort: 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
  10. weekStart: 1,
  11. relativeTime: {
  12. future: 'en %s',
  13. past: 'hace %s',
  14. s: 'unos segundos',
  15. m: 'un minuto',
  16. mm: '%d minutos',
  17. h: 'una hora',
  18. hh: '%d horas',
  19. d: 'un día',
  20. dd: '%d días',
  21. M: 'un mes',
  22. MM: '%d meses',
  23. y: 'un año',
  24. yy: '%d años'
  25. },
  26. ordinal: function ordinal(n) {
  27. return n + "\xBA";
  28. },
  29. formats: {
  30. LT: 'h:mm A',
  31. LTS: 'h:mm:ss A',
  32. L: 'DD/MM/YYYY',
  33. LL: 'D [de] MMMM [de] YYYY',
  34. LLL: 'D [de] MMMM [de] YYYY h:mm A',
  35. LLLL: 'dddd, D [de] MMMM [de] YYYY h:mm A'
  36. }
  37. };
  38. dayjs.locale(locale, null, true);
  39. export default locale;