Changeset 5001 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-template.php
- Timestamp:
- 02/24/2017 06:30:31 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-template.php
r5000 r5001 25 25 $text = __( 'Less than 10', 'wporg-plugins' ); 26 26 } elseif ( $count >= 1000000 ) { 27 $million_count = intdiv( $count, 1000000 ); 27 28 /* translators: %d: The integer number of million active installs */ 28 $text = sprintf( _ _( '%d+ million', 'wporg-plugins' ), intdiv( $count, 1000000 ));29 $text = sprintf( _n( '%d+ million', '%d+ million', $million_count, 'wporg-plugins' ), $million_count ); 29 30 } else { 30 31 $text = number_format_i18n( $count ) . '+';
Note: See TracChangeset
for help on using the changeset viewer.