Ticket #56187: 56187.diff
File 56187.diff, 2.6 KB (added by , 3 years ago) |
---|
-
src/wp-includes/l10n.php
482 482 * @param string $translation Translated text. 483 483 * @param string $single The text to be used if the number is singular. 484 484 * @param string $plural The text to be used if the number is plural. 485 * @param string$number The number to compare against to use either the singular or plural form.485 * @param int $number The number to compare against to use either the singular or plural form. 486 486 * @param string $domain Text domain. Unique identifier for retrieving translated strings. 487 487 */ 488 488 $translation = apply_filters( 'ngettext', $translation, $single, $plural, $number, $domain ); … … 497 497 * @param string $translation Translated text. 498 498 * @param string $single The text to be used if the number is singular. 499 499 * @param string $plural The text to be used if the number is plural. 500 * @param string$number The number to compare against to use either the singular or plural form.500 * @param int $number The number to compare against to use either the singular or plural form. 501 501 * @param string $domain Text domain. Unique identifier for retrieving translated strings. 502 502 */ 503 503 $translation = apply_filters( "ngettext_{$domain}", $translation, $single, $plural, $number, $domain ); … … 541 541 * @param string $translation Translated text. 542 542 * @param string $single The text to be used if the number is singular. 543 543 * @param string $plural The text to be used if the number is plural. 544 * @param string$number The number to compare against to use either the singular or plural form.544 * @param int $number The number to compare against to use either the singular or plural form. 545 545 * @param string $context Context information for the translators. 546 546 * @param string $domain Text domain. Unique identifier for retrieving translated strings. 547 547 */ … … 557 557 * @param string $translation Translated text. 558 558 * @param string $single The text to be used if the number is singular. 559 559 * @param string $plural The text to be used if the number is plural. 560 * @param string$number The number to compare against to use either the singular or plural form.560 * @param int $number The number to compare against to use either the singular or plural form. 561 561 * @param string $context Context information for the translators. 562 562 * @param string $domain Text domain. Unique identifier for retrieving translated strings. 563 563 */