From bff39f181e666ebff4d17e0da0858965008fa00d Mon Sep 17 00:00:00 2001
From: Sergey Biryukov
Date: Sun, 13 Dec 2015 15:24:27 +0000
Subject: [PATCH] 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
---
wp-admin/credits.php | 18 ++++++++++++------
wp-includes/version.php | 2 +-
2 files changed, 13 insertions(+), 7 deletions(-)
diff --git a/wp-admin/credits.php b/wp-admin/credits.php
index 61d0a5cfbb..9f6e026499 100644
--- a/wp-admin/credits.php
+++ b/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/' )
+ );
+?>