A very simple localization/internationalization library, inspired by ruby-i18n
.
Provides a (configurable) global translate
/t
function for convenience, as well
as a Dictionary
builder/container if you prefer to manage state directly.
Global function:
```rust fn main() {
use loon_embed::prelude::*;
use rust_embed::RustEmbed;
#[derive(RustEmbed)]
#[folder = "locales/"]
struct Asset;
loon_embed::set_config::<Asset>("en").unwrap();
assert_eq!(
t("custom.greeting", Var("name", "Jacob")).unwrap(),
String::from("Hello, Jacob!!!")
);
assert_eq!(
t("greeting", Opts::default().locale("de")).unwrap(),
String::from("Hallo Welt!")
);
} ```
Translation files can be:
default-features = false
), orfeatures = ["toml"]
).Current version: 0.3.4
License: MIT