|
UTC time is %s '), date_i18n(__('Y-m-d G:i:s'), false, 'gmt')); ?>
%2$s'), $current_offset_name, date_i18n(__('Y-m-d G:i:s'))); ?>
|
= 0) ? '+' : '') . $offnum;
}
?>
|
UTC time is %s '), date_i18n(__('Y-m-d G:i:s'), false, 'gmt')); ?>
%2$s'), get_option('timezone_string'), date_i18n(__('Y-m-d G:i:s'))); ?>
time()) {
$found = true;
break;
}
}
if ( isset($found) && $found === true ) {
_e(' ');
$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, date_i18n(__('Y-m-d \a\t g:i a T'), $d->format('U') ) );
} else {
_e('This timezone does not observe daylight savings time.');
}
}
?>
|