Filters the singular or plural form of a string with gettext context.
Parameters
$translationstring- Translated text.
$singlestring- The text to be used if the number is singular.
$pluralstring- The text to be used if the number is plural.
$numberint- The number to compare against to use either the singular or plural form.
$contextstring- Context information for the translators.
$domainstring- Text domain. Unique identifier for retrieving translated strings.
Source
$translation = apply_filters( 'ngettext_with_context', $translation, $single, $plural, $number, $context, $domain );
Changelog
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.