i18next/i18next-v4-format-converter

Incorrect result from the web converter version

Closed this issue ยท 2 comments

๐Ÿ› Bug Report

This is related to the web converter version.
The converted result is not correct.

To Reproduce

{
  "key": "value",
  "key_0": "none",
  "key_1": "single",
  "key_2": "some"
}

The result that I got

{
  "key": "value",
  "key_0": "none",
  "key_1": "single",
  "key_2": "some"
}

Screenshot
screenshot

Expected behavior

I should have received the following result:

{
  "key": "value",
  "key_zero": "none",
  "key_one": "single",
  "key_two": "some"
}

Your Environment

https://i18next.github.io/i18next-v4-format-converter-web/

english has no multiple plural forms

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.