mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Posts, Post Types: Use a consistent wording in messages about a locked post.
Props ramiy. Fixes #50859. git-svn-id: https://develop.svn.wordpress.org/trunk@48743 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user