Ticket #3627: 3627.diff
File 3627.diff, 2.0 KB (added by , 5 years ago) |
---|
-
wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php
91 91 'tags' => wporg_themes_get_tag_translations(), 92 92 93 93 // Active Installs 94 'active_installs_ less_than_10' => __( 'Lessthan 10', 'wporg-themes' ),94 'active_installs_fewer_than_10' => __( 'Fewer than 10', 'wporg-themes' ), 95 95 'active_installs_1_million' => __( '1+ million', 'wporg-themes' ), 96 96 ), 97 97 ) ); -
wordpress.org/public_html/wp-content/themes/pub/wporg-themes/js/theme.js
507 507 508 508 // Active Installs text 509 509 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; 511 511 } else if ( data.active_installs >= 1000000 ) { 512 512 data.active_installs = l10n.active_installs_1_million; 513 513 } else { -
wordpress.org/public_html/wp-content/themes/pub/wporg-themes/theme-single.php
49 49 <?php 50 50 $active_installs = $theme->active_installs; 51 51 if ( $active_installs < 10 ) { 52 $active_installs = __( ' Lessthan 10', 'wporg-themes' );52 $active_installs = __( 'Fewer than 10', 'wporg-themes' ); 53 53 } elseif ( $active_installs >= 1000000 ) { 54 54 $active_installs = __( '1+ million', 'wporg-themes' ); 55 55 } else {