On this page
_nx_noop( string $singular, string $plural, string $context, string $domain = null ): array
Registers plural strings with gettext context 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 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 ) );
Parameters
$singularstring Required-
Singular form to be localized.
$pluralstring Required-
Plural form to be localized.
$contextstring Required-
Context information for the translators.
$domainstring Optional-
Text domain. Unique identifier for retrieving translated strings.
Default:
null
Return
array Array of translation information for the strings.
- string
Singular form to be localized. No longer used.
1stringPlural form to be localized. No longer used.2stringContext information for the translators. No longer used.singularstringSingular form to be localized.pluralstringPlural form to be localized.contextstringContext information for the translators.domainstring|nullText domain.
Source
File: wp-includes/l10n.php. View all references
function _nx_noop( $singular, $plural, $context, $domain = null ) {
return array(
0 => $singular,
1 => $plural,
2 => $context,
'singular' => $singular,
'plural' => $plural,
'context' => $context,
'domain' => $domain,
);
}
Related
Used By
| Used By | Description |
|---|---|
| WP_MS_Sites_List_Table::get_views() wp-admin/includes/class-wp-ms-sites-list-table.php | Gets links to filter sites by status. |
| WP_Comments_List_Table::get_views() wp-admin/includes/class-wp-comments-list-table.php |
Changelog
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_nx_noop