[wp-trac] [WordPress Trac] #56809: Site Health: Spelling String not plural
WordPress Trac
noreply at wordpress.org
Wed Oct 12 12:07:53 UTC 2022
#56809: Site Health: Spelling String not plural
--------------------------+-----------------------------
Reporter: netweb | Owner: (none)
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Site Health | Version: trunk
Severity: trivial | Keywords:
Focuses: ui-copy |
--------------------------+-----------------------------
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
--
Ticket URL: <https://core.trac.wordpress.org/ticket/56809>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list