translate_with_gettext_context() WP 2.8.0
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.
Хуки из функции
Возвращает
Строку. Translated text on success, original text on failure.
Использование
translate_with_gettext_context( $text, $context, $domain );
- $text(строка) (обязательный)
- Text to translate.
- $context(строка) (обязательный)
- Context information for the translators.
- $domain(строка)
- Text domain. Unique identifier for retrieving translated strings.
По умолчанию: 'default'
Список изменений
С версии 2.8.0 | Введена. |
С версии 5.5.0 | Introduced gettext_with_context-{$domain} filter. |
Код translate_with_gettext_context() translate with gettext context WP 5.6
function translate_with_gettext_context( $text, $context, $domain = 'default' ) {
$translations = get_translations_for_domain( $domain );
$translation = $translations->translate( $text, $context );
/**
* Filters text with its translation based on context information.
*
* @since 2.8.0
*
* @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', $translation, $text, $context, $domain );
/**
* Filters text with its translation based on context information for a domain.
*
* The dynamic portion of the hook, `$domain`, refers to the text domain.
*
* @since 5.5.0
*
* @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;
}