diff --git src/bp-templates/bp-nouveau/buddypress/members/activate.php src/bp-templates/bp-nouveau/buddypress/members/activate.php
index a0ec42b63..93b958607 100644
|
|
|
|
| 22 | 22 | <?php else : ?> |
| 23 | 23 | <p> |
| 24 | 24 | <?php |
| 25 | | echo esc_html( |
| 26 | | sprintf( |
| 27 | | __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', 'buddypress' ), |
| 28 | | wp_login_url( bp_get_root_domain() ) |
| 29 | | ) |
| | 25 | echo sprintf( |
| | 26 | /* Translators: %s is used to output the Login link */ |
| | 27 | esc_html__( 'Your account was activated successfully! You can now %s with the username and password you provided when you signed up.', 'buddypress' ), |
| | 28 | '<a href="' . wp_login_url( bp_get_root_domain() ) . '"> ' . esc_html_x( 'log in', 'Activated signup confirmation message', 'buddypress' ) . '</a>' |
| 30 | 29 | ); |
| 31 | 30 | ?> |
| 32 | 31 | </p> |