diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 7cf2a61c5..6d3c71df8 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -10,6 +10,8 @@ The following people have contributed to the project in some way, and are credit
- @bajolzas - Portuguese (Pt)
- posix - @Richard-L - German
- @phoe-nix - Chinese (Simplified)
+- Sorer - @MojoJojoDojo - Hebrew
+- Hipnosis183 - Spanish
## Game Compatibility Database
- @Zet-sensei
diff --git a/src/duckstation-qt/CMakeLists.txt b/src/duckstation-qt/CMakeLists.txt
index 6cec5f115..25c4956ae 100644
--- a/src/duckstation-qt/CMakeLists.txt
+++ b/src/duckstation-qt/CMakeLists.txt
@@ -66,6 +66,7 @@ set(SRCS
set(TS_FILES
translations/duckstation-qt_de.ts
+ translations/duckstation-qt_es.ts
translations/duckstation-qt_he.ts
translations/duckstation-qt_pt-br.ts
translations/duckstation-qt_pt-pt.ts
diff --git a/src/duckstation-qt/duckstation-qt.vcxproj b/src/duckstation-qt/duckstation-qt.vcxproj
index 76d06ed45..410f3aab5 100644
--- a/src/duckstation-qt/duckstation-qt.vcxproj
+++ b/src/duckstation-qt/duckstation-qt.vcxproj
@@ -210,6 +210,9 @@
Document
+
+
+
diff --git a/src/duckstation-qt/duckstation-qt.vcxproj.filters b/src/duckstation-qt/duckstation-qt.vcxproj.filters
index 4e8bc4d85..3e6b9fc98 100644
--- a/src/duckstation-qt/duckstation-qt.vcxproj.filters
+++ b/src/duckstation-qt/duckstation-qt.vcxproj.filters
@@ -113,19 +113,14 @@
-
- translations
-
-
- translations
-
-
- translations
-
-
- translations
-
-
+
+
+
+
+
+
+
+
translations
diff --git a/src/duckstation-qt/qthostinterface.cpp b/src/duckstation-qt/qthostinterface.cpp
index 574604fc1..da1daaa71 100644
--- a/src/duckstation-qt/qthostinterface.cpp
+++ b/src/duckstation-qt/qthostinterface.cpp
@@ -56,9 +56,10 @@ std::vector> QtHostInterface::getAvailableLanguageLi
{
return {{QStringLiteral("English"), QStringLiteral("")},
{QStringLiteral("Deutsch"), QStringLiteral("de")},
+ {QStringLiteral("Español"), QStringLiteral("es")},
{QStringLiteral("עברית"), QStringLiteral("he")},
- {QStringLiteral("português (Pt)"), QStringLiteral("pt-pt")},
- {QStringLiteral("português (Br)"), QStringLiteral("pt-br")},
+ {QStringLiteral("Português (Pt)"), QStringLiteral("pt-pt")},
+ {QStringLiteral("Português (Br)"), QStringLiteral("pt-br")},
{QStringLiteral("简体中文"), QStringLiteral("zh-cn")}};
}