From 59ef6b91e3e8681885a9d97cc5786a327cf26214 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 23 Dec 2020 23:45:40 +0100 Subject: Include german translation in LANG_MAP Signed-off-by: Matthias Beyer --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 99a57a3..1bd7be8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -95,6 +95,7 @@ lazy_static::lazy_static! { static ref LANG_MAP: HashMap = { let mut result = HashMap::new(); + result.insert(unic_langid::langid!("de"), fluent::FluentResource::try_new(include_str!("../res/lang/de.ftl").to_owned()).expect("Failed to parse translation")); result.insert(unic_langid::langid!("en"), fluent::FluentResource::try_new(include_str!("../res/lang/en.ftl").to_owned()).expect("Failed to parse translation")); result.insert(unic_langid::langid!("eo"), fluent::FluentResource::try_new(include_str!("../res/lang/eo.ftl").to_owned()).expect("Failed to parse translation")); result.insert(unic_langid::langid!("fr"), fluent::FluentResource::try_new(include_str!("../res/lang/fr.ftl").to_owned()).expect("Failed to parse translation")); -- cgit v1.2.3