MomentJS time in spanish
The following method worked for me
moment(agreement.dateStart).locale('es').format('LLLL')
This seems to work, thanks @RobG
var localLocale = moment('1993-10-23 00:00:00');
moment.locale('es');
localLocale.locale(false);
alert(localLocale.format('LLLL'));