Changeset 34295 for trunk/src/wp-admin/edit-form-comment.php
- Timestamp:
- 09/18/2015 06:27:29 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/edit-form-comment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-comment.php
r34072 r34295 92 92 /* translators: Publish box date format, see http://php.net/date */ 93 93 $datef = __( 'M j, Y @ H:i' ); 94 $stamp = __('Submitted on: <b>%1$s</b>'); 95 $date = date_i18n( $datef, strtotime( $comment->comment_date ) ); 96 ?> 97 <span id="timestamp"><?php printf( $stamp, $date ); ?></span> 94 ?> 95 <span id="timestamp"><?php 96 printf( 97 __( 'Submitted on: %1$s' ), 98 '<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>' 99 ); 100 ?></span> 98 101 <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><span aria-hidden="true"><?php _e( 'Edit' ); ?></span> <span class="screen-reader-text"><?php _e( 'Edit date and time' ); ?></span></a> 99 102 <fieldset id='timestampdiv' class='hide-if-js'>
Note: See TracChangeset
for help on using the changeset viewer.