mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
9 lines
178 B
Rust
9 lines
178 B
Rust
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||
|
rosetta_build::config()
|
||
|
.source("en", "translations/email/en.json")
|
||
|
.fallback("en")
|
||
|
.generate()?;
|
||
|
|
||
|
Ok(())
|
||
|
}
|