_n_noop

函式
_n_noop ( $singular, $plural, $domain = null )
引數
  • (string) $singular Singular form to be localized.
    Required:
  • (string) $plural Plural form to be localized.
    Required:
  • (string) $domain Optional. Text domain. Unique identifier for retrieving translated strings. Default null.
    Required:
    Default: null
返回值
  • (array) { Array of translation information for the strings. @type string $0 Singular form to be localized. No longer used. @type string $1 Plural form to be localized. No longer used. @type string $singular Singular form to be localized. @type string $plural Plural form to be localized. @type null $context Context information for the translators. @type string|null $domain Text domain. }
定義位置
相關方法
_nx_noop__ngettext_noopin_the_loop
引入
2.5.0
棄用
-

_n_noop: 這個函式用來翻譯一個單數或複數的字串,而不對其進行回聲。

在POT檔案中註冊複數字符串,但不翻譯它們。

當你想保留帶有可翻譯的複數字符串的結構並在以後知道數字時使用它們時使用。

例子:

$message = _n_noop( ‘%s post’, ‘%s posts’, ‘text-domain’ );

printf( translate_nooped_plural( $message, $count, ‘text-domain’ ), number_format_i18n( $count ) );

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function _n_noop( $singular, $plural, $domain = null ) {
return array(
0 => $singular,
1 => $plural,
'singular' => $singular,
'plural' => $plural,
'context' => null,
'domain' => $domain,
);
}
function _n_noop( $singular, $plural, $domain = null ) { return array( 0 => $singular, 1 => $plural, 'singular' => $singular, 'plural' => $plural, 'context' => null, 'domain' => $domain, ); }
function _n_noop( $singular, $plural, $domain = null ) {
	return array(
		0          => $singular,
		1          => $plural,
		'singular' => $singular,
		'plural'   => $plural,
		'context'  => null,
		'domain'   => $domain,
	);
}

常見問題

FAQs
檢視更多 >