mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 05:31:25 +01:00
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:
parent
7e1e4f379a
commit
3a32284b26
@ -1741,10 +1741,10 @@ function _admin_notice_post_locked() {
|
|||||||
<?php
|
<?php
|
||||||
if ( $override ) {
|
if ( $override ) {
|
||||||
/* translators: %s: User's display name. */
|
/* 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 {
|
} else {
|
||||||
/* translators: %s: User's display name. */
|
/* 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>
|
</p>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user