Make WordPress Core

Ticket #44675: 44675.2.selected.media.permanently.diff

File 44675.2.selected.media.permanently.diff, 4.1 KB (added by garrett-eclipse, 6 years ago)

Sorry last minor change, added 'Permanently' to the Bulk Media Action button to make it Delete Selected Media Permanently

  • src/wp-admin/includes/class-wp-media-list-table.php

     
    151151                                $actions['untrash'] = __( 'Restore' );
    152152                                $actions['delete']  = __( 'Delete Permanently' );
    153153                        } else {
    154                                 $actions['trash'] = _x( 'Trash', 'verb' );
     154                                $actions['trash'] = __( 'Move to Trash' );
    155155                        }
    156156                } else {
    157157                        $actions['delete'] = __( 'Delete Permanently' );
  • src/wp-admin/includes/meta-boxes.php

     
    399399        <?php
    400400        if ( current_user_can( 'delete_post', $post->ID ) ) {
    401401                if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) {
    402                         echo "<a class='submitdelete deletion' href='" . get_delete_post_link( $post->ID ) . "'>" . _x( 'Trash', 'verb' ) . '</a>';
     402                        echo "<a class='submitdelete deletion' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Move to Trash' ) . '</a>';
    403403                } else {
    404404                        $delete_ays = ! MEDIA_TRASH ? " onclick='return showNotice.warn();'" : '';
    405405                        echo  "<a class='submitdelete deletion'$delete_ays href='" . get_delete_post_link( $post->ID, null, true ) . "'>" . __( 'Delete Permanently' ) . '</a>';
  • src/wp-includes/media-template.php

     
    480480                                <# if ( ! data.uploading && data.can.remove ) { #> |
    481481                                        <?php if ( MEDIA_TRASH ) : ?>
    482482                                                <# if ( 'trash' === data.status ) { #>
    483                                                         <button type="button" class="button-link untrash-attachment"><?php _e( 'Untrash' ); ?></button>
     483                                                        <button type="button" class="button-link untrash-attachment"><?php _e( 'Restore from Trash' ); ?></button>
    484484                                                <# } else { #>
    485                                                         <button type="button" class="button-link trash-attachment"><?php _ex( 'Trash', 'verb' ); ?></button>
     485                                                        <button type="button" class="button-link trash-attachment"><?php _e( 'Move to Trash' ); ?></button>
    486486                                                <# } #>
    487487                                        <?php else : ?>
    488488                                                <button type="button" class="button-link delete-attachment"><?php _e( 'Delete Permanently' ); ?></button>
     
    591591                                <# if ( ! data.uploading && data.can.remove ) { #>
    592592                                        <?php if ( MEDIA_TRASH ) : ?>
    593593                                        <# if ( 'trash' === data.status ) { #>
    594                                                 <button type="button" class="button-link untrash-attachment"><?php _e( 'Untrash' ); ?></button>
     594                                                <button type="button" class="button-link untrash-attachment"><?php _e( 'Restore from Trash' ); ?></button>
    595595                                        <# } else { #>
    596                                                 <button type="button" class="button-link trash-attachment"><?php _ex( 'Trash', 'verb' ); ?></button>
     596                                                <button type="button" class="button-link trash-attachment"><?php _ex( 'Move to Trash', 'verb' ); ?></button>
    597597                                        <# } #>
    598598                                        <?php else : ?>
    599599                                                <button type="button" class="button-link delete-attachment"><?php _e( 'Delete Permanently' ); ?></button>
  • src/wp-includes/media.php

     
    36813681                'warnBulkTrash'               => __( "You are about to trash these items.\n  'Cancel' to stop, 'OK' to delete." ),
    36823682                'bulkSelect'                  => __( 'Bulk Select' ),
    36833683                'cancelSelection'             => __( 'Cancel Selection' ),
    3684                 'trashSelected'               => __( 'Trash Selected' ),
    3685                 'untrashSelected'             => __( 'Untrash Selected' ),
    3686                 'deleteSelected'              => __( 'Delete Selected' ),
     3684                'trashSelected'               => __( 'Move Selected Media to Trash' ),
     3685                'untrashSelected'             => __( 'Restore Selected Media from Trash' ),
     3686                'deleteSelected'              => __( 'Delete Selected Media Permanently' ),
    36873687                'deletePermanently'           => __( 'Delete Permanently' ),
    36883688                'apply'                       => __( 'Apply' ),
    36893689                'filterByDate'                => __( 'Filter by date' ),