pub mod language;
pub mod tf;
pub mod translate;
#[cfg(feature = "dioxus")]
pub mod context;
mod translations;
pub use language::Language;
pub use tf::tf;
pub use translations::{EN, Translations, ZH};
#[cfg(feature = "dioxus")]
pub use context::I18nContext;