- Timestamp:
- 08/22/2017 11:51:11 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r41161 r41289 560 560 <?php 561 561 if ( $plugin['active_installs'] >= 1000000 ) { 562 $active_installs_text = _x( '1+ Million', 'Active plugin install s' );562 $active_installs_text = _x( '1+ Million', 'Active plugin installations' ); 563 563 } elseif ( 0 == $plugin['active_installs'] ) { 564 $active_installs_text = _x( 'Less Than 10', 'Active plugin install s' );564 $active_installs_text = _x( 'Less Than 10', 'Active plugin installations' ); 565 565 } else { 566 566 $active_installs_text = number_format_i18n( $plugin['active_installs'] ) . '+'; 567 567 } 568 printf( __( '%s Active Install s' ), $active_installs_text );568 printf( __( '%s Active Installations' ), $active_installs_text ); 569 569 ?> 570 570 </div>
Note: See TracChangeset
for help on using the changeset viewer.