roblox-slang 2.0.4

Type-safe internationalization for Roblox experiences
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Translation file parsing
//!
//! This module handles parsing translation files in various formats
//! (JSON, YAML, CSV) and converting them to internal representation.

pub mod json;
pub mod overrides;
pub mod types;
pub mod yaml;

pub use json::*;
pub use overrides::*;
pub use types::*;
pub use yaml::*;