[rkward-cvs] [rkward] rkward: Clearer labels

Thomas Friedrichsmeier thomas.friedrichsmeier at ruhr-uni-bochum.de
Thu Jan 1 21:12:14 UTC 2015


Git commit b8a3594883fa5277e590ce67d2ef4dd01b6244a3 by Thomas Friedrichsmeier.
Committed on 01/01/2015 at 21:11.
Pushed by tfry into branch 'master'.

Clearer labels

M  +3    -3    rkward/dialogs/rkloadlibsdialog.cpp
M  +2    -2    rkward/rkward.cpp

http://commits.kde.org/rkward/b8a3594883fa5277e590ce67d2ef4dd01b6244a3

diff --git a/rkward/dialogs/rkloadlibsdialog.cpp b/rkward/dialogs/rkloadlibsdialog.cpp
index fd6df3d..96493da 100644
--- a/rkward/dialogs/rkloadlibsdialog.cpp
+++ b/rkward/dialogs/rkloadlibsdialog.cpp
@@ -64,13 +64,13 @@ RKLoadLibsDialog::RKLoadLibsDialog (QWidget *parent, RCommandChain *chain, bool
 	setButtons (KDialog::Ok | KDialog::Apply | KDialog::Cancel);
 
 	LoadUnloadWidget *luwidget = new LoadUnloadWidget (this);
-	addChild (luwidget, i18n ("Local packages"));
+	addChild (luwidget, i18n ("Load / Unload R packages"));
 	connect (this, SIGNAL (installedPackagesChanged()), luwidget, SLOT (updateInstalledPackages()));
 
 	install_packages_widget = new InstallPackagesWidget (this);
-	install_packages_pageitem = addChild (install_packages_widget, i18n ("Install / Update / Remove"));
+	install_packages_pageitem = addChild (install_packages_widget, i18n ("Install / Update / Remove R packages"));
 
-	configure_pluginmaps_pageitem = addChild (new RKPluginMapSelectionWidget (this), i18n ("Manage Plugins"));
+	configure_pluginmaps_pageitem = addChild (new RKPluginMapSelectionWidget (this), i18n ("Manage RKWard Plugins"));
 
 	connect (this, SIGNAL (currentPageChanged(KPageWidgetItem*,KPageWidgetItem*)), this, SLOT (slotPageChanged()));
 	QTimer::singleShot (0, this, SLOT (slotPageChanged()));
diff --git a/rkward/rkward.cpp b/rkward/rkward.cpp
index fc6f567..e62dff1 100644
--- a/rkward/rkward.cpp
+++ b/rkward/rkward.cpp
@@ -476,11 +476,11 @@ void RKWardMainWindow::initActions() {
 
 	// These two currently do the same thing
 	action = actionCollection ()->addAction ("load_unload_libs", this, SLOT (slotFileLoadLibs()));
-	action->setText (i18n ("Manage R packages..."));
+	action->setText (i18n ("Manage R packages and plugins..."));
 	action->setIcon (RKStandardIcons::getIcon (RKStandardIcons::ActionConfigurePackages));
 
 	action = actionCollection ()->addAction ("configure_packages", this, SLOT (slotFileLoadLibs()));
-	action->setText (i18n ("Manage R packages..."));
+	action->setText (i18n ("Manage R packages and plugins..."));
 	action->setIcon (RKStandardIcons::getIcon (RKStandardIcons::ActionConfigurePackages));
 
 	setStandardToolBarMenuEnabled (true);





More information about the rkward-tracker mailing list