diff options
| author | AnyOldName3 <krizdjali+github@gmail.com> | 2018-04-15 12:59:04 +0100 |
|---|---|---|
| committer | AnyOldName3 <krizdjali+github@gmail.com> | 2018-04-15 12:59:04 +0100 |
| commit | ae4e4f9df84a547c554a8a68bb65b082adaae9f5 (patch) | |
| tree | c40c947eb55895bea2eeaf29826ec41da902b059 | |
| parent | dd24b6089514322bda77f37e48710d753957ca5e (diff) | |
Load qtbase_<language>.qm when possible
| -rw-r--r-- | src/mainwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 6cbe364e..23423194 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -3725,6 +3725,7 @@ void MainWindow::languageChange(const QString &newLanguage) m_CurrentLanguage = newLanguage;
installTranslator("qt");
+ installTranslator("qtbase");
installTranslator(ToQString(AppConfig::translationPrefix()));
for (const QString &fileName : m_PluginContainer.pluginFileNames()) {
installTranslator(QFileInfo(fileName).baseName());
|
