diff --git a/src/wp-admin/credits.php b/src/wp-admin/credits.php index 61d0a5cfbb..9f6e026499 100644 --- a/src/wp-admin/credits.php +++ b/src/wp-admin/credits.php @@ -35,10 +35,13 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); $credits = wp_credits(); if ( ! $credits ) { - echo '

' . sprintf( __( 'WordPress is created by a worldwide team of passionate individuals. Get involved in WordPress.' ), + echo '

'; + /* translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ */ + printf( __( 'WordPress is created by a worldwide team of passionate individuals. Get involved in WordPress.' ), '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' ) ) . '

'; + __( 'https://make.wordpress.org/' ) + ); + echo '

'; include( ABSPATH . 'wp-admin/admin-footer.php' ); exit; } @@ -94,9 +97,12 @@ foreach ( $credits['groups'] as $group_slug => $group_data ) { } ?> -

Get involved in WordPress.' ), - /* translators: URL to the Make WordPress 'Get Involved' landing page used on the credits page */ - __( 'https://make.wordpress.org/' ) ); ?>

+

Get involved in WordPress.' ), + __( 'https://make.wordpress.org/' ) + ); +?>