ngettext_with_context_{$domain}

最后更新于:2021-11-27 11:01:24

apply_filters( “ngettext_with_context_{$domain}”, string $translation, string $single, string $plural, string $number, string $context, string $domain )

Filters the singular or plural form of a string with gettext context for a domain.

参数

$translation

(string)
Translated text.

$single

(string)
The text to be used if the number is singular.

$plural

(string)
The text to be used if the number is plural.

$number

(string)
The number to compare against to use either the singular or plural form.

$context

(string)
Context information for the translators.

$domain

(string)
Text domain. Unique identifier for retrieving translated strings.

源文件

文件: gc-includes/l10n.php

View on Trac