Skip to content

Commit b536d40

Browse files
committed
GUI - boot logs - add extra locale info
1 parent 72be534 commit b536d40

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/gui/qt/mainwindow.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ MainWindow::MainWindow(QApplication &app, bool i18n, QSplashScreen* splash)
155155
std::cout << "[GUI] - ===========================" << std::endl;
156156
std::cout << "[GUI] - " << std::endl;
157157
std::cout << "[GUI] - " << guiID.toStdString() << std::endl;
158-
std::cout << "[GUI] - locale: " << QLocale::system().uiLanguages()[0].toStdString() << std::endl;
158+
std::cout << "[GUI] - ui locale: " << QLocale::system().uiLanguages()[0].toStdString() << std::endl;
159+
std::cout << "[GUI] - sys locale: " << QLocale::system().name().toStdString() << std::endl;
160+
159161

160162
if(i18n) {
161163
std::cout << "[GUI] - translations available " << std::endl;

0 commit comments

Comments
 (0)