dioxus-rust-i18n 0.1.0

rust-i18n bindings for Dioxus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]

mod error;
mod global;
mod hooks;
mod macros;
mod runtime;

pub use dioxus_rust_i18n_macro::i18n;
pub use error::I18nError;
pub use global::{
    global_locale, set_global_locale, translate_global, translate_global_with_args,
    try_translate_global, try_translate_global_with_args,
};
pub use hooks::{I18nSession, use_i18n, use_init_i18n_from};
pub use runtime::I18nRuntime;