Making WordPress.org

Changeset 11049


Ignore:
Timestamp:
06/21/2021 07:15:57 AM (3 years ago)
Author:
dd32
Message:

Login: Consistently use log in as a verb, and login as a noun. Same for log out.

See #5754.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions.php

    r11045 r11049  
    487487        'invalid_username' => sprintf(
    488488            /* translators: %s: <strong>UserLogin</strong> */
    489             __( "<strong>Error:</strong> The username %s is not registered on WordPress.org. If you're unsure of your username, you can attempt to login using your email address instead.", 'wporg' ),
     489            __( "<strong>Error:</strong> The username %s is not registered on WordPress.org. If you're unsure of your username, you can attempt to log in using your email address instead.", 'wporg' ),
    490490            '<strong>' . esc_html( wp_unslash( $_POST['log'] ?? '' ) ) . '</strong>'
    491491        ),
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/linkexpired.php

    r11048 r11049  
    3333    echo '<p class="center">' . __( "That account has already been created.", 'wporg' ) . '</p>';
    3434
    35     echo '<p class="center"><a href="' . add_query_arg( 'user', $user, home_url() ) . '">' . __( 'Please login to continue.', 'wporg' ) . '</a></p>';
     35    echo '<p class="center"><a href="' . add_query_arg( 'user', $user, home_url() ) . '">' . __( 'Please log in to continue.', 'wporg' ) . '</a></p>';
    3636
    3737    echo '<p class="center"><a href="' . esc_url( home_url( '/lostpassword/'  . urlencode( $user ) ) ) . '">' .
     
    4545    ) . '</p>';
    4646
    47     echo '<p class="center">' . __( 'Please logout, and follow the link again to complete the registration.', 'wporg' ) . '</p>';
     47    echo '<p class="center">' . __( 'Please log out, and follow the link again to complete the registration.', 'wporg' ) . '</p>';
    4848
    4949    echo '<p class="center">' . sprintf(
Note: See TracChangeset for help on using the changeset viewer.