translate

函数


translate ( $text, $domain = 'default' )
参数
  • (string)
    $text
    Text to translate.
    Required:
  • (string)
    $domain
    Optional. Text domain. Unique identifier for retrieving translated strings. Default ‘default’.
    Required:
    Default: ‘default’
返回值
  • (string) Translated text.
定义位置
  • wp-includes/l10n.php
    , line 186
引入
2.2.0
弃用

检索$text的翻译。

如果没有翻译,或者没有加载文本域,则返回原始文本。

*注意:* 不要直接使用 translate() ,使用 __() 或相关函数。

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;
}