apply_filters( "ngettext_with_context_{$domain}", string $translation , string $single , string $plural , int $number , string $context , string $domain )
Filters the singular or plural form of a string with gettext context for a domain.
Description
The dynamic portion of the hook name, $domain
, refers to the text domain.
Parameters
-
$translation
string -
Translated text.
-
$single
string -
The text to be used if the number is singular.
-
$plural
string -
The text to be used if the number is plural.
-
$number
int -
The number to compare against to use either the singular or plural form.
-
$context
string -
Context information for the translators.
-
$domain
string -
Text domain. Unique identifier for retrieving translated strings.
Source
File: wp-includes/l10n.php
.
View all references
$translation = apply_filters( "ngettext_with_context_{$domain}", $translation, $single, $plural, $number, $context, $domain );
Changelog
Version | Description |
---|---|
5.5.0 | Introduced. |