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