┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinviewactionhandler.cpp
diff options
context:
space:
mode:
authorDavid Faure <[email protected]>2008-07-11 21:33:56 +0000
committerDavid Faure <[email protected]>2008-07-11 21:33:56 +0000
commit815332af3898c4b864c66514725aa0b1f7b4e64f (patch)
tree1ecd23ed158e2fdec93c21f5ff6c8bed73a03e2f /src/dolphinviewactionhandler.cpp
parent96158191a9d3789da6b135c4ab582ffceb836c92 (diff)
another i18n TODO done: better description of this special action, for "configure shortcuts"
svn path=/trunk/KDE/kdebase/apps/; revision=831111
Diffstat (limited to 'src/dolphinviewactionhandler.cpp')
-rw-r--r--src/dolphinviewactionhandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphinviewactionhandler.cpp b/src/dolphinviewactionhandler.cpp
index 3c42ff1ae..d87937bb2 100644
--- a/src/dolphinviewactionhandler.cpp
+++ b/src/dolphinviewactionhandler.cpp
@@ -98,8 +98,8 @@ void DolphinViewActionHandler::createActions()
// can be used for deleting the file (#76016). It needs to be a separate action
// so that the Edit menu isn't affected.
KAction* deleteWithTrashShortcut = m_actionCollection->addAction("delete_shortcut");
- // TODO after message freeze, a more descriptive text, for the shortcuts editor.
- deleteWithTrashShortcut->setText(i18nc("@action:inmenu File", "Delete"));
+ // The descriptive text is just for the shortcuts editor.
+ deleteWithTrashShortcut->setText(i18nc("@action:inmenu File", "Delete (using shortcut for Trash)"));
deleteWithTrashShortcut->setShortcut(QKeySequence::Delete);
deleteWithTrashShortcut->setEnabled(false);
connect(deleteWithTrashShortcut, SIGNAL(triggered()), this, SLOT(slotDeleteItems()));