Revision: 245
http://ktutorial.svn.sourceforge.net/ktutorial/?rev=245&view=rev
Author: danxuliu
Date: 2010-05-22 21:30:54 +0000 (Sat, 22 May 2010)
Log Message:
-----------
Rename "Set data..." actions to "Set step data..." and "Set reaction data..." so they can be distinguished in the "Configure Shortcuts" dialog.
Modified Paths:
--------------
trunk/ktutorial/ktutorial-editor/src/EditActions.cpp
Modified: trunk/ktutorial/ktutorial-editor/src/EditActions.cpp
===================================================================
--- trunk/ktutorial/ktutorial-editor/src/EditActions.cpp 2010-05-21 23:36:29 UTC (rev 244)
+++ trunk/ktutorial/ktutorial-editor/src/EditActions.cpp 2010-05-22 21:30:54 UTC (rev 245)
@@ -145,7 +145,7 @@
connect(action, SIGNAL(triggered(bool)), this, SLOT(addStep()));
action = new KAction(this);
- action->setText(i18nc("@action", "Set data..."));
+ action->setText(i18nc("@action", "Set step data..."));
action->setStatusTip(i18nc("@info:status", "Set the name and text of the "
"currently selected step."));
action->setIcon(KIcon("document-edit"));
@@ -191,7 +191,7 @@
connect(action, SIGNAL(triggered(bool)), this, SLOT(addReaction()));
action = new KAction(this);
- action->setText(i18nc("@action", "Set data..."));
+ action->setText(i18nc("@action", "Set reaction data..."));
action->setStatusTip(i18nc("@info:status", "Set the trigger and the "
"response of the currently selected reaction."));
action->setIcon(KIcon("document-edit"));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|