freya_i18n/
lib.rs

1mod error;
2pub mod i18n;
3pub mod i18n_macro;
4
5pub use fluent;
6pub use unic_langid;
7
8pub mod prelude {
9    pub use unic_langid::{
10        LanguageIdentifier,
11        lang,
12        langid,
13    };
14
15    pub use crate::{
16        error::Error as DioxusI18nError,
17        i18n::*,
18        t,
19        te,
20        tid,
21    };
22}