1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! # Translatable
//!
//! A robust internationalization solution for
//! Rust featuring compile-time validation,
//! ISO 639-1 compliance, and TOML-based
//! translation management.
/// Runtime error re-export.
///
/// This `use` statement renames
/// the run time error as a common
/// error by rust practice and exports
/// it.
pub use RuntimeError as Error;
/// Macro re-exports.
///
/// This `use` statement re-exports
/// all the macros on `translatable_proc`
/// which only work if included from
/// this module due to path generation.
pub use translation;
/// Language enum re-export.
///
/// This `use` statement re-exports
/// from the hidden shared re-export
/// for user convenience on parsing.
pub use Language;
pub use translatable_shared as shared;