JSON Format

circle-info

Do you prefer the ICU format? Then use the i18next-icuarrow-up-right plugin.

i18next JSON v4

{
  "key": "value",
  "keyDeep": {
    "inner": "value"
  },
  "keyNesting": "reuse $t(keyDeep.inner)",
  "keyInterpolate": "replace this {{value}}",
  "keyInterpolateUnescaped": "replace this {{- value}}",
  "keyInterpolateWithFormatting": "replace this {{value, format}}",
  "keyContext_male": "the male variant",
  "keyContext_female": "the female variant",
  "keyPluralSimple_one": "the singular",
  "keyPluralSimple_other": "the plural",
  "keyPluralMultipleEgArabic_zero": "the plural form 0",
  "keyPluralMultipleEgArabic_one": "the plural form 1",
  "keyPluralMultipleEgArabic_two": "the plural form 2",
  "keyPluralMultipleEgArabic_few": "the plural form 3",
  "keyPluralMultipleEgArabic_many": "the plural form 4",
  "keyPluralMultipleEgArabic_other": "the plural form 5",
  "keyWithArrayValue": ["multiple", "things"],
  "keyWithObjectValue": { "valueA": "return this with valueB", "valueB": "more text" }
}

These are the defaults. Nesting and Interpolation formats are configurable.

To learn more about the features check the documentation:

The only difference to v3 is the plural suffixes.

You may need to polyfillarrow-up-right the Intl.PluralRulesarrow-up-right API, in case it is not available it will fallback to the i18next JSON format v3 plural handling.

To convert your existing translations to the new v4 format, have a look at i18next-v4-format-converterarrow-up-right or this web toolarrow-up-right. (It will only handle keys with the default pluralSeparator _)

i18next JSON v3

enabled by:

formats:

The only difference to v2 is the plural suffixes for languages with multiple plural forms.

i18next JSON v2

enabled by:

formats:

These are the defaults. Nesting and Interpolation formats are configurable.

i18next JSON v1

enabled by:

formats:

These are the defaults. Nesting and Interpolation formats are configurable.

Last updated