Changeset 55198
- Timestamp:
- 02/02/2023 10:46:02 PM (22 months ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r55159 r55198 843 843 /* translators: %s: Attachment title. */ 844 844 esc_attr( sprintf( __( 'Copy “%s” URL to clipboard' ), $att_title ) ), 845 __( 'Copy URL to clipboard' ),845 __( 'Copy URL' ), 846 846 __( 'Copied!' ) 847 ); 848 849 $actions['download'] = sprintf( 850 '<a href="%s" aria-label="%s" download>%s</a>', 851 wp_get_attachment_url( $post->ID ), 852 /* translators: %s: Attachment title. */ 853 esc_attr( sprintf( __( 'Download “%s”' ), $att_title ) ), 854 __( 'Download file' ) 847 855 ); 848 856 } -
trunk/src/wp-admin/upload.php
r55183 r55198 334 334 '<li>' . __( '<strong>Delete Permanently</strong> will delete the file from the media library (as well as from any posts to which it is currently attached).' ) . '</li>' . 335 335 '<li>' . __( '<strong>View</strong> will take you to a public display page for that file.' ) . '</li>' . 336 '<li>' . __( '<strong>Copy URL to clipboard</strong> copies the URL for the media file to your clipboard.' ) . '</li>' . 336 '<li>' . __( '<strong>Copy URL</strong> copies the URL for the media file to your clipboard.' ) . '</li>' . 337 '<li>' . __( '<strong>Download file</strong> downloads the original media file to your device.' ) . '</li>' . 337 338 '</ul>', 338 339 )
Note: See TracChangeset
for help on using the changeset viewer.