Make WordPress Core

Ticket #46102: 46102.patch

File 46102.patch, 2.6 KB (added by rehanali, 3 years ago)

Improves the documentation.

  • wp-activate.php

     
    147147                        echo '<p class="lead-in">';
    148148                        if ( '' === $signup->domain . $signup->path ) {
    149149                                printf(
    150                                         /* translators: 1: Login URL, 2: Username, 3: User email address, 4: Lost password URL. */
     150                                        /*
     151                                         translators:
     152                                          1: Login URL,
     153                                          2: Username,
     154                                          3: User email address,
     155                                          4: Lost password URL.
     156                                         */
    151157                                        __( '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>.' ),
    152158                                        network_site_url( $blog_details->path . 'wp-login.php', 'login' ),
    153159                                        $signup->user_login,
     
    156162                                );
    157163                        } else {
    158164                                printf(
    159                                         /* translators: 1: Site URL, 2: Username, 3: User email address, 4: Lost password URL. */
     165                                        /*
     166                                         translators:
     167                                          1: Site URL,
     168                                          2: Username,
     169                                          3: User email address,
     170                                          4: Lost password URL.
     171                                        */
    160172                                        __( 'Your site at %1$s is active. You may now log in to your 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>.' ),
    161173                                        sprintf( '<a href="http://%1$s%2$s">%1$s%2$s</a>', $signup->domain, $blog_details->path ),
    162174                                        $signup->user_login,
     
    191203                                ?>
    192204                                <p class="view">
    193205                                <?php
    194                                         /* translators: 1: Site URL, 2: Login URL. */
     206                                        /*
     207                                         translators:
     208                                          1: Site URL,
     209                                          2: Login URL.
     210                                        */
    195211                                        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 ) );
    196212                                ?>
    197213                                </p>
     
    199215                                <p class="view">
    200216                                <?php
    201217                                        printf(
    202                                                 /* translators: 1: Login URL, 2: Network home URL. */
     218                                                /*
     219                                                 translators:
     220                                                  1: Login URL,
     221                                                  2: Network home URL.
     222                                                */
    203223                                                __( 'Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ),
    204224                                                network_site_url( $blog_details->path . 'wp-login.php', 'login' ),
    205225                                                network_home_url( $blog_details->path )