translate_with_gettext_context

函数
translate_with_gettext_context ( $text, $context, $domain = 'default' )
参数
  • (string) $text Text to translate.
    Required:
  • (string) $context Context information for the translators.
    Required:
  • (string) $domain Optional. Text domain. Unique identifier for retrieving translated strings. Default 'default'.
    Required:
    Default: 'default'
返回值
  • (string) Translated text on success, original text on failure.
定义位置
相关方法
translate_with_contexttranslate_level_to_roletranslate_user_roleregister_widget_controlwp_style_engine_get_stylesheet_from_context
引入
2.8.0
弃用
-

translate_with_gettext_context: 这个函数检索一个文本字符串到当前语言或指定语言的翻译,并有指定的上下文。这类似于 translate_with_context,但使用 gettext 文本域来代替。

检索$context中定义的上下文中的$text的翻译。

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

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

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

	/**
	 * Filters text with its translation based on context information.
	 *
	 * @since 2.8.0
	 *
	 * @param string $translation Translated text.
	 * @param string $text        Text to translate.
	 * @param string $context     Context information for the translators.
	 * @param string $domain      Text domain. Unique identifier for retrieving translated strings.
	 */
	$translation = apply_filters( 'gettext_with_context', $translation, $text, $context, $domain );

	/**
	 * Filters text with its translation based on context information 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 $context     Context information for the translators.
	 * @param string $domain      Text domain. Unique identifier for retrieving translated strings.
	 */
	$translation = apply_filters( "gettext_with_context_{$domain}", $translation, $text, $context, $domain );

	return $translation;
}

常见问题

FAQs
查看更多 >