Changeset 45926 for trunk/src/wp-login.php
- Timestamp:
- 09/01/2019 05:12:43 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r45788 r45926 445 445 446 446 if ( $message && ! wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) ) { 447 /* translators: URL to support page for resetting your password */448 $support = __( 'https://wordpress.org/support/article/resetting-your-password/' );449 447 $errors->add( 450 448 'retrieve_password_email_failure', 451 449 sprintf( 450 /* translators: %s: Documentation URL */ 452 451 __( '<strong>ERROR</strong>: The email could not be sent. Your site may not be correctly configured to send emails. <a href="%s">Get support for resetting your password</a>.' ), 453 esc_url( $support)452 esc_url( __( 'https://wordpress.org/support/article/resetting-your-password/' ) ) 454 453 ) 455 454 ); … … 654 653 655 654 printf( 656 __( 'Current administration email: <strong>%s</strong>' ), 657 esc_html( $admin_email ) 655 /* translators: %s: admin email address */ 656 __( 'Current administration email: %s' ), 657 '<strong>' . esc_html( $admin_email ) . '</strong>' 658 658 ); 659 659
Note: See TracChangeset
for help on using the changeset viewer.