On Thu, Apr 27, 2017 at 12:14 PM, Correia <[email protected]> wrote: > ...What I wanted to do is having a pure JSON file like: > { > "hello": "Hello", > "hello2": "Hello 2" > } > > Is this possible...
Yes, as described in the docs. The corresponding test is JcrResourceBundleTest.test_json_dictionary() [1], it's not too readable as the json is created inline but should provide the information that you're looking for. -Bertrand [1] https://github.com/apache/sling/blob/trunk/bundles/extensions/i18n/src/test/java/org/apache/sling/i18n/impl/JcrResourceBundleTest.java
