apply_filters( "gettext_with_context_{$domain}", string $translation, string $text, string $context, string $domain )

Filters text with its translation based on context information for a domain.


Description

The dynamic portion of the hook name, $domain, refers to the text domain.


Top ↑

Parameters

$translation string
Translated text.
$text string
Text to translate.
$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 all references

$translation = apply_filters( "gettext_with_context_{$domain}", $translation, $text, $context, $domain );


Top ↑

Changelog

Changelog
Version Description
5.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.