Hi Josh;
Thanks for your anwser. But, I'm afraid that the problem is not the date configuration on the GP Easy Blog module.
As far as I know there are several ways of printing the date format, and I understand the configuration tool.
The date is shown on the default language of the server. I can't access the config.php on my hosting provider to change language settings, so, there must be a way of creating an array with the names of the months and each day of the week in order to show the spanish date language, not format.
This is an example code of the arrays we'd create to show the spanish date:
function SpanishDate($FechaStamp)
{
$ano = date('Y',$FechaStamp);
$mes = date('n',$FechaStamp);
$dia = date('d',$FechaStamp);
$diasemana = date('w',$FechaStamp);
$diassemanaN= array("Domingo","Lunes","Martes","Miércoles",
"Jueves","Viernes","Sábado"); $mesesN=array(1=>"Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio",
"Agosto","Septiembre","Octubre","Noviembre","Diciembre");
return $diassemanaN[$diasemana].", $dia de ". $mesesN[$mes] ." de $ano";
}
So i could get " Viernes, 8 de Julio, 2011" instead of "Friday, 8 July 2011"
Edited: 11 years ago