diff --git a/wp-admin/includes/class-wp-media-list-table.php b/wp-admin/includes/class-wp-media-list-table.php index ff3d660f18..fec8d717a2 100644 --- a/wp-admin/includes/class-wp-media-list-table.php +++ b/wp-admin/includes/class-wp-media-list-table.php @@ -842,9 +842,17 @@ class WP_Media_List_Table extends WP_List_Table { esc_url( wp_get_attachment_url( $post->ID ) ), /* translators: %s: Attachment title. */ esc_attr( sprintf( __( 'Copy “%s” URL to clipboard' ), $att_title ) ), - __( 'Copy URL to clipboard' ), + __( 'Copy URL' ), __( 'Copied!' ) ); + + $actions['download'] = sprintf( + '%s', + wp_get_attachment_url( $post->ID ), + /* translators: %s: Attachment title. */ + esc_attr( sprintf( __( 'Download “%s”' ), $att_title ) ), + __( 'Download file' ) + ); } } diff --git a/wp-admin/upload.php b/wp-admin/upload.php index 1790ab281e..1594d7858d 100644 --- a/wp-admin/upload.php +++ b/wp-admin/upload.php @@ -333,7 +333,8 @@ get_current_screen()->add_help_tab( '
  • ' . __( 'Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.' ) . '
  • ' . '
  • ' . __( 'Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).' ) . '
  • ' . '
  • ' . __( 'View will take you to a public display page for that file.' ) . '
  • ' . - '
  • ' . __( 'Copy URL to clipboard copies the URL for the media file to your clipboard.' ) . '
  • ' . + '
  • ' . __( 'Copy URL copies the URL for the media file to your clipboard.' ) . '
  • ' . + '
  • ' . __( 'Download file downloads the original media file to your device.' ) . '
  • ' . '', ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 356f46ed71..6141e33828 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-55197'; +$wp_version = '6.2-alpha-55198'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.