Convert your i18next JSON files from V3 to V4 format.
(It will only handle keys with the default pluralSeparator
_
)
Source JSON in V3:
{ "key": "value", "keyPluralSimple": "the singular", "keyPluralSimple_plural": "the plural" }
Target Output converted to V4:
{ "key": "value", "keyPluralSimple_one": "the singular", "keyPluralSimple_other": "the plural" }
Specify the language of your file:
upload file
download
Have a look at
i18next-v4-format-converter
if you want to use this converter as CLI or programmatically.