Open eugenet8k opened 3 months ago
A follow up to https://github.com/fnando/i18n/issues/39.
i18n = new I18n({ enableFallback: true, en: { labels: { name: 'Name', total: {one: '%{count} name', other: '%{count} names'}, }, }, ru: { labels: { name: 'Имя', total: {one: undefined, other: undefined}, }, }, })
> i18n.t('labels.total', {count: 5, locale: 'ru'}) 5 names
> i18n.t('labels.total', {count: 5, locale: 'ru'}) [missing "ru.labels.total.other" translation]
Description
A follow up to https://github.com/fnando/i18n/issues/39.
How to reproduce
What do you expect
What happened instead