Opened 7 years ago
Closed 7 years ago
#3439 closed defect (bug) (fixed)
Domain of "Languages" translation in plugin profile is in wrong place
Reported by: | mariovalney | Owned by: | Otto42 |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Plugin Directory | Keywords: | has-patch |
Cc: |
Description
The item "Language" uses _n function, but the order of parameters are wrong:
echo esc_html( _n( 'Language:', 'Languages:', 'wporg-plugins', $available_languages_count ) );
Should be ($single, $plural, $number and $domain):
echo esc_html( _n( 'Language:', 'Languages:', $available_languages_count, 'wporg-plugins' ) );
Attachments (1)
Change History (3)
Note: See
TracTickets for help on using
tickets.
In 6569: