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
This commit is contained in:
Sergey Biryukov 2019-05-26 15:59:37 +00:00
parent 88f579b256
commit e1cc160ba9
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ if ( empty( $option_page ) ) {
if ( ! current_user_can( $capability ) ) {
wp_die(
'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
'<p>' . __( 'Sorry, you are not allowed to manage these options.' ) . '</p>',
'<p>' . __( 'Sorry, you are not allowed to manage options for this site.' ) . '</p>',
403
);
}