diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-03-09 17:34:49 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-03-09 17:34:49 +0100 |
| commit | cb5ff5f0cab8ea3d419d3b208f5bc61ebee89ffb (patch) | |
| tree | b38782aa294ee7d29d09a075129b3e29097bb13a /ui/locale/src | |
| parent | 21cf747b1b9dfefef94aa399ae3a1f105c0e2c89 (diff) | |
| download | jellything-cb5ff5f0cab8ea3d419d3b208f5bc61ebee89ffb.tar jellything-cb5ff5f0cab8ea3d419d3b208f5bc61ebee89ffb.tar.bz2 jellything-cb5ff5f0cab8ea3d419d3b208f5bc61ebee89ffb.tar.zst | |
use no_scaff feature for js transition
Diffstat (limited to 'ui/locale/src')
| -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(|| { |