Ticket #46102: 46102.patch
File 46102.patch, 2.6 KB (added by , 3 years ago) |
---|
-
wp-activate.php
147 147 echo '<p class="lead-in">'; 148 148 if ( '' === $signup->domain . $signup->path ) { 149 149 printf( 150 /* translators: 1: Login URL, 2: Username, 3: User email address, 4: Lost password URL. */ 150 /* 151 translators: 152 1: Login URL, 153 2: Username, 154 3: User email address, 155 4: Lost password URL. 156 */ 151 157 __( '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>.' ), 152 158 network_site_url( $blog_details->path . 'wp-login.php', 'login' ), 153 159 $signup->user_login, … … 156 162 ); 157 163 } else { 158 164 printf( 159 /* translators: 1: Site URL, 2: Username, 3: User email address, 4: Lost password URL. */ 165 /* 166 translators: 167 1: Site URL, 168 2: Username, 169 3: User email address, 170 4: Lost password URL. 171 */ 160 172 __( 'Your site at %1$s is active. You may now log in to your 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>.' ), 161 173 sprintf( '<a href="http://%1$s%2$s">%1$s%2$s</a>', $signup->domain, $blog_details->path ), 162 174 $signup->user_login, … … 191 203 ?> 192 204 <p class="view"> 193 205 <?php 194 /* translators: 1: Site URL, 2: Login URL. */ 206 /* 207 translators: 208 1: Site URL, 209 2: Login URL. 210 */ 195 211 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 ) ); 196 212 ?> 197 213 </p> … … 199 215 <p class="view"> 200 216 <?php 201 217 printf( 202 /* translators: 1: Login URL, 2: Network home URL. */ 218 /* 219 translators: 220 1: Login URL, 221 2: Network home URL. 222 */ 203 223 __( 'Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), 204 224 network_site_url( $blog_details->path . 'wp-login.php', 'login' ), 205 225 network_home_url( $blog_details->path )