Changeset 17960 for trunk/wp-admin/credits.php
- Timestamp:
- 05/18/2011 07:39:24 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/credits.php
r17948 r17960 35 35 if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) 36 36 return false; 37 37 38 38 $results = unserialize( wp_remote_retrieve_body( $response ) ); 39 39 … … 62 62 63 63 if ( !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>'; 67 65 include( './admin-footer.php' ); 68 66 exit; 69 67 } 70 68 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";69 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"; 72 70 73 71 $gravatar = is_ssl() ? 'https://secure.gravatar.com/avatar/' : 'http://0.gravatar.com/avatar/'; … … 94 92 95 93 ?> 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> 97 95 98 96 </div>
Note: See TracChangeset
for help on using the changeset viewer.