From 13e111a89aa98f92b6e7a151e59ca79cde5e4edf Mon Sep 17 00:00:00 2001 From: Mike Gelfand Date: Tue, 7 Feb 2017 02:24:47 +0300 Subject: [PATCH] Use default (instead of system) locale to be more flexible (Qt client) --- qt/Application.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/Application.cc b/qt/Application.cc index 9f2640c3b..77909aca5 100644 --- a/qt/Application.cc +++ b/qt/Application.cc @@ -317,7 +317,7 @@ Application::loadTranslations () QLatin1String ("qtbase"); #endif - const QLocale locale = QLocale::system (); + const QLocale locale; const QLocale englishLocale (QLocale::English, QLocale::UnitedStates); if (loadTranslation (myQtTranslator, qtFileName, locale, qtQmDirs) ||