From 28461a1d449940e1fa954579923ee6add62f25c7 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Tue, 3 Dec 2024 17:05:27 +0200 Subject: [PATCH] Qt: Add translation for main window name --- src/panda_qt/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panda_qt/main_window.cpp b/src/panda_qt/main_window.cpp index 2c714e2ac..5af31d737 100644 --- a/src/panda_qt/main_window.cpp +++ b/src/panda_qt/main_window.cpp @@ -14,7 +14,7 @@ #include "version.hpp" MainWindow::MainWindow(QApplication* app, QWidget* parent) : QMainWindow(parent), keyboardMappings(InputMappings::defaultKeyboardMappings()) { - setWindowTitle("Alber"); + setWindowTitle(tr("Alber")); // Enable drop events for loading ROMs setAcceptDrops(true);