Allow nesting strings multiple times and access them e.g. via linguini.get("intro.newColors.coolColor", "en", TypeMappers.String);
{
"data": {
// This is a language category:
"intro": {
// This is a language item:
"myFavoriteColor": "My favorite color is blue.",
"newColors": {
"coolColor": "This is my cool color"
}
}
},
"refs": {}
}
Allow nesting strings multiple times and access them e.g. via
linguini.get("intro.newColors.coolColor", "en", TypeMappers.String);{ "data": { // This is a language category: "intro": { // This is a language item: "myFavoriteColor": "My favorite color is blue.", "newColors": { "coolColor": "This is my cool color" } } }, "refs": {} }