From f4d197c534508e5c5786258733be1edf132a1487 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 4 Jul 2016 21:36:55 +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@37956 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/ajax-actions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/ajax-actions.php b/src/wp-admin/includes/ajax-actions.php index 44cfcf4daf..a25f34a4e2 100644 --- a/src/wp-admin/includes/ajax-actions.php +++ b/src/wp-admin/includes/ajax-actions.php @@ -3826,7 +3826,7 @@ function wp_ajax_search_install_plugins() { $status = array(); if ( ! $wp_list_table->ajax_user_can() ) { - $status['errorMessage'] = __( 'Sorry, you are not allowed to manage plugins on this site.' ); + $status['errorMessage'] = __( 'Sorry, you are not allowed to manage plugins for this site.' ); wp_send_json_error( $status ); }