Changeset 47234
- Timestamp:
- 02/10/2020 04:56:01 AM (5 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r47219 r47234 201 201 if ( 'moderated' === $comment_status ) { 202 202 _e( 'No comments awaiting moderation.' ); 203 } elseif ( 'trash' === $comment_status ) { 204 _e( 'No comments found in Trash.' ); 203 205 } else { 204 206 _e( 'No comments found.' ); -
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r47219 r47234 223 223 */ 224 224 public function no_items() { 225 _e( 'No media files found.' ); 225 if ( $this->is_trash ) { 226 _e( 'No media files found in Trash.' ); 227 } else { 228 _e( 'No media files found.' ); 229 } 226 230 } 227 231
Note: See TracChangeset
for help on using the changeset viewer.