mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00: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(())
|
||
|
}
|