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