Make WordPress Core

Opened 6 years ago

Closed 6 years ago

Last modified 6 years ago

#43261 closed defect (bug) (invalid)

Domain of "Languages" translation in plugin profile is in wrong place

Reported by: mariovalney's profile mariovalney Owned by:
Milestone: Priority: normal
Severity: normal Version:
Component: WordPress.org Site Keywords:
Focuses: 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' ) );

Change History (2)

#1 @ocean90
6 years ago

  • Component changed from I18N to WordPress.org site
  • Milestone Awaiting Review deleted
  • Resolution set to invalid
  • Status changed from new to closed
  • Version 4.9.4 deleted

Hello @mariovalney, for the WordPress.org site we have a separate bug tracker at https://meta.trac.wordpress.org/. Can you please create a new ticket over there? Thanks!

#2 @mariovalney
6 years ago

Well... I was in meta.trac (checking it' duplicated)... hahaha

I don't know how I fell here. I'll create there.

Thanks

Note: See TracTickets for help on using tickets.