glofix thank for the suggestion, I did the same as you did, and it worked without deleting the config.js
file but the dates are still in english.
Gracias por la sugerencia, realice lo mismo que usted hizo, y funcionó sin eleminar el archivo config.js
pero las fechas siguen en ingles.
const locale = {
name: 'es-ES',
weekdays: 'domingo_lunes_martes_miercoles_jueves_viernes_sábado'.split('_'),
weekdaysShort: 'dom._lun._mar._mie._jue._vie._sáb.'.split('_'),
weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'),
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
monthsShort: 'en.febr._mzo_abr._my_jun_jul._ag_sept._oct._nov._dic.'.split('_'),
weekStart: 1,
yearStart: 4,
formats: {
LT: 'HH:mm',
LTS: 'HH:mm:ss',
L: 'DD/MM/YYYY',
LL: 'D [de] MMMM [de] YYYY',
LLL: 'D [de] MMMM [de] YYYY [às] HH:mm',
LLLL: 'dddd, D [de] MMMM [de] YYYY [às] HH:mm'
},
calendar: {
sameDay: '[Hoy a] LT',
nextDay: '[Mañana a] LT',
nextWeek: 'dddd [en] LT',
lastDay: '[Ayer en] LT',
lastWeek: function () {
return (this.day() === 0 || this.day() === 6) ?
'[Ultimo] dddd [às] LT' : // Saturday + Sunday
'[Ultima] dddd [às] LT'; // Monday - Friday
},
sameElse: 'L'
},
relativeTime: {
future: 'en %s',
past: 'hace %s',
s: 'unos segundos',
m: 'un minuto',
mm: '%d minutos',
h: 'una hora',
hh: '%d horas',
d: 'un día',
dd: '%d días',
M: 'un mes',
MM: '%d meses',
y: 'un año',
yy: '%d años'
},
ordinalParse: /\d{1,2}º/,
ordinal : '%dº'
}