- Timestamp:
- 07/06/2020 09:50:23 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r47808 r48352 352 352 } 353 353 if ( in_array( $comment_status, array( 'all', 'moderated', 'approved', 'trash' ), true ) ) { 354 $actions['spam'] = _x( 'Mark as Spam', 'comment' );354 $actions['spam'] = _x( 'Mark as spam', 'comment' ); 355 355 } 356 356 … … 358 358 $actions['untrash'] = __( 'Restore' ); 359 359 } elseif ( 'spam' === $comment_status ) { 360 $actions['unspam'] = _x( 'Not Spam', 'comment' );360 $actions['unspam'] = _x( 'Not spam', 'comment' ); 361 361 } 362 362 363 363 if ( in_array( $comment_status, array( 'trash', 'spam' ), true ) || ! EMPTY_TRASH_DAYS ) { 364 $actions['delete'] = __( 'Delete Permanently' );364 $actions['delete'] = __( 'Delete permanently' ); 365 365 } else { 366 $actions['trash'] = __( 'Move to Trash' );366 $actions['trash'] = __( 'Move to trash' ); 367 367 } 368 368 … … 468 468 if ( ! $post_id ) { 469 469 /* translators: Column name or table row header. */ 470 $columns['response'] = __( 'In Response To' );471 } 472 473 $columns['date'] = _x( 'Submitted On', 'column name' );470 $columns['response'] = __( 'In response to' ); 471 } 472 473 $columns['date'] = _x( 'Submitted on', 'column name' ); 474 474 475 475 return $columns;
Note: See TracChangeset
for help on using the changeset viewer.