From cfff91526f8f7e210d5b2d29ca0af5cb6c8b657b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 1 Sep 2015 13:45:15 +0000 Subject: [PATCH] Merge two similar strings. props pavelevap. fixes #33643. git-svn-id: https://develop.svn.wordpress.org/trunk@33842 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/async-upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/async-upload.php b/src/wp-admin/async-upload.php index 47cae15fb9..9b668238f5 100644 --- a/src/wp-admin/async-upload.php +++ b/src/wp-admin/async-upload.php @@ -89,7 +89,7 @@ $id = media_handle_upload( 'async-upload', $post_id ); if ( is_wp_error($id) ) { echo '
' . __('Dismiss') . ' - ' . sprintf(__('“%s” has failed to upload due to an error'), esc_html($_FILES['async-upload']['name']) ) . '
' . + ' . sprintf(__('“%s” has failed to upload.'), esc_html($_FILES['async-upload']['name']) ) . '
' . esc_html($id->get_error_message()) . '
'; exit; }