fix(cli,config): fixed usage of german language

This commit is contained in:
Patryk Hegenberg 2024-05-09 16:04:45 +02:00
parent 3beef739a4
commit 6a4aa2506d

View file

@ -13,8 +13,8 @@ pub struct CaesarConfig {
lazy_static! {
pub static ref GLOBAL_CONFIG: CaesarConfig = {
let cfg: CaesarConfig = confy::load("caesar", "caesar")
.expect("Konfigurationsdatei konnte nicht geladen werden");
let cfg: CaesarConfig =
confy::load("caesar", "caesar").expect("could not find config file");
cfg
};
}