pub fn dcngettext<T, U, V>(
domainname: T,
msgid: U,
msgid_plural: V,
n: u32,
category: LocaleCategory,
) -> StringExpand description
Translate msgid to localized message from the specified domain using custom locale category (with plural support).
For more information, see dcngettext(3).
§Panics
Panics if:
domainname,msgid, ormsgid_pluralcontain an internal 0 byte, as such values can’t be passed to the underlying C API;- the result is not in UTF-8 (see this note).