Make WordPress Core

Ticket #37509: 37509.diff

File 37509.diff, 1.3 KB (added by ovann86, 8 years ago)

Add branches for 'Less Than 10' Active Installs - note using Title Case, as this is the standard used in this section - unlike in the WP Plugin Directory.

  • wp-admin/includes/class-wp-plugin-install-list-table.php

     
    563563                                        <?php
    564564                                        if ( $plugin['active_installs'] >= 1000000 ) {
    565565                                                $active_installs_text = _x( '1+ Million', 'Active plugin installs' );
     566                                        } elseif ( $plugin['active_installs'] == 0 ) {
     567                                                $active_installs_text = _x( 'Less Than 10', 'Active plugin installs' );
    566568                                        } else {
    567569                                                $active_installs_text = number_format_i18n( $plugin['active_installs'] ) . '+';
    568570                                        }
  • wp-admin/includes/plugin-install.php

     
    561561                                <li><strong><?php _e( 'Active Installs:' ); ?></strong> <?php
    562562                                        if ( $api->active_installs >= 1000000 ) {
    563563                                                _ex( '1+ Million', 'Active plugin installs' );
     564                                        } elseif ( $api->active_installs == 0 ) {
     565                                                _ex( 'Less Than 10', 'Active plugin installs' );
    564566                                        } else {
    565567                                                echo number_format_i18n( $api->active_installs ) . '+';
    566568                                        }