Plugins: Correct the parameters used when displaying plugins with more than one million active installations.

Fixes #43193


git-svn-id: https://develop.svn.wordpress.org/trunk@43178 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2018-05-07 21:29:49 +00:00
parent 1decf42f3a
commit 287be5420c
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,7 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
if ( $plugin['active_installs'] >= 1000000 ) {
$active_installs_millions = floor( $plugin['active_installs'] / 1000000 );
$active_installs_text = sprintf(
_nx( '%s+ Million', '%s+ Million', 'Active plugin installations', $active_installs_millions ),
_nx( '%s+ Million', '%s+ Million', $active_installs_millions, 'Active plugin installations' ),
number_format_i18n( $active_installs_millions )
);
} elseif ( 0 == $plugin['active_installs'] ) {