From ad9b6e8b1a6798ab388b1c2e447e9a61cb9c0349 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Wed, 2 Jan 2008 19:02:24 +0000 Subject: [PATCH] Add missing tr() calls in order to make all strings translateable. --- src/qtui/mainwin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qtui/mainwin.cpp b/src/qtui/mainwin.cpp index 940fbb46..a12b0434 100644 --- a/src/qtui/mainwin.cpp +++ b/src/qtui/mainwin.cpp @@ -76,7 +76,7 @@ void MainWin::init() { setupSettingsDlg(); // create nick dock - nickDock = new QDockWidget("Nicks", this); + nickDock = new QDockWidget(tr("Nicks"), this); nickDock->setObjectName("NickDock"); nickDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); @@ -119,7 +119,7 @@ void MainWin::init() { setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea); - QDockWidget *dock = new QDockWidget("Topic Dock", this); + QDockWidget *dock = new QDockWidget(tr("Topic Dock"), this); dock->setObjectName("TopicDock"); dock->setAllowedAreas(Qt::TopDockWidgetArea | Qt::BottomDockWidgetArea); -- 2.20.1