Closed pepahlavacek closed 8 years ago
Allow specifying file_format for download and upload. And default to nested_json.
file_format
nested_json
When using "nested_json" (currently hardcoded), it automatically converts
{ "random.translation.key": "String to translate" }
to
{ "random": { "translation": { "key": { "String to translate" } } } }
With simple_json (currently preferred by React.Intl), it keeps the format.
simple_json
Thanks 👍
thank you for merging that fast!:)
Allow specifying
file_format
for download and upload. And default tonested_json
.When using "nested_json" (currently hardcoded), it automatically converts
to
With
simple_json
(currently preferred by React.Intl), it keeps the format.