Make WordPress Core


Ignore:
Timestamp:
05/24/2016 09:01:47 PM (8 years ago)
Author:
ocean90
Message:

I18N: Add translators comments to wp-activate.php.

Props ramiy.
Fixes #35734.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-activate.php

    r37536 r37552  
    9393        if ( is_wp_error($result) ) {
    9494            if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
    95                 $signup = $result->get_error_data();
     95                $signup = $result->get_error_data();
    9696                ?>
    9797                <h2><?php _e('Your account is now active!'); ?></h2>
     
    9999                echo '<p class="lead-in">';
    100100                if ( $signup->domain . $signup->path == '' ) {
    101                     printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() );
     101                    printf(
     102                        /* translators: 1: login URL, 2: username, 3: user email, 4: lost password URL */
     103                        __( 'Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ),
     104                        network_site_url( 'wp-login.php', 'login' ),
     105                        $signup->user_login,
     106                        $signup->user_email,
     107                        wp_lostpassword_url()
     108                    );
    102109                } else {
    103                     printf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() );
     110                    printf(
     111                        /* translators: 1: site URL, 2: site domain, 3: username, 4: user email, 5: lost password URL */
     112                        __( 'Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.' ),
     113                        'http://' . $signup->domain,
     114                        $signup->domain,
     115                        $signup->user_login,
     116                        $signup->user_email,
     117                        wp_lostpassword_url()
     118                    );
    104119                }
    105120                echo '</p>';
    106121            } else {
    107122                ?>
    108                 <h2><?php _e('An error occurred during the activation'); ?></h2>
     123                <h2><?php _e( 'An error occurred during the activation' ); ?></h2>
     124                <p><?php echo $result->get_error_message(); ?></p>
    109125                <?php
    110                 echo '<p>'.$result->get_error_message().'</p>';
    111126            }
    112127        } else {
     
    126141                restore_current_blog();
    127142                ?>
    128                 <p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) ); ?></p>
     143                <p class="view"><?php
     144                    /* translators: 1: site URL, 2: login URL */
     145                    printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) );
     146                ?></p>
    129147            <?php else: ?>
    130                 <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?></p>
     148                <p class="view"><?php
     149                    /* translators: 1: login URL, 2: network home URL */
     150                    printf( __( 'Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url( 'wp-login.php', 'login' ), network_home_url() );
     151                ?></p>
    131152            <?php endif;
    132153        }
Note: See TracChangeset for help on using the changeset viewer.