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)
- 返回值
- 
- (string) Translated text on success, original text on failure.
 
- 定义位置
- 
- 
                                  wp-includes/l10n.php
 , line 253
 
- 
                                  wp-includes/l10n.php
- 引入
- 2.8.0
- 弃用
- –
检索$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;
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
 
      