From 3a32284b2636fea18d1c8b27de2b7f36caabbb72 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 6 Aug 2020 13:14:08 +0000 Subject: [PATCH] Posts, Post Types: Use a consistent wording in messages about a locked post. Props ramiy. Fixes #50859. Built from https://develop.svn.wordpress.org/trunk@48743 git-svn-id: http://core.svn.wordpress.org/trunk@48505 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/post.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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.