From f860c66c752a7610de78d6eb81373339990e9209 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: Sun, 12 Jan 2025 22:48:02 -0500
Subject: [PATCH] add de/fr/it to ui language options

---
 boofilsic/settings.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/boofilsic/settings.py b/boofilsic/settings.py
index 8fe469cb..543a6f84 100644
--- a/boofilsic/settings.py
+++ b/boofilsic/settings.py
@@ -412,9 +412,12 @@
 
 SUPPORTED_UI_LANGUAGES = {
     "en": _("English"),
+    "da": _("Danish"),
+    "de": _("German"),
+    "fr": _("French"),
+    "it": _("Italian"),
     "zh-hans": _("Simplified Chinese"),
     "zh-hant": _("Traditional Chinese"),
-    "da": _("Danish"),
 }
 
 LANGUAGES = SUPPORTED_UI_LANGUAGES.items()