It's useful to know how the .po-file has to look like when using ngettext:
msgid "item"
msgid_plural "items"
msgstr[0] "Produkt"
msgstr[1] "Produkte"
In php:
echo ngettext('item', 'items', $number);
It's useful to know how the .po-file has to look like when using ngettext:
msgid "item"
msgid_plural "items"
msgstr[0] "Produkt"
msgstr[1] "Produkte"
In php:
echo ngettext('item', 'items', $number);