Changeset 11049
- Timestamp:
- 06/21/2021 07:15:57 AM (3 years ago)
- 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 487 487 'invalid_username' => sprintf( 488 488 /* 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 log in 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' ), 490 490 '<strong>' . esc_html( wp_unslash( $_POST['log'] ?? '' ) ) . '</strong>' 491 491 ), -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/linkexpired.php
r11048 r11049 33 33 echo '<p class="center">' . __( "That account has already been created.", 'wporg' ) . '</p>'; 34 34 35 echo '<p class="center"><a href="' . add_query_arg( 'user', $user, home_url() ) . '">' . __( 'Please log in 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>'; 36 36 37 37 echo '<p class="center"><a href="' . esc_url( home_url( '/lostpassword/' . urlencode( $user ) ) ) . '">' . … … 45 45 ) . '</p>'; 46 46 47 echo '<p class="center">' . __( 'Please log out, 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>'; 48 48 49 49 echo '<p class="center">' . sprintf(
Note: See TracChangeset
for help on using the changeset viewer.