Make WordPress Core

Changeset 35898


Ignore:
Timestamp:
12/13/2015 03:23:54 PM (8 years ago)
Author:
SergeyBiryukov
Message:

Credits: After [26354], replace another instance of the "Contributing to WordPress" Codex link with http://make.wordpress.org/.

Remove redundant translator comments, add comments for placeholders instead.

See #25806.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/credits.php

    r35812 r35898  
    3636
    3737if ( ! $credits ) {
    38     echo '<p class="about-description">' . sprintf( __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ),
     38    echo '<p class="about-description">';
     39    /* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */
     40    printf( __( 'WordPress is created by a <a href="%1$s">worldwide team</a> of passionate individuals. <a href="%2$s">Get involved in WordPress</a>.' ),
    3941        'https://wordpress.org/about/',
    40         /* translators: Url to the codex documentation on contributing to WordPress used on the credits page */
    41         __( 'https://codex.wordpress.org/Contributing_to_WordPress' ) ) . '</p>';
     42        __( 'https://make.wordpress.org/' )
     43    );
     44    echo '</p>';
    4245    include( ABSPATH . 'wp-admin/admin-footer.php' );
    4346    exit;
     
    9598
    9699?>
    97 <p class="clear"><?php printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
    98     /* translators: URL to the Make WordPress 'Get Involved' landing page used on the credits page */
    99     __( 'https://make.wordpress.org/' ) ); ?></p>
     100<p class="clear"><?php
     101    /* translators: %s: https://make.wordpress.org/ */
     102    printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
     103        __( 'https://make.wordpress.org/' )
     104    );
     105?></p>
    100106
    101107</div>
Note: See TracChangeset for help on using the changeset viewer.