Ticket #22306: 22306.4.patch
| File 22306.4.patch, 1.5 KB (added by SergeyBiryukov, 6 months ago) |
|---|
-
wp-signup.php
361 361 <ul id="noemail-tips"> 362 362 <li><p><strong><?php _e( 'Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.' ) ?></strong></p></li> 363 363 <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li> 364 <li><?php printf( __( 'Have you entered your email correctly? You have entered %s, if it’s incorrect, you will not receive your email.' ), $user_email ) ?></li>364 <li><?php printf( __( 'Have you entered your email correctly? You have entered %s, if it’s incorrect, you will not receive your email.' ), $user_email ) ?></li> 365 365 </ul> 366 366 </p> 367 367 <?php … … 427 427 $newblog = get_blogaddress_by_name( $newblogname ); 428 428 429 429 if ( $active_signup == 'blog' || $active_signup == 'all' ) 430 printf( __( '<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>' ), $newblog );430 printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!' ) . '</p></em>', $newblog ); 431 431 else 432 printf( __( '<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>' ), $newblog );432 printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist.' ) . '</p></em>', $newblog ); 433 433 } 434 434 break; 435 435 }
