Help/About: Move "Get involved" link on Credits screen to the top of the page for better visibility.

Props bridgetwillard, desrosj.
See #23348.
Built from https://develop.svn.wordpress.org/trunk@43032


git-svn-id: http://core.svn.wordpress.org/trunk@42861 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-04-30 03:16:22 +00:00
parent bc5a539c4d
commit 70a214c186
2 changed files with 7 additions and 11 deletions

View File

@ -53,6 +53,12 @@ if ( ! $credits ) {
echo '<p class="about-description">' . __( 'WordPress is created by a worldwide team of passionate individuals.' ) . "</p>\n";
echo '<p>' . sprintf(
/* translators: %s: https://make.wordpress.org/ */
__( 'Want to see your name in lights on this page? <a href="%s">Get involved in WordPress</a>.' ),
__( 'https://make.wordpress.org/' )
) . '</p>';
foreach ( $credits['groups'] as $group_slug => $group_data ) {
if ( $group_data['name'] ) {
if ( 'Translators' == $group_data['name'] ) {
@ -104,16 +110,6 @@ foreach ( $credits['groups'] as $group_slug => $group_data ) {
}
?>
<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>
</div>
<?php

View File

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