diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 486f6dc1db..7ad1ed361d 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -1741,10 +1741,10 @@ function _admin_notice_post_locked() { display_name ) ); + printf( __( '%s is currently editing this post. Do you want to take over?' ), esc_html( $user->display_name ) ); } else { /* translators: %s: User's display name. */ - printf( __( '%s is already editing this post.' ), esc_html( $user->display_name ) ); + printf( __( '%s is currently editing this post.' ), esc_html( $user->display_name ) ); } ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index 8d892dcc36..94f73999f0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-48742'; +$wp_version = '5.6-alpha-48743'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.