1146 | | <p> |
1147 | | <?php printf(__( '<a href="%1$s">%2$s</a> is your new site. <a href="%3$s">Login</a> as "%4$s" using your existing password.', 'buddypress' ), $blog_url, $blog_url, $blog_url . "wp-login.php", $user_name ); ?> |
1148 | | </p> |
| 1146 | <p><?php |
| 1147 | printf( |
| 1148 | __( '%s is your new site.', 'buddypress' ), |
| 1149 | sprintf( '<a href="%s">%s</a>', $blog_url ) |
| 1150 | ); |
| 1151 | ?> |
| 1152 | <?php |
| 1153 | printf( |
| 1154 | __( '<a href="%1$s">Login</a> as "%2$s" using your existing password.', 'buddypress' ), |
| 1155 | $blog_url . "wp-login.php", |
| 1156 | $user_name |
| 1157 | ); |
| 1158 | ?></p> |