UNPKG

1.11 kBJavaScriptView Raw
1// Spanish (Dominican Republic) [es-do]
2import dayjs from '../index';
3var 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};
38dayjs.locale(locale, null, true);
39export default locale;
\No newline at end of file