From 271f59722d9b8a07ec92d772cfde3bb0ad902cfd Mon Sep 17 00:00:00 2001 From: craig Date: Mon, 19 Dec 2011 19:28:42 +0000 Subject: [PATCH] Text of actions --- gui/streamspage.cpp | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/gui/streamspage.cpp b/gui/streamspage.cpp index a579fffda..c478f31d3 100644 --- a/gui/streamspage.cpp +++ b/gui/streamspage.cpp @@ -49,13 +49,11 @@ StreamsPage::StreamsPage(MainWindow *p) exportAction = p->actionCollection()->addAction("exportstreams"); exportAction->setText(i18n("Export Streams")); addAction = p->actionCollection()->addAction("addstream"); - addAction->setText(i18n("Add Stream")); + addAction->setText(i18n("Add")); removeAction = p->actionCollection()->addAction("removestream"); - removeAction->setText(i18n("Remove Stream")); + removeAction->setText(i18n("Remove")); editAction = p->actionCollection()->addAction("editstream"); - editAction->setText(i18n("Edit Stream")); - editAction = p->actionCollection()->addAction("editstream"); - editAction->setText(i18n("Edit Stream")); + editAction->setText(i18n("Edit")); markAsFavAction = p->actionCollection()->addAction("markasfav"); markAsFavAction->setText(i18n("Set As Favorite")); unMarkAsFavAction = p->actionCollection()->addAction("unmarkasfav"); @@ -63,9 +61,9 @@ StreamsPage::StreamsPage(MainWindow *p) #else importAction = new QAction(tr("Import Streams"), this); exportAction = new QAction(tr("Export Streams"), this); - addAction = new QAction(tr("Add Stream"), this); - removeAction = new QAction(tr("Remove Stream"), this); - editAction = new QAction(tr("Rename Stream"), this); + addAction = new QAction(tr("Add"), this); + removeAction = new QAction(tr("Remove"), this); + editAction = new QAction(tr("Edit"), this); markAsFavAction = new QAction(tr("Set As Favorite"), this); unMarkAsFavAction = new QAction(tr("Unset As Favorite"), this); #endif