Changeset 42829 for trunk/src/wp-admin/includes/plugin-install.php
- Timestamp:
- 03/12/2018 01:56:20 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin-install.php
r42686 r42829 653 653 <?php 654 654 if ( $api->active_installs >= 1000000 ) { 655 _ex( '1+ Million', 'Active plugin installations' ); 655 $active_installs_millions = floor( $api->active_installs / 1000000 ); 656 printf( 657 _nx( '%s+ Million', '%s+ Million', 'Active plugin installations', $active_installs_millions ), 658 number_format_i18n( $active_installs_millions ) 659 ); 656 660 } elseif ( 0 == $api->active_installs ) { 657 661 _ex( 'Less Than 10', 'Active plugin installations' );
Note: See TracChangeset
for help on using the changeset viewer.