wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



translate › WordPress Function

Da2.2.0
Deprecaton/a
translate ( $text, $domain = 'default' )
Parametri: (2)
  • (string) $text Text to translate.
    Richiesto:
  • (string) $domain Optional. Text domain. Unique identifier for retrieving translated strings. Default 'default'.
    Richiesto: No
    Default: 'default'
Ritorna:
  • (string) Translated text.
Definito a:
Codex:
ChangeLog:
  • 5.5.0

Retrieves the translation of $text.

If there is no translation, or the text domain isn't loaded, the original text is returned. Note: Don't use translate() directly, use __() or related functions.


Sorgenti

function translate( $text, $domain = 'default' ) {
	$translations = get_translations_for_domain( $domain );
	$translation  = $translations->translate( $text );

	/**
	 * Filters text with its translation.
	 *
	 * @since 2.0.11
	 *
	 * @param string $translation Translated text.
	 * @param string $text        Text to translate.
	 * @param string $domain      Text domain. Unique identifier for retrieving translated strings.
	 */
	$translation = apply_filters( 'gettext', $translation, $text, $domain );

	/**
	 * Filters text with its translation for a domain.
	 *
	 * The dynamic portion of the hook name, `$domain`, refers to the text domain.
	 *
	 * @since 5.5.0
	 *
	 * @param string $translation Translated text.
	 * @param string $text        Text to translate.
	 * @param string $domain      Text domain. Unique identifier for retrieving translated strings.
	 */
	$translation = apply_filters( "gettext_{$domain}", $translation, $text, $domain );

	return $translation;
}