diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php
index 97ca20a..f8589ed 100644
|
a
|
b
|
if ( 0 != $post->ID ) { |
| 187 | 187 | /* translators: Post date information. 1: Date on which the post was published */ |
| 188 | 188 | $stamp = __('Published on: <b>%1$s</b>'); |
| 189 | 189 | } elseif ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified |
| 190 | | $stamp = __('Publish <b>immediately</b>'); |
| | 190 | $stamp = __('Publish: <b>Immediately</b>'); |
| 191 | 191 | } elseif ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified |
| 192 | 192 | /* translators: Post date information. 1: Date on which the post is to be published */ |
| 193 | 193 | $stamp = __('Schedule for: <b>%1$s</b>'); |
| … |
… |
if ( 0 != $post->ID ) { |
| 197 | 197 | } |
| 198 | 198 | $date = date_i18n( $datef, strtotime( $post->post_date ) ); |
| 199 | 199 | } else { // draft (no saves, and thus no date specified) |
| 200 | | $stamp = __('Publish <b>immediately</b>'); |
| | 200 | $stamp = __('Publish: <b>Immediately</b>'); |
| 201 | 201 | $date = date_i18n( $datef, strtotime( current_time('mysql') ) ); |
| 202 | 202 | } |
| 203 | 203 | |