Opened 9 years ago
Closed 9 years ago
#1149 closed defect (bug) (fixed)
Plugin Directory welcome string needs proper plural forums
Reported by: | SergeyBiryukov | Owned by: | coffee2code |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Plugin Directory | Keywords: | |
Cc: |
Description
There's a string on the Plugin Directory front page:
<strong>%s</strong> plugins with <strong>%s</strong> total downloads are at your fingertips.
It's not localizable due to the lack of _n()
. Unless a better option emerges, it should be something like:
printf( __( '%s with %s are at your fingertips' ), sprintf( _n( '%s plugin', '%s plugins', $count ), '<strong>' . number_format_i18n( $count ) . '</strong>' ), sprintf( _n( '%s total download', '%s total downloads', $downloads ), '<strong>' . number_format_i18n( $downloads ) . '</strong>' ), );
If we could round the values (39,000+ plugins with 987,841,000+ downloads), that would help too.
Change History (3)
Note: See
TracTickets for help on using
tickets.
Related: #1038