diff --git a/wp-admin/includes/meta-boxes.php b/wp-admin/includes/meta-boxes.php
index 181d5bb..e150692 100644
a
|
b
|
if ( 0 != $post->ID ) { |
204 | 204 | /* translators: Post date information. 1: Date on which the post was published */ |
205 | 205 | $stamp = __( 'Published on: <b>%1$s</b>' ); |
206 | 206 | } elseif ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified |
207 | | $stamp = __( 'Publish <b>immediately</b>' ); |
| 207 | $stamp = __( 'Publish <b>Immediately</b>' ); |
208 | 208 | } elseif ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified |
209 | 209 | /* translators: Post date information. 1: Date on which the post is to be published */ |
210 | 210 | $stamp = __( 'Schedule for: <b>%1$s</b>' ); |
… |
… |
if ( 0 != $post->ID ) { |
214 | 214 | } |
215 | 215 | $date = date_i18n( $datef, strtotime( $post->post_date ) ); |
216 | 216 | } else { // draft (no saves, and thus no date specified) |
217 | | $stamp = __( 'Publish <b>immediately</b>' ); |
| 217 | $stamp = __( 'Publish <b>Immediately</b>' ); |
218 | 218 | $date = date_i18n( $datef, strtotime( current_time( 'mysql' ) ) ); |
219 | 219 | } |
220 | 220 | |
… |
… |
function post_comment_status_meta_box( $post ) { |
757 | 757 | <input name="advanced_view" type="hidden" value="1" /> |
758 | 758 | <p class="meta-options"> |
759 | 759 | <label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked( $post->comment_status, 'open' ); ?> /> <?php _e( 'Allow comments' ); ?></label><br /> |
760 | | <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked( $post->ping_status, 'open' ); ?> /> |
| 760 | <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked( $post->ping_status, 'open' ); ?> /> |
761 | 761 | <?php |
762 | 762 | printf( |
763 | 763 | /* translators: %s: Codex URL */ |