Changeset 37552 for trunk/src/wp-activate.php
- Timestamp:
- 05/24/2016 09:01:47 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-activate.php
r37536 r37552 93 93 if ( is_wp_error($result) ) { 94 94 if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) { 95 95 $signup = $result->get_error_data(); 96 96 ?> 97 97 <h2><?php _e('Your account is now active!'); ?></h2> … … 99 99 echo '<p class="lead-in">'; 100 100 if ( $signup->domain . $signup->path == '' ) { 101 printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() ); 101 printf( 102 /* translators: 1: login URL, 2: username, 3: user email, 4: lost password URL */ 103 __( 'Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ), 104 network_site_url( 'wp-login.php', 'login' ), 105 $signup->user_login, 106 $signup->user_email, 107 wp_lostpassword_url() 108 ); 102 109 } else { 103 printf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() ); 110 printf( 111 /* translators: 1: site URL, 2: site domain, 3: username, 4: user email, 5: lost password URL */ 112 __( 'Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.' ), 113 'http://' . $signup->domain, 114 $signup->domain, 115 $signup->user_login, 116 $signup->user_email, 117 wp_lostpassword_url() 118 ); 104 119 } 105 120 echo '</p>'; 106 121 } else { 107 122 ?> 108 <h2><?php _e('An error occurred during the activation'); ?></h2> 123 <h2><?php _e( 'An error occurred during the activation' ); ?></h2> 124 <p><?php echo $result->get_error_message(); ?></p> 109 125 <?php 110 echo '<p>'.$result->get_error_message().'</p>';111 126 } 112 127 } else { … … 126 141 restore_current_blog(); 127 142 ?> 128 <p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) ); ?></p> 143 <p class="view"><?php 144 /* translators: 1: site URL, 2: login URL */ 145 printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) ); 146 ?></p> 129 147 <?php else: ?> 130 <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?></p> 148 <p class="view"><?php 149 /* translators: 1: login URL, 2: network home URL */ 150 printf( __( 'Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url( 'wp-login.php', 'login' ), network_home_url() ); 151 ?></p> 131 152 <?php endif; 132 153 }
Note: See TracChangeset
for help on using the changeset viewer.