From d78332949617dd0aca5e2981a324a731dc38ff78 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Wed, 23 Feb 2000 12:07:21 +0000 Subject: [PATCH] adding i18n() can't be that hard svn path=/trunk/kdebase/konsole/; revision=41472 --- src/main.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.C b/src/main.C index b8e01818..d05d1668 100644 --- a/src/main.C +++ b/src/main.C @@ -395,7 +395,7 @@ void Konsole::makeMenu() m_sessions->setCheckable(TRUE); m_sessions->insertItem( i18n("Send Signal"), m_signals ); - KAction *act = new KAction("Rename session...", 0, this, SLOT(slotRenameSession()), this); + KAction *act = new KAction(i18n("Rename session..."), 0, this, SLOT(slotRenameSession()), this); act->plug(m_sessions); // act->plug(toolBar()); @@ -1099,7 +1099,7 @@ void Konsole::slotRenameSession() { kDebugInfo("slotRenameSession"); KRadioAction *ra = session2action.find(se); QString name = ra->text(); - KLineEditDlg dlg("Session name",name, this); + KLineEditDlg dlg(i18n("Session name"),name, this); if (dlg.exec()) { ra->setText(dlg.text()); }