Make WordPress Core


Ignore:
Timestamp:
07/05/2020 10:38:24 AM (6 years ago)
Author:
SergeyBiryukov
Message:

Posts, Post Types: Clarify some "Error in deleting" messages, use more specific strings for attachments.

Props dingo_d.
See #50546.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit.php

    r47855 r48312  
    118118
    119119                if ( ! wp_trash_post( $post_id ) ) {
    120                     wp_die( __( 'Error in moving to Trash.' ) );
     120                    wp_die( __( 'Error in moving the item to Trash.' ) );
    121121                }
    122122
     
    141141
    142142                if ( ! wp_untrash_post( $post_id ) ) {
    143                     wp_die( __( 'Error in restoring from Trash.' ) );
     143                    wp_die( __( 'Error in restoring the item from Trash.' ) );
    144144                }
    145145
     
    159159                if ( 'attachment' === $post_del->post_type ) {
    160160                    if ( ! wp_delete_attachment( $post_id ) ) {
    161                         wp_die( __( 'Error in deleting.' ) );
     161                        wp_die( __( 'Error in deleting the attachment.' ) );
    162162                    }
    163163                } else {
    164164                    if ( ! wp_delete_post( $post_id ) ) {
    165                         wp_die( __( 'Error in deleting.' ) );
     165                        wp_die( __( 'Error in deleting the item.' ) );
    166166                    }
    167167                }
Note: See TracChangeset for help on using the changeset viewer.