How can I edit this script to translate in Spanish when the data field in long date format. This script work for the only if the date field in short date.
{
function add(value, operation) {
if (value === undefined || value === “”)
return;
operation(value);
}
function spanishDate(d){
var monthname=[“Enero”,“Febrero”,“Marzo”,“Abril”,“Mayo”,“Junio”,“Julio”,“Agosto”,“Septiembre”,“Octubre”,“Noviembre”,“Diciembre”];
return d.getDate()+" de “+monthname[d.getMonth()]+” de "+d.getFullYear();
}
var format = new TextFormatter(locale);
var result = “”;
add(record.fields[“CurrentMonthDue”], function (value) { result += spanishDate(value); });
results.html(result);
}