wpseek.com
A WordPress-centric search engine for devs and theme authors
translate_with_gettext_context › WordPress Function
Since2.8.0
Deprecatedn/a
› translate_with_gettext_context ( $text, $context, $domain = 'default' )
Parameters: (3) |
|
Returns: |
|
Defined at: |
|
Codex: |
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.
Source
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. */ return apply_filters( 'gettext_with_context', $translation, $text, $context, $domain ); }