translate

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!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: