Make WordPress Core

Ticket #44675: 44675.5.diff

File 44675.5.diff, 792 bytes (added by garrett-eclipse, 5 years ago)

Patch to address the unnecessary and incorrect 'verb' context on 'Move to Trash'

  • src/wp-includes/media-template.php

     
    593593                                        <# if ( 'trash' === data.status ) { #>
    594594                                                <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( 'Move to Trash', 'verb' ); ?></button>
     596                                                <button type="button" class="button-link trash-attachment"><?php _e( 'Move to Trash' ); ?></button>
    597597                                        <# } #>
    598598                                        <?php else : ?>
    599599                                                <button type="button" class="button-link delete-attachment"><?php _e( 'Delete Permanently' ); ?></button>