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
This commit is contained in:
Sergey Biryukov 2020-08-06 13:14:08 +00:00
parent 7e1e4f379a
commit 3a32284b26
2 changed files with 3 additions and 3 deletions

View File

@ -1741,10 +1741,10 @@ function _admin_notice_post_locked() {
<?php
if ( $override ) {
/* translators: %s: User's display name. */
printf( __( '%s is already editing this post. Do you want to take over?' ), esc_html( $user->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 ) );
}
?>
</p>

View File

@ -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.