I18N: Unify permission error message in `wp-admin/ms-delete-site.php`.

Props ramiy.
Fixes #42268.

git-svn-id: https://develop.svn.wordpress.org/trunk@41934 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2017-10-19 00:47:15 +00:00
parent 0421a2b0a4
commit b1f20b6763
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ if ( isset( $_GET['h'] ) && $_GET['h'] != '' && get_option( 'delete_blog_hash' )
wpmu_delete_blog( get_current_blog_id() );
wp_die( sprintf( __( 'Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.' ), get_network()->site_name ) );
} else {
wp_die( __( "I'm sorry, the link you clicked is stale. Please select another option." ) );
wp_die( __( 'Sorry, the link you clicked is stale. Please select another option.' ) );
}
}