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
This commit is contained in:
Sergey Biryukov 2016-07-04 21:36:55 +00:00
parent 1d16d1f36d
commit f4d197c534
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}