diff options
Diffstat (limited to 'ui/locale/src/lib.rs')
| -rw-r--r-- | ui/locale/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/locale/src/lib.rs b/ui/locale/src/lib.rs index 49e570b..e890e5d 100644 --- a/ui/locale/src/lib.rs +++ b/ui/locale/src/lib.rs @@ -13,7 +13,7 @@ macro_rules! languages { const LANGUAGES: &[(&str, &str)] = &[$(($lang, include_str!(concat!("../../../locale/", $lang, ".ini")))),*]; }; } -languages!("en", "de"); +languages!("en", "de", "nl", "zh_Hans"); pub static LANG_TABLES: LazyLock<HashMap<&'static str, HashMap<&'static str, &'static str>>> = LazyLock::new(|| { |