Make WordPress Core

Ticket #55718: 55718.2.diff

File 55718.2.diff, 2.3 KB (added by lopo, 2 years ago)
  • src/wp-includes/comment-template.php

     
    22942294 *     }
    22952295 *     @type string $comment_field        The comment textarea field HTML.
    22962296 *     @type string $must_log_in          HTML element for a 'must be logged in to comment' message.
    2297  *     @type string $logged_in_as         HTML element for a 'logged in as [user]' message.
     2297 *     @type string $logged_in_as         The HTML for the 'logged in as [user]' message, the Edit profile link,
     2298 *                                        and the Log out link.
    22982299 *     @type string $comment_notes_before HTML element for a message displayed before the comment fields
    22992300 *                                        if the user is not logged in.
    23002301 *                                        Default 'Your email address will not be published.'.
     
    24632464                'logged_in_as'         => sprintf(
    24642465                        '<p class="logged-in-as">%s%s</p>',
    24652466                        sprintf(
    2466                                 /* translators: 1: Edit user link, 2: Accessibility text, 3: User name, 4: Logout URL. */
    2467                                 __( '<a href="%1$s" aria-label="%2$s">Logged in as %3$s</a>. <a href="%4$s">Log out?</a>' ),
     2467                                /* translators: 1: User name, 2: Edit user link, 3: Logout URL. */
     2468                                __( 'Logged in as %1$s. <a href="%2$s">Edit your profile</a>. <a href="%3$s">Log out?</a>' ),
     2469                                $user_identity,
    24682470                                get_edit_user_link(),
    2469                                 /* translators: %s: User name. */
    2470                                 esc_attr( sprintf( __( 'Logged in as %s. Edit your profile.' ), $user_identity ) ),
    2471                                 $user_identity,
    24722471                                /** This filter is documented in wp-includes/link-template.php */
    24732472                                wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) )
    24742473                        ),
     
    25842583                                 *
    25852584                                 * @since 3.0.0
    25862585                                 *
    2587                                  * @param string $args_logged_in The logged-in-as HTML-formatted message.
     2586                                 * @param string $args_logged_in The HTML for the 'logged in as [user]' message,
     2587                                 *                               the Edit profile link, and the Log out link.
    25882588                                 * @param array  $commenter      An array containing the comment author's
    25892589                                 *                               username, email, and URL.
    25902590                                 * @param string $user_identity  If the commenter is a registered user,