translate_with_gettext_context

Advertisement

Summery Summery

Retrieve the translation of $text in the context defined in $context.

Syntax Syntax

translate_with_gettext_context( string $text, string $context, string $domain = 'default' )

Description Description

If there is no translation, or the text domain isn’t loaded, the original text is returned.

_Note:_ Don’t use translate_with_gettext_context() directly, use _x() or related functions.

Parameters Parameters

$text

(Required) Text to translate.

$context

(Required) Context information for the translators.

$domain

(Optional) Text domain. Unique identifier for retrieving translated strings. Default 'default'.

Default value: 'default'

Return Return

(string) Translated text on success, original text on failure.

Source Source

File: wp-includes/l10n.php

}

/**
 * Retrieve the translation of $text in the context defined in $context.
 *
 * If there is no translation, or the text domain isn't loaded, the original text is returned.
 *
 * *Note:* Don't use translate_with_gettext_context() directly, use _x() or related functions.
 *
 * @since 2.8.0
 * @since 5.5.0 Introduced gettext_with_context-{$domain} filter.
 *
 * @param string $text    Text to translate.
 * @param string $context Context information for the translators.
 * @param string $domain  Optional. Text domain. Unique identifier for retrieving translated strings.

Advertisement

Changelog Changelog

Changelog
Version Description
2.8.0 Introduced.

Advertisement

Leave a Reply