Definition:
function translate_with_gettext_context( $text, $context, $domain = 'default' ) {}
Parameters
- $text
- $context
- $domain
Defined filters
- gettext_with_context
apply_filters( 'gettext_with_context', $translations->translate( $text, $context )
Source code
function translate_with_gettext_context( $text, $context, $domain = 'default' ) { $translations = &get_translations_for_domain( $domain ); return apply_filters( 'gettext_with_context', $translations->translate( $text, $context ), $text, $context, $domain ); }
3091
No comments yet... Be the first to leave a reply!