Make WordPress Core

Opened 4 years ago

Closed 4 years ago

Last modified 4 years ago

#56809 closed defect (bug) (invalid)

Site Health: Translations - Spelling String not plural

Reported by: netweb Owned by: netweb
Priority: normal Milestone:
Component: Site Health Version: 6.1
Severity: trivial Keywords:
Cc: Focuses: ui-copy

Description

The plural string should contain an s

Current:

/* translators: %d: Number of caching headers. */
_n(
	'There was %d client caching response header detected:',
	'There were %d client caching response headers detected:',
	count( $page_cache_detail['headers'] )
),

Expected:

/* translators: %d: Number of caching headers. */
_n(
	'There was %d client caching response header detected:',
	'There were %d clients caching response headers detected:',
	count( $page_cache_detail['headers'] )
),

Source: https://github.com/WordPress/wordpress-develop/blob/88440b9305d0748fd2f50123f5f8241867e30cb2/src/wp-admin/includes/class-wp-site-health.php#L2394

Change History (6)

This ticket was mentioned in PR #3451 on WordPress/wordpress-develop by ntwb.


4 years ago
#1

  • Keywords has-patch added

Fix minor plural string typo s/client/clients

Trac ticket: https://core.trac.wordpress.org/ticket/56809

#2 @netweb
4 years ago

  • Keywords commit added
  • Owner set to netweb
  • Status newaccepted
  • Summary Site Health: Spelling String not pluralSite Health: Translations - Spelling String not plural

#3 follow-up: @ocean90
4 years ago

  • Keywords has-patch commit removed
  • Milestone Awaiting Review
  • Resolutioninvalid
  • Status acceptedclosed

That's actually about the headers not clients.

#4 @sabernhardt
4 years ago

Editing the translator message might help avoid confusion.

ntwb commented on PR #3451:


4 years ago
#5

Closing per Trac comment:

That's actually about the headers not clients.

Thanks @ocean90 👍🏼

#6 in reply to: ↑ 3 @netweb
4 years ago

Replying to ocean90:

That's actually about the headers not clients.

Ha, thanks, words are hard ;)

Note: See TracTickets for help on using tickets.