Ticket #34502: 34502.patch
| File 34502.patch, 1.0 KB (added by , 10 years ago) |
|---|
-
wp-signup.php
845 845 $newblog = get_blogaddress_by_name( $newblogname ); 846 846 847 847 if ( $active_signup == 'blog' || $active_signup == 'all' ) 848 printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist, but you can create it now!' ) . '</em></p>', $newblog ); 848 printf( 849 /* translators: %s: site address */ 850 '<p><em>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</em></p>', 851 '<strong>' . $newblog . '</strong>' 852 ); 849 853 else 850 printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist.' ) . '</em></p>', $newblog ); 854 printf( 855 /* translators: %s: site address */ 856 '<p><em>' . __( 'The site you were looking for, %s, does not exist.' ) . '</em></p>', 857 '<strong>' . $newblog . '</strong>' 858 ); 851 859 } 852 860 break; 853 861 }