_nx_noop()WP 2.8.0

Registers plural strings with gettext context 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 of a generic phrase which is disambiguated via the context parameter:

$messages = array(
	 'people'  => _nx_noop( '%s group', '%s groups', 'people', 'text-domain' ),
	 'animals' => _nx_noop( '%s group', '%s groups', 'animals', 'text-domain' ),
);
...
$message = $messages[ $type ];
printf( translate_nooped_plural( $message, $count, 'text-domain' ), number_format_i18n( $count ) );

Внутренняя функция — эта функция рассчитана на использование самим ядром. Не рекомендуется использовать эту функцию в своем коде.

Хуков нет.

Возвращает

Массив. Array of translation information for the strings.

Использование

_nx_noop( $singular, $plural, $context, $domain );
$singular(строка) (обязательный)
Singular form to be localized.
$plural(строка) (обязательный)
Plural form to be localized.
$context(строка) (обязательный)
Context information for the translators.
$domain(строка)
Text domain. Unique identifier for retrieving translated strings.
По умолчанию: null

Список изменений

С версии 2.8.0 Введена.

Код _nx_noop() WP 6.5.2

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