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.
Built from https://develop.svn.wordpress.org/trunk@35898


git-svn-id: http://core.svn.wordpress.org/trunk@35862 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-12-13 15:24:27 +00:00
parent 2981d66990
commit bff39f181e
2 changed files with 13 additions and 7 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

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-alpha-35897';
$wp_version = '4.5-alpha-35898';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.