Make WordPress Core


Ignore:
Timestamp:
08/06/2020 01:12:03 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Posts, Post Types: Use a consistent wording in messages about a locked post.

Props ramiy.
Fixes #50859.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/post.php

    r48574 r48743  
    17421742        if ( $override ) {
    17431743            /* translators: %s: User's display name. */
    1744             printf( __( '%s is already editing this post. Do you want to take over?' ), esc_html( $user->display_name ) );
     1744            printf( __( '%s is currently editing this post. Do you want to take over?' ), esc_html( $user->display_name ) );
    17451745        } else {
    17461746            /* translators: %s: User's display name. */
    1747             printf( __( '%s is already editing this post.' ), esc_html( $user->display_name ) );
     1747            printf( __( '%s is currently editing this post.' ), esc_html( $user->display_name ) );
    17481748        }
    17491749        ?>
Note: See TracChangeset for help on using the changeset viewer.