diff --git src/bp-templates/bp-nouveau/buddypress/members/activate.php src/bp-templates/bp-nouveau/buddypress/members/activate.php
index a0ec42b63..fb7ac95e3 100644
|
|
|
|
| 3 | 3 | * BuddyPress - Members Activate |
| 4 | 4 | * |
| 5 | 5 | * @since 3.0.0 |
| 6 | | * @version 3.1.0 |
| | 6 | * @version 3.2.0 |
| 7 | 7 | */ |
| 8 | 8 | ?> |
| 9 | 9 | |
| … |
… |
|
| 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> |