diff --git a/wp-admin/async-upload.php b/wp-admin/async-upload.php
index 47cae15fb9..9b668238f5 100644
--- a/wp-admin/async-upload.php
+++ b/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;
}
diff --git a/wp-includes/version.php b/wp-includes/version.php
index a303151df8..892f022fa2 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.4-alpha-33841';
+$wp_version = '4.4-alpha-33842';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.