mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 08:54:01 +00:00
Nutomic
cb44b14717
* Allow email localization (fixes #500) * add PersonAggregates::default() * add lemmy-translations submodule * fix gitmodules
8 lines
178 B
Rust
8 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(())
|
|
}
|