vue-i18n-extract icon indicating copy to clipboard operation
vue-i18n-extract copied to clipboard

Support translations array using dot notation

Open Ky6uk opened this issue 2 years ago • 0 comments

The report returns false positives in cases the translations are using dot notation like t('keys.list.0.description') when t('keys.list[0].description') works correctly.

The translations file looks like:

{
  "keys": {
    "list": [{
      "description": "Description"
    }]
  }
}

Ky6uk avatar Feb 07 '23 19:02 Ky6uk