diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-admin/media.php --- a/wp/wp-admin/media.php Tue Jun 09 11:14:17 2015 +0000 +++ b/wp/wp-admin/media.php Mon Oct 14 17:39:30 2019 +0200 @@ -20,7 +20,7 @@ check_admin_referer('media-form'); if ( !current_user_can('edit_post', $attachment_id) ) - wp_die ( __('You are not allowed to edit this attachment.') ); + wp_die ( __('Sorry, you are not allowed to edit this attachment.') ); $errors = media_upload_form_handler(); @@ -54,7 +54,7 @@ $att_id = (int) $_GET['attachment_id']; if ( !current_user_can('edit_post', $att_id) ) - wp_die ( __('You are not allowed to edit this attachment.') ); + wp_die ( __('Sorry, you are not allowed to edit this attachment.') ); $att = get_post($att_id); @@ -80,8 +80,8 @@ get_current_screen()->set_help_sidebar( '
' . __('For more information:') . '
' . - '' . __('Documentation on Edit Media') . '
' . - '' . __('Support Forums') . '
' + '' . __('Documentation on Edit Media') . '
' . + '' . __('Support Forums') . '
' ); require( ABSPATH . 'wp-admin/admin-header.php' ); @@ -92,7 +92,7 @@ if ( isset($_GET['message']) ) { switch ( $_GET['message'] ) { case 'updated' : - $message = __('Media attachment updated.'); + $message = __('Media file updated.'); $class = 'updated'; break; } @@ -103,13 +103,16 @@ ?>