Make WordPress Core

Ticket #41694: 41694.patch

File 41694.patch, 853 bytes (added by ramiy, 8 years ago)
  • wp-signup.php

     
    470470        ?></h2>
    471471        <p>
    472472                <?php printf(
    473                         /* translators: 1: home URL, 2: site address, 3: login URL, 4: username */
    474                         __( '<a href="%1$s">%2$s</a> is your new site. <a href="%3$s">Log in</a> as &#8220;%4$s&#8221; using your existing password.' ),
    475                         esc_url( $home_url ),
    476                         untrailingslashit( $domain . $path ),
     473                        /* translators: 1: Link to new site, 2: login URL, 3: username */
     474                        __( '%1$s is your new site. <a href="%2$s">Log in</a> as &#8220;%3$s&#8221; using your existing password.' ),
     475                        sprintf(
     476                                '<a href="%1$s">%2$s</a>',
     477                                esc_url( $home_url ),
     478                                untrailingslashit( $domain . $path )
     479                        ),
    477480                        esc_url( $login_url ),
    478481                        $user_name
    479482                ); ?>