Filters the singular or plural form of a string.
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.
$domain
string- Text domain. Unique identifier for retrieving translated strings.
Source
$translation = apply_filters( 'ngettext', $translation, $single, $plural, $number, $domain );
Changelog
Version | Description |
---|---|
2.2.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.