• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
WordPress core a2z

WordPress core a2z

WordPress core only

  • Home
  • Plugins
  • Blocks
  • Shortcodes
  • APIs
  • Classes
  • Files
  • Hooks
  • Sitemap
  • Blog
Home / APIs / translate_with_gettext_context() – Retrieve the translation of $text in the context defined in $context.

You appear to be a bot. Output may be restricted

Description

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.

Usage

$string = translate_with_gettext_context( $text, $context, $domain );

Parameters

$text
( string ) required – Text to translate.
$context
( string ) required – Context information for the translators.
$domain
( string ) optional default: default – Optional. Text domain. Unique identifier for retrieving translated strings. Default 'default'.

Returns

string Translated text on success, original text on failure.

Source

File name: wordpress/wp-includes/l10n.php
Lines:

1 to 32 of 32
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;
}
 

 View on GitHub View on Trac

Published: 25th November 2019 | Last updated: 21st August 2020

Primary Sidebar

Information

Function name: translate_with_gettext_context
Plugin ref: WordPress
Version: 5.6.2
Sourcefile: wp-includes/l10n.php
File ref: wp-includes/l10n.php
Deprecated?: No
API Letters: C,G,T,W

Footer

WP-a2z
WordPress core a2z
WordPress core only
WordPress 5.6.2
WordPress a2z
WordPress core a2z
Genesis Theme Framework a2z
Jetpack a2z
WordPress develop tests
Easy Digital Downloads a2z
WooCommerce a2z
Yoast SEO a2z
WordPress Blocks

Site:  core.wp-a2z.org
© Copyright WP-a2z 2014-2021. All rights reserved.


Website designed and developed by Herb Miller
Proudly powered by WordPress and oik plugins

  • Home
  • Blog
  • Sitemap
  • Sites