Salve Ragazzi,
qualcuno è in possesso del modulo countdown "completamente" in italiano? Io ne ho uno ma riporta il mese in inglese

...
Ora vi riporto il codice, non si sa mai:
<?php
defined( '_VALID_MOS' ) or die( 'Directly access to file not permited.' ) ;
global $mosConfig_lang ;
$cDay = @$params->get('Day') ? @$params->get('Day') : '01' ;
$cMonth = @$params->get('Month') ? @$params->get('Month') : '01' ;
$cYear = @$params->get('Year') ? @$params->get('Year') : '2005' ;
$cHour = @$params->get('Hour') ? @$params->get('Hour') : '12' ;
$cMinute = @$params->get('Minute') ? @$params->get('Minute') : '0' ;
$offset = @$params->get('Offset') ? @$params->get('Offset') : '0' ;
$tFormat = @$params->get('Format') ? @$params->get('Format') : 'F j, Y, g:i a' ;
$now = @$params->get('Now') ? @$params->get('Now') : 0 ;
// make a unix timestamp for the given date
$the_countdown_date = mktime($cHour, $cMinute, 0, $cMonth, $cDay, $cYear, -1);
// get current unix timestamp and add timezone offset
$content = '' ;
$today = time() + 3600*$offset ;
$difference = $the_countdown_date - $today ;
if ($difference < 0) $difference = 0 ;
$days_left = floor($difference/60/60/24) ;
$hours_left = floor(($difference - $days_left*60*60*24)/60/60) ;
$minutes_left = floor(($difference - $days_left*60*60*24 - $hours_left*60*60)/60) ;
$content.= "<table cellpadding='0' cellspacing='0' width='100%'>" ;
if ($now)
$content.= "<tr><td valign='top'><small>Time now</small></td><td><div align='right'><small>".date($tFormat, $today)."</small></div></td></tr>" ;
$content.= "<tr><td valign='top'><small>Conto al</small></td><td><div align='right'><small>".date($tFormat, $the_countdown_date)."</small></div></td>" ;
$content.= "<tr><td valign='top'><small>Tempo restante</small></td><td><div align='right'><small>".$days_left." giorni
".$hours_left." ore
".$minutes_left." minuti</small></div></td></tr></table>" ;
?>
Potete visualizzare un'anteprima all'indirizzo
www.cava2006.it