diff options
| author | Alexander Potashev <[email protected]> | 2010-05-31 01:13:03 +0000 |
|---|---|---|
| committer | Alexander Potashev <[email protected]> | 2010-05-31 01:13:03 +0000 |
| commit | 1db1cb309d11f2cc1ed6556c46ab0e7d1248be40 (patch) | |
| tree | 171e9605881c3a20237628239eb1497f9d75d0a9 | |
| parent | 78d4fffee8694281190ceab84f47bd2f2dfc8235 (diff) | |
Fix context for action name "Delete (using shortcut for Trash)"
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=1132560
| -rw-r--r-- | src/dolphinviewactionhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinviewactionhandler.cpp b/src/dolphinviewactionhandler.cpp index aa4ce6214..ff3fafc42 100644 --- a/src/dolphinviewactionhandler.cpp +++ b/src/dolphinviewactionhandler.cpp @@ -117,7 +117,7 @@ void DolphinViewActionHandler::createActions() // so that the Edit menu isn't affected. KAction* deleteWithTrashShortcut = m_actionCollection->addAction("delete_shortcut"); // The descriptive text is just for the shortcuts editor. - deleteWithTrashShortcut->setText(i18nc("@action:inmenu File", "Delete (using shortcut for Trash)")); + deleteWithTrashShortcut->setText(i18nc("@action \"Move to Trash\" for non-local files, etc.", "Delete (using shortcut for Trash)")); deleteWithTrashShortcut->setShortcut(QKeySequence::Delete); deleteWithTrashShortcut->setEnabled(false); connect(deleteWithTrashShortcut, SIGNAL(triggered()), this, SLOT(slotDeleteItems())); |
