From 94005d940217728023f59583e42e7bc8563fda88 Mon Sep 17 00:00:00 2001
From: Sergey Biryukov
Date: Sun, 13 Dec 2015 15:23:54 +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.
git-svn-id: https://develop.svn.wordpress.org/trunk@35898 602fd350-edb4-49c9-b593-d223f7449a82
---
src/wp-admin/credits.php | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
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/' )
+ );
+?>