The ngettext function provides an interface to pluralize words and phrases.
https://docs.djangoproject.com/en/stable/topics/i18n/translation/#ngettext
const ngettext('one bird', 'two or more in the hand', 2);// 'two or more in the hand' Copy
const ngettext('one bird', 'two or more in the hand', 2);// 'two or more in the hand'
The ngettext function provides an interface to pluralize words and phrases.
https://docs.djangoproject.com/en/stable/topics/i18n/translation/#ngettext