diff --git a/README.md b/README.md
index 385cccecc..470801b38 100644
--- a/README.md
+++ b/README.md
@@ -43,9 +43,9 @@ The simplest way to tag a large number of files is by using the [Tagger](https:/
# Translation
[](https://translate.stashapp.cc/engage/stash/)
-🇧🇷 🇨🇳 🇬🇧 🇫🇮 🇫🇷 🇩🇪 🇮🇹 🇪🇸 🇸🇪 🇹🇼
+🇧🇷 🇨🇳 🇬🇧 🇫🇮 🇫🇷 🇩🇪 🇮🇹 🇪🇸 🇸🇪 🇹🇼 🇹🇷
-Stash is available in 10 languages (so far!) and it could be in your language too. If you want to help us translate Stash into your language, you can make an account at [translate.stashapp.cc](https://translate.stashapp.cc/projects/stash/stash-desktop-client/) to get started contributing new languages or improving existing ones. Thanks!
+Stash is available in 11 languages (so far!) and it could be in your language too. If you want to help us translate Stash into your language, you can make an account at [translate.stashapp.cc](https://translate.stashapp.cc/projects/stash/stash-desktop-client/) to get started contributing new languages or improving existing ones. Thanks!
# Support (FAQ)
diff --git a/pkg/api/locale.go b/pkg/api/locale.go
index f5f389ee7..23381b112 100644
--- a/pkg/api/locale.go
+++ b/pkg/api/locale.go
@@ -19,6 +19,10 @@ var matcher = language.NewMatcher([]language.Tag{
language.MustParse("sv-SE"),
language.MustParse("zh-CN"),
language.MustParse("zh-TW"),
+ language.MustParse("hr-HR"),
+ language.MustParse("nl-NL"),
+ language.MustParse("ru-RU"),
+ language.MustParse("tr-TR"),
})
// newCollator parses a locale into a collator
diff --git a/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx b/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx
index 27bf5cc69..a512a0743 100644
--- a/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx
+++ b/ui/v2.5/src/components/Settings/SettingsInterfacePanel/SettingsInterfacePanel.tsx
@@ -44,15 +44,19 @@ export const SettingsInterfacePanel: React.FC = () => {
value={iface.language ?? undefined}
onChange={(v) => saveInterface({ language: v })}
>
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ui/v2.5/src/locales/index.ts b/ui/v2.5/src/locales/index.ts
index 89da63cd0..64d6c650b 100644
--- a/ui/v2.5/src/locales/index.ts
+++ b/ui/v2.5/src/locales/index.ts
@@ -9,6 +9,10 @@ import fiFI from "./fi-FI.json";
import svSE from "./sv-SE.json";
import zhTW from "./zh-TW.json";
import zhCN from "./zh-CN.json";
+import hrHR from "./hr-HR.json";
+import nlNL from "./nl-NL.json";
+import ruRU from "./ru-RU.json";
+import trTR from "./tr-TR.json";
export default {
deDE,
@@ -22,4 +26,8 @@ export default {
svSE,
zhTW,
zhCN,
+ hrHR,
+ nlNL,
+ ruRU,
+ trTR,
};