wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_n_noop › WordPress Function

Od2.5.0
Przestarzałyn/a
_n_noop ( $singular, $plural, $domain = null )
Parametry: (3)
  • (string) $singular Singular form to be localized.
    Wymagane: Tak
  • (string) $plural Plural form to be localized.
    Wymagane: Tak
  • (string) $domain Optional. Text domain. Unique identifier for retrieving translated strings. Default null.
    Wymagane: Nie
    Domyślny: null
Powrót:
  • (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. }
Zdefiniowane na:
Codex:

Registers plural strings in POT file, but does not translate them.

Used when you want to keep structures with translatable plural strings and use them later when the number is known. Example: $message = _n_noop( '%s post', '%s posts', 'text-domain' ); ... printf( translate_nooped_plural( $message, $count, 'text-domain' ), number_format_i18n( $count ) );


Powiązane Funkcje: _nx_noop, __ngettext_noop, in_the_loop

Źródło

function _n_noop( $singular, $plural, $domain = null ) {
	return array(
		0          => $singular,
		1          => $plural,
		'singular' => $singular,
		'plural'   => $plural,
		'context'  => null,
		'domain'   => $domain,
	);
}