Definition:
function translate( $text, $domain = 'default' ) {}
Retrieves the translation of $text. If there is no translation, or the domain isn’t loaded, the original text is returned.
Parameters
- string $text: Text to translate.
- string $domain: Domain to retrieve the translated text.
Return values
returns:Translated text
Defined filters
- gettext
apply_filters( 'gettext', $translations->translate( $text )
Source code
function translate( $text, $domain = 'default' ) { $translations = &get_translations_for_domain( $domain ); return apply_filters( 'gettext', $translations->translate( $text ), $text, $domain ); }
3081
No comments yet... Be the first to leave a reply!