Changeset 35447
- Timestamp:
- 10/30/2015 02:08:03 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-signup.php
r35159 r35447 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 /* translators: %s: site address */ 849 printf( '<p><em>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</em></p>', 850 '<strong>' . $newblog . '</strong>' 851 ); 849 852 else 850 printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist.' ) . '</em></p>', $newblog ); 853 /* translators: %s: site address */ 854 printf( '<p><em>' . __( 'The site you were looking for, %s, does not exist.' ) . '</em></p>', 855 '<strong>' . $newblog . '</strong>' 856 ); 851 857 } 852 858 break;
Note: See TracChangeset
for help on using the changeset viewer.