From 31497f69a17722bce464b9fe4a59c8edac8813a4 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 4 Jul 2016 21:47:19 +0000 Subject: [PATCH] Text Changes: Remove duplicate string, use the one we already have. See #34521. git-svn-id: https://develop.svn.wordpress.org/trunk@37958 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/upload.php b/src/wp-admin/upload.php index 991274dbb2..b9495ac059 100644 --- a/src/wp-admin/upload.php +++ b/src/wp-admin/upload.php @@ -144,7 +144,7 @@ if ( $doaction ) { break; foreach ( (array) $post_ids as $post_id ) { if ( !current_user_can( 'delete_post', $post_id ) ) - wp_die( __( 'Sorry, you are not allowed to move this item out of the Trash.' ) ); + wp_die( __( 'Sorry, you are not allowed to restore this item from the Trash.' ) ); if ( !wp_untrash_post( $post_id ) ) wp_die( __( 'Error in restoring from Trash.' ) );