Open
Description
In order to reduce the number of JSON files, it might make sense for the FsDataProvider to merge marker attributes into the locale files.
So, instead of this:
foo@1/attr1/en.json
: "hello"foo@1/attr2/en.json
: "world"
we could have foo@1/en.json
with the following content:
{
"attr1": "hello",
"attr2": "world"
}
CC @Manishearth