I have this js to display the day, date + time. But it's in English and does not translate into Dutch (nl)
moment.locale("nl");
var date_and_time = moment(countDownDate).format("dddd, DD MMMM YYYY, HH:mm uur");
How can I make it display in Dutch? Thanks.