Registers plural strings in POT file, but does not translate them.
Description
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 ) );
Parameters
$singularstring
Singular form to be localized.
$pluralstring
Plural form to be localized.
$domainstringoptional
Text domain. Unique identifier for retrieving translated strings. Default null.Default: null
Signature, return type and hooks compared across 5 parsed releases.
About this page
Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/l10n.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.