|
UTC time is %s '), date_i18n( $time_format, false, 'gmt')); ?>
%2$s'), $current_offset_name, date_i18n($time_format)); ?>
|
= 0) ? '+' : '') . $offnum;
}
?>
|
UTC time is %s '), date_i18n($timezone_format, false, 'gmt')); ?>
%2$s'), $current_offset_name, date_i18n($timezone_format)); ?>
time()) {
$found = true;
break;
}
}
if ( isset($found) && $found === true ) {
echo ' ';
$message = $tr['isdst'] ?
__('This timezone switches to daylight savings time on: %s.') :
__('This timezone switches to standard time on: %s.');
$tz = new DateTimeZone($tzstring);
$d = new DateTime( "@{$tr['ts']}" );
$d->setTimezone($tz);
printf( $message, /* translators: next daylight savings change time format, see http://php.net/date */ date_i18n(_x('Y-m-d G:i:s T', 'next daylight savings change time format'), $d->format('U') ) );
} else {
_e('This timezone does not observe daylight savings time.');
}
}
?>
|