diff --git a/src/wp-admin/edit-form-comment.php b/src/wp-admin/edit-form-comment.php
index a64be9c..b8efd2c 100644
|
a
|
b
|
if ( 'approved' === wp_get_comment_status( $comment ) && $comment->comment_post_ |
| 103 | 103 | |
| 104 | 104 | <div class="misc-pub-section curtime misc-pub-curtime"> |
| 105 | 105 | <?php |
| 106 | | /* translators: Publish box date format, see https://secure.php.net/date */ |
| 107 | | $datef = __( 'M j, Y @ H:i' ); |
| | 106 | $submitted = sprintf( |
| | 107 | /* translators: 1: comment date, 2: comment time */ |
| | 108 | __( '%1$s at %2$s' ), |
| | 109 | date_i18n( _x( 'M j, Y', 'edit comment submitted-on date format. See https://secure.php.net/date' ), strtotime( $comment->comment_date ) ), |
| | 110 | date_i18n( _x( 'H:i', 'edit comment submitted-on time format. See https://secure.php.net/date' ), strtotime( $comment->comment_date ) ) |
| | 111 | ); |
| 108 | 112 | ?> |
| 109 | 113 | <span id="timestamp"> |
| 110 | 114 | <?php |
| 111 | 115 | printf( |
| 112 | 116 | /* translators: %s: comment date */ |
| 113 | 117 | __( 'Submitted on: %s' ), |
| 114 | | '<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>' |
| | 118 | '<b>' . $submitted . '</b>' |
| 115 | 119 | ); |
| 116 | 120 | ?> |
| 117 | 121 | </span> |
diff --git a/src/wp-admin/includes/template.php b/src/wp-admin/includes/template.php
index 8740c59..a804657 100644
|
a
|
b
|
function touch_time( $edit = 1, $for_post = 1, $tab_index = 0, $multi = 0 ) { |
| 812 | 812 | |
| 813 | 813 | echo '<div class="timestamp-wrap">'; |
| 814 | 814 | /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */ |
| 815 | | printf( __( '%1$s %2$s, %3$s @ %4$s:%5$s' ), $month, $day, $year, $hour, $minute ); |
| | 815 | printf( __( '%1$s %2$s, %3$s at %4$s:%5$s' ), $month, $day, $year, $hour, $minute ); |
| 816 | 816 | |
| 817 | 817 | echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />'; |
| 818 | 818 | |
diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php
index c06680c..0762452 100644
|
a
|
b
|
function wp_default_scripts( &$scripts ) { |
| 1611 | 1611 | array( |
| 1612 | 1612 | 'submittedOn' => __( 'Submitted on:' ), |
| 1613 | 1613 | /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */ |
| 1614 | | 'dateFormat' => __( '%1$s %2$s, %3$s @ %4$s:%5$s' ), |
| | 1614 | 'dateFormat' => __( '%1$s %2$s, %3$s at %4$s:%5$s' ), |
| 1615 | 1615 | ) |
| 1616 | 1616 | ); |
| 1617 | 1617 | |