diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php index f07dc53341..b1727a279e 100644 --- a/wp-admin/includes/plugin-install.php +++ b/wp-admin/includes/plugin-install.php @@ -585,7 +585,7 @@ function install_plugin_information() { // Avoid div-by-zero. $_rating = $api->num_ratings ? ( $ratecount / $api->num_ratings ) : 0; /* translators: 1: number of stars (used to determine singular/plural), 2: number of reviews */ - $aria_label = esc_attr( sprintf( _n( 'Reviews with %1$d star: %2$d. Opens in a new window.', 'Reviews with %1$d stars: %2$d. Opens in a new window.', $key ), + $aria_label = esc_attr( sprintf( _n( 'Reviews with %1$d star: %2$s. Opens in a new window.', 'Reviews with %1$d stars: %2$s. Opens in a new window.', $key ), $key, number_format_i18n( $ratecount ) ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 5a27b6b6de..df1d7ccfdc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-RC1-37155'; +$wp_version = '4.5-RC1-37156'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.