From 6558b376af4807533a2cb6973b6cefd79e26d837 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Wed, 27 Jun 2007 23:48:09 +0000 Subject: [PATCH] Simpler menu text. The exact choice of word for the options dialog is something that can be discussed at Akademy. Remove untranslated menu title. svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=681121 --- corona.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/corona.cpp b/corona.cpp index afb45c697..fe860badc 100644 --- a/corona.cpp +++ b/corona.cpp @@ -309,20 +309,18 @@ void Corona::contextMenuEvent(QGraphicsSceneContextMenuEvent *contextMenuEvent) return; } - desktopMenu.addTitle("Plasma"); desktopMenu.addAction(d->engineExplorerAction); } else if (applet->immutable()) { return; } else { - desktopMenu.addTitle(applet->name()); desktopMenu.addSeparator(); - QAction* configureApplet = new QAction(i18n("Configure Plasmoid..."), this); + QAction* configureApplet = new QAction(i18n("Settings..."), this); connect(configureApplet, SIGNAL(triggered(bool)), applet, SLOT(configureDialog())); //This isn't implemented in Applet yet... desktopMenu.addAction(configureApplet); if (!d->immutable) { - QAction* closeApplet = new QAction(i18n("Close Plasmoid"), this); + QAction* closeApplet = new QAction(i18n("Close"), this); connect(closeApplet, SIGNAL(triggered(bool)), applet, SLOT(deleteLater())); desktopMenu.addAction(closeApplet);