Make WordPress Core

Ticket #38669: 38669.4.diff

File 38669.4.diff, 996 bytes (added by Presskopp, 6 years ago)
  • src/wp-admin/includes/class-wp-comments-list-table.php

     
    199199
    200200                if ( 'moderated' === $comment_status ) {
    201201                        _e( 'No comments awaiting moderation.' );
     202                } elseif ( 'trash' === $comment_status ) {
     203                        _e( 'No comments found in Trash.' );
    202204                } else {
    203205                        _e( 'No comments found.' );
    204206                }
  • src/wp-admin/includes/class-wp-media-list-table.php

     
    222222        /**
    223223         */
    224224        public function no_items() {
     225                if ( $this->is_trash ) {
     226                        _e( 'No media files found in Trash.' );
     227                } else {
    225228                _e( 'No media files found.' );
    226229        }
    227230