fixes for locales, improvements, more logging, stub cs translation

This commit is contained in:
2021-10-10 15:38:56 +02:00
parent 239e15afdd
commit e76da157b3
11 changed files with 130 additions and 70 deletions
+1 -5
View File
@@ -10,12 +10,10 @@ extern crate serde;
#[macro_use]
extern crate thiserror;
use std::sync::Arc;
use clap::Arg;
use log::LevelFilter;
use crate::store::{NewGroupOptions, StoreOptions};
use crate::tr::TranslationTable;
use crate::utils::acct_to_server;
mod command;
@@ -132,10 +130,8 @@ async fn main() -> anyhow::Result<()> {
store.find_locales().await;
return Ok(());
// Start
let groups = Arc::new(store).spawn_groups().await?;
let groups = store.spawn_groups().await?;
let mut handles = vec![];
for mut g in groups {