Changeset 45932 for trunk/src/wp-admin/comment.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/comment.php
r45926 r45932 176 176 <?php } ?> 177 177 <tr> 178 <th scope="row"><?php /* translators: column name or table row header*/ _e( 'In Response To' ); ?></th>178 <th scope="row"><?php /* translators: Column name or table row header. */ _e( 'In Response To' ); ?></th> 179 179 <td> 180 180 <?php … … 193 193 $name = get_comment_author( $parent ); 194 194 printf( 195 /* translators: %s: comment link*/195 /* translators: %s: Comment link. */ 196 196 ' | ' . __( 'In reply to %s.' ), 197 197 '<a href="' . $parent_link . '">' . $name . '</a>' … … 206 206 <?php 207 207 $submitted = sprintf( 208 /* translators: 1: comment date, 2: comment time*/208 /* translators: 1: Comment date, 2: Comment time. */ 209 209 __( '%1$s at %2$s' ), 210 /* translators: comment date format. See https://secure.php.net/date */210 /* translators: Comment date format. See https://secure.php.net/date */ 211 211 get_comment_date( __( 'Y/m/d' ), $comment ), 212 212 get_comment_date( __( 'g:i a' ), $comment ) … … 221 221 </tr> 222 222 <tr> 223 <th scope="row"><?php /* translators: field name in comment form*/ _ex( 'Comment', 'noun' ); ?></th>223 <th scope="row"><?php /* translators: Field name in comment form. */ _ex( 'Comment', 'noun' ); ?></th> 224 224 <td class="comment-content"> 225 225 <?php comment_text( $comment ); ?>
Note: See TracChangeset
for help on using the changeset viewer.