ngettext_with_context_{$domain} WordPress Filter Hook

The ngettext_with_context_{$domain} hook allows you to override the text returned by the WordPress ngettext function. This is useful if you need to change the text returned for a specific domain.

apply_filters( "ngettext_with_context_{$domain}", string $translation, string $single, string $plural, string $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.


Top ↑

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

(string)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.


Top ↑

Source

File: wp-includes/l10n.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
5.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.