Making WordPress.org

Opened 7 years ago

Closed 7 years ago

#3095 closed defect (bug) (duplicate)

A string in plugin directory needs to use _n()

Reported by: tobifjellner's profile tobifjellner Owned by:
Milestone: Priority: normal
Component: Plugin Directory Keywords:
Cc:

Description (last modified by SergeyBiryukov)

https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php?marks=92#L92

Depending on the number of translated languages, the word "all" will be translated differently in many languages. These rows need to be constructed with _n()

printf(
	/* translators: %s: Number of available languages */
	_x( 'See all %s', 'languages' ),
	$available_languages_count
)

Change History (3)

#1 @SergeyBiryukov
7 years ago

  • Description modified (diff)

That string is also missing a text domain.

There's also _x( 'See all %s', 'plugins', 'wporg-plugins' ) string in the theme.

This ticket was mentioned in Slack in #meta by sergey. View the logs.


7 years ago

#3 @SergeyBiryukov
7 years ago

  • Resolution set to duplicate
  • Status changed from new to closed

#3131 has a patch.

Note: See TracTickets for help on using tickets.