Fix missed strings for UI consistency

Fix ellipsis rendering
This commit is contained in:
Max Wilfinger
2025-08-08 09:39:11 +02:00
committed by Chris Hennes
parent 2eeff96e99
commit 1850c5dc0f
41 changed files with 117 additions and 118 deletions

View File

@@ -590,7 +590,7 @@ bool MainWindow::setupReportView()
auto pcReport = new ReportOutput(this);
pcReport->setWindowIcon(BitmapFactory().pixmap("MacroEditor"));
pcReport->setObjectName
(QString::fromLatin1(QT_TRANSLATE_NOOP("QDockWidget","Report view")));
(QString::fromLatin1(QT_TRANSLATE_NOOP("QDockWidget","Report View")));
DockWindowManager* pDockMgr = DockWindowManager::instance();
pDockMgr->registerDockWindow("Std_ReportView", pcReport);
@@ -610,7 +610,7 @@ bool MainWindow::setupPythonConsole()
auto pcPython = new PythonConsole(this);
pcPython->setWindowIcon(Gui::BitmapFactory().iconFromTheme("applications-python"));
pcPython->setObjectName
(QString::fromLatin1(QT_TRANSLATE_NOOP("QDockWidget","Python console")));
(QString::fromLatin1(QT_TRANSLATE_NOOP("QDockWidget","Python Console")));
DockWindowManager* pDockMgr = DockWindowManager::instance();
pDockMgr->registerDockWindow("Std_PythonView", pcPython);