Text Changes: Remove duplicate string, use the one we already have.

See #34521.

git-svn-id: https://develop.svn.wordpress.org/trunk@37960 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2016-07-04 22:09:32 +00:00
parent 1752b073e0
commit 83e3bc084b
1 changed files with 1 additions and 1 deletions

View File

@ -3397,7 +3397,7 @@ function wp_ajax_update_theme() {
);
if ( ! current_user_can( 'update_themes' ) ) {
$status['errorMessage'] = __( 'Sorry, you are not allowed to update themes on this site.' );
$status['errorMessage'] = __( 'Sorry, you are not allowed to update themes for this site.' );
wp_send_json_error( $status );
}