From dd24b6089514322bda77f37e48710d753957ca5e Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Sun, 15 Apr 2018 12:58:27 +0100 Subject: Update .gitignore with missing msbuild stuff. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c60290ec..3f197288 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ stderr.log stdout.log vs_stderr.log vs_stdout.log +msbuild.log build /vsbuild /CMakeFiles -- cgit v1.3.1 From ae4e4f9df84a547c554a8a68bb65b082adaae9f5 Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Sun, 15 Apr 2018 12:59:04 +0100 Subject: Load qtbase_.qm when possible --- src/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) 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()); -- cgit v1.3.1