Make WordPress Core


Ignore:
Timestamp:
05/18/2011 07:39:24 PM (13 years ago)
Author:
nacin
Message:

Allow Codex URLs to be translated. Don't offer wp.org/about/ URLs for translation. props zeo, xibe. fixes #17480.

File:
1 edited

Legend:

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

    r17948 r17960  
    3535        if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) )
    3636            return false;
    37    
     37
    3838        $results = unserialize( wp_remote_retrieve_body( $response ) );
    3939
     
    6262
    6363if ( !isset( $results['people'] ) ) {
    64     echo '<p>' . 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>.' ),
    65         'http://wordpress.org/about/',
    66         'http://codex.wordpress.org/Contributing_to_WordPress' ) . '</p>';
     64    echo '<p>' . sprintf( __( 'WordPress is created by a <a href="%s">worldwide team</a> of passionate individuals. <a href="http://codex.wordpress.org/Contributing_to_WordPress">Get involved in WordPress</a>.' ), 'http://wordpress.org/about/' ) . '</p>';
    6765    include( './admin-footer.php' );
    6866    exit;
    6967}
    7068
    71 echo '<p>' . __( "WordPress is created by a worldwide team of passionate individuals. We couldn't possibly list them all, but here some of the most influential people currently involved with the project:" ) . "</p>\n";
     69echo '<p>' . __( 'WordPress is created by a worldwide team of passionate individuals. We couldn&#8217;t possibly list them all, but here some of the most influential people currently involved with the project:' ) . "</p>\n";
    7270
    7371$gravatar = is_ssl() ? 'https://secure.gravatar.com/avatar/' : 'http://0.gravatar.com/avatar/';
     
    9492
    9593?>
    96 <p class="clear"><?php printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ), 'http://codex.wordpress.org/Contributing_to_WordPress' ); ?></p>
     94<p class="clear"><?php _e( 'Want to see your name in lights on this page? <a href="http://codex.wordpress.org/Contributing_to_WordPress">Get involved in WordPress</a>.' ); ?></p>
    9795
    9896</div>
Note: See TracChangeset for help on using the changeset viewer.