Fix detecting the language directory

This commit is contained in:
Christian Hohnstädt 2021-11-18 22:30:31 +01:00
parent 284b1fa3f4
commit 44bf1b4e84

View File

@ -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();
}