diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index e3160bb390..ad02909c74 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -1628,7 +1628,7 @@ function wp_dashboard_php_nag() {
- +
' . esc_html( $filename_for_errors ) . ''
),
array(
diff --git a/wp-admin/includes/theme.php b/wp-admin/includes/theme.php
index 5283cea8bc..f1d0d374bd 100644
--- a/wp-admin/includes/theme.php
+++ b/wp-admin/includes/theme.php
@@ -723,8 +723,13 @@ function customize_themes_print_templates() {
{{{ data.stars }}}
link to view ratings opens in a new tab' ), '{{ data.num_ratings }}' );
+ printf(
+ '%1$s %2$s',
+ /* translators: %s: number of ratings */
+ sprintf( __( '(%s ratings)' ), '{{ data.num_ratings }}' ),
+ /* translators: accessibility text */
+ __( '(opens in a new tab)' )
+ );
?>
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 6da36d7b28..1609822563 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
-$wp_version = '5.3-alpha-45297';
+$wp_version = '5.3-alpha-45298';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
diff --git a/wp-login.php b/wp-login.php
index d9b2554783..5ecf5f0dbf 100644
--- a/wp-login.php
+++ b/wp-login.php
@@ -426,7 +426,7 @@ function retrieve_password() {
$message = apply_filters( 'retrieve_password_message', $message, $key, $user_login, $user_data );
if ( $message && ! wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) ) {
- wp_die( __( 'The email could not be sent.' ) . "
\n" . __( 'Possible reason: your host may have disabled the mail() function.' ) );
+ wp_die( __( 'The email could not be sent. Possible reason: your host may have disabled the mail() function.' ) );
}
return true;