ngettext_with_context

ngettext_with_context

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.4.3

apply_filters('ngettext_with_context') is found 1 times:

  • /wp-includes/l10n.php line 548
    	 * @param int    $number      The number to compare against to use either the singular or plural form.
    	 * @param string $context     Context information for the translators.
    	 * @param string $domain      Text domain. Unique identifier for retrieving translated strings.
    	 */
    	$translation = apply_filters( 'ngettext_with_context', $translation, $single, $plural, $number, $context, $domain );
    
    	/**
    	 * Filters the singular or plural form of a string with gettext context for a domain.
    	 *
    	 * The dynamic portion of the hook name, `$domain`, refers to the text domain.
    	 *