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.

git-svn-id: https://develop.svn.wordpress.org/trunk@35898 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-12-13 15:23:54 +00:00
parent 5d302ca4d2
commit 94005d9402
1 changed files with 12 additions and 6 deletions

View File

@ -35,10 +35,13 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
$credits = wp_credits();
if ( ! $credits ) {
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>.' ),
echo '<p class="about-description">';
/* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */
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>.' ),
'https://wordpress.org/about/',
/* translators: Url to the codex documentation on contributing to WordPress used on the credits page */
__( 'https://codex.wordpress.org/Contributing_to_WordPress' ) ) . '</p>';
__( 'https://make.wordpress.org/' )
);
echo '</p>';
include( ABSPATH . 'wp-admin/admin-footer.php' );
exit;
}
@ -94,9 +97,12 @@ foreach ( $credits['groups'] as $group_slug => $group_data ) {
}
?>
<p class="clear"><?php printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
/* translators: URL to the Make WordPress 'Get Involved' landing page used on the credits page */
__( 'https://make.wordpress.org/' ) ); ?></p>
<p class="clear"><?php
/* translators: %s: https://make.wordpress.org/ */
printf( __( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
__( 'https://make.wordpress.org/' )
);
?></p>
</div>
<?php