Buon giorno a tutti voi del Forum, ecco il mio problema, ho installato un modulo che tra le altre cose visualizza la data, solamente che il mese è in formato Ingelse, Il mese di Ottobre lo visualizza in October.
Come posso tradurlo in Italiano ?
Oppure in alternativa cambiare il mese con il numero? Ottobre diventerà gg/10/2010?
il codice php che si occupa della data è questo:
echo '<a class="lndtitle" href="'.$item->link.'" >'.$item->text.'[/url]';
echo '
';
if($show_date_in_introtext) {
if($show_date==1) {
switch($show_date_type) {
case 1:
echo "<span class=\"lnd_introdate\">";
echo date("d F Y", strtotime($item->created));
echo "
</span>";
break;
case 2:
echo "<span class=\"lnd_introdate\">";
echo date("H:i", strtotime($item->created));
echo "
</span>";
break;
default:
echo "<span class=\"lnd_introdate\">";
echo date("d F Y H:i", strtotime($item->created));
echo "
</span>";
break;
}
}
}
if ($loadorder == 0)
{
modLatestNewsHelperPlusDate::lnd_showThumb($item->images,$item->image,$params,$item->itemid,$item->id);
}
echo html_entity_decode(htmlentities($item->introtext));
echo '</div>';
echo '<div style="clear:both"></div>';
}
echo '<div class="div_lnd_list">';
$show_date = $params->get( 'show_date', 0 );
$show_date_type = $params->get( 'show_date_type', 0 );
?>
<ul class="lnd_latestnews">
<?php for ($n=$show_introtext; $n<count($list); $n++) { ?>
<?
$item = $list[$n];
?>
<li class="lnd_latestnews">
<?
if($show_date==1) {
switch($show_date_type) {
case 1:
echo date("d F Y", strtotime($item->created));
break;
case 2:
echo date("H:i", strtotime($item->created));
break;
default:
echo date("d F Y H:i", strtotime($item->created));
break;
}
}
?>
<a href="<?php echo $item->link; ?>" class="latestnews">
<?php echo $item->text; ?>[/url]
</li>
<?php } ?>