Make WordPress Core

Ticket #34502: 34502.patch

File 34502.patch, 1.0 KB (added by ramiy, 10 years ago)
  • wp-signup.php

     
    845845                                $newblog = get_blogaddress_by_name( $newblogname );
    846846
    847847                                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                                        );
    849853                                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                                        );
    851859                        }
    852860                        break;
    853861        }