Making WordPress.org

Ticket #3627: 3627.diff

File 3627.diff, 2.0 KB (added by DrewAPicture, 5 years ago)
  • wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php

     
    9191                                'tags' => wporg_themes_get_tag_translations(),
    9292
    9393                                // Active Installs
    94                                 'active_installs_less_than_10' => __( 'Less than 10', 'wporg-themes' ),
     94                                'active_installs_fewer_than_10' => __( 'Fewer than 10', 'wporg-themes' ),
    9595                                'active_installs_1_million' => __( '1+ million', 'wporg-themes' ),
    9696                        ),
    9797                ) );
  • wordpress.org/public_html/wp-content/themes/pub/wporg-themes/js/theme.js

     
    507507
    508508                        // Active Installs text
    509509                        if ( data.active_installs < 10 ) {
    510                                 data.active_installs = l10n.active_installs_less_than_10;
     510                                data.active_installs = l10n.active_installs_fewer_than_10;
    511511                        } else if ( data.active_installs >= 1000000 ) {
    512512                                data.active_installs = l10n.active_installs_1_million;
    513513                        } else {
  • wordpress.org/public_html/wp-content/themes/pub/wporg-themes/theme-single.php

     
    4949                                        <?php
    5050                                                $active_installs = $theme->active_installs;
    5151                                                if ( $active_installs < 10 ) {
    52                                                         $active_installs = __( 'Less than 10', 'wporg-themes' );
     52                                                        $active_installs = __( 'Fewer than 10', 'wporg-themes' );
    5353                                                } elseif ( $active_installs >= 1000000 ) {
    5454                                                        $active_installs = __( '1+ million', 'wporg-themes' );
    5555                                                } else {