vue-i18n-extract
vue-i18n-extract copied to clipboard
Support translations array using dot notation
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"
}]
}
}