Make WordPress Core

Changeset 24058 for trunk/wp-signup.php


Ignore:
Timestamp:
04/22/2013 08:49:24 PM (12 years ago)
Author:
nacin
Message:

Adjust some strings in wp-signup.php.

  • Remove double space.
  • Remove outer HTML.

props pavelevap, SergeyBiryukov.
fixes #22306.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-signup.php

    r23362 r24058  
    504504            <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>
    505505            <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li>
    506             <li><?php printf( __( 'Have you entered your email correctly?  You have entered %s, if it&#8217;s incorrect, you will not receive your email.' ), $user_email ) ?></li>
     506            <li><?php printf( __( 'Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email.' ), $user_email ) ?></li>
    507507        </ul>
    508508    </p>
     
    570570
    571571                if ( $active_signup == 'blog' || $active_signup == 'all' )
    572                     printf( __( '<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>' ), $newblog );
     572                    printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist, but you can create it now!' ) . '</em></p>', $newblog );
    573573                else
    574                     printf( __( '<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>' ), $newblog );
     574                    printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist.' ) . '</em></p>', $newblog );
    575575            }
    576576            break;
Note: See TracChangeset for help on using the changeset viewer.