From e1cc160ba969ac221cbb04680f37472a7d3e6d3e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 26 May 2019 15:59:37 +0000 Subject: [PATCH] I18N: Merge duplicate "not allowed to manage options" strings. Props ramiy. Fixes #42271. git-svn-id: https://develop.svn.wordpress.org/trunk@45439 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/options.php b/src/wp-admin/options.php index c07801050c..5d224f37c4 100644 --- a/src/wp-admin/options.php +++ b/src/wp-admin/options.php @@ -47,7 +47,7 @@ if ( empty( $option_page ) ) { if ( ! current_user_can( $capability ) ) { wp_die( '

' . __( 'You need a higher level of permission.' ) . '

' . - '

' . __( 'Sorry, you are not allowed to manage these options.' ) . '

', + '

' . __( 'Sorry, you are not allowed to manage options for this site.' ) . '

', 403 ); }