From 44bf1b4e84477f5b2cdb9d7f367237851d2aecfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Hohnst=C3=A4dt?= Date: Thu, 18 Nov 2021 22:30:31 +0100 Subject: [PATCH] Fix detecting the language directory --- lib/func.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/func.cpp b/lib/func.cpp index 3e06f6b6..9f9ff540 100644 --- a/lib/func.cpp +++ b/lib/func.cpp @@ -277,7 +277,7 @@ const QString getUserSettingsDir() const QString getI18nDir() { QString qm = QStandardPaths::locate(QStandardPaths::DataLocation, - I18N_DIR "xca.qm"); + I18N_DIR "xca_de.qm"); return QFileInfo(qm).path(); }