Changeset 48352 for trunk/src/wp-admin/comment.php
- Timestamp:
- 07/06/2020 09:50:23 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/comment.php
r48154 r48352 126 126 case 'spam': 127 127 $caution_msg = __( 'You are about to mark the following comment as spam:' ); 128 $button = _x( 'Mark as Spam', 'comment' );128 $button = _x( 'Mark as spam', 'comment' ); 129 129 break; 130 130 case 'trash': 131 131 $caution_msg = __( 'You are about to move the following comment to the Trash:' ); 132 $button = __( 'Move to Trash' );132 $button = __( 'Move to trash' ); 133 133 break; 134 134 case 'delete': 135 135 $caution_msg = __( 'You are about to delete the following comment:' ); 136 $button = __( 'Permanently Delete Comment' );136 $button = __( 'Permanently delete comment' ); 137 137 break; 138 138 default: 139 139 $caution_msg = __( 'You are about to approve the following comment:' ); 140 $button = __( 'Approve Comment' );140 $button = __( 'Approve comment' ); 141 141 break; 142 142 } … … 180 180 <?php } ?> 181 181 <tr> 182 <th scope="row"><?php /* translators: Column name or table row header. */ _e( 'In Response To' ); ?></th>182 <th scope="row"><?php /* translators: Column name or table row header. */ _e( 'In response to' ); ?></th> 183 183 <td> 184 184 <?php
Note: See TracChangeset
for help on using the changeset viewer.