Filters text with its translation based on context information for a domain.
$translationstring$textstring$contextstring$domainstringwp-includes/l10n.php:288translate_with_gettext_context() * * @param string $translation Translated text. * @param string $text Text to translate. * @param string $context Context information for the translators. * @param string $domain Text domain. Unique identifier for retrieving translated strings. */ $translation = apply_filters( "gettext_with_context_{$domain}", $translation, $text, $context, $domain ); return $translation;} /** * Retrieves the translation of $text.Introduced in 5.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.