Problem with embedded JSON
Hi, when i try to use json format like this :
{ "main": { "header": "myHeader" } }
from my template i can access this like filename.main.header, but on Network Tab (Chrome) trying to get file ../main/header.file_extension, as you can see, "main" key from json file occurs in path like directory, How can i avoid this?
The framework doesn't support nested json. Can you not split up the nested objects into different json files so that each file has a single-level json?
For small-ish apps like mine, a single language file would be nice as it would resolve the issue I'm having with language files loading slow; this would be a nice-to-have anyway but it'd also be a decent work around for #55.