This is a library for getting text from JSON usually for internationalization.
```rust
extern crate json_gettext;
let ctx = staticjsongettextbuild!("enUS", "enUS", "langs/enUS.json", "zhTW", "langs/zh_TW.json" ).unwrap();
asserteq!("Hello, world!", gettext!(ctx, "hello").unwrap()); asserteq!("哈囉,世界!", gettext!(ctx, "zh_TW", "hello").unwrap()); ```
https://crates.io/crates/json-gettext
https://docs.rs/json-gettext