diff options
author | Elvis Angelaccio <elvis.angelaccio@kde.org> | 2017-08-09 22:33:29 +0200 |
---|---|---|
committer | Elvis Angelaccio <elvis.angelaccio@kdemail.net> | 2017-08-09 22:33:33 +0200 |
commit | 0a166cb2b421d2fc1ce64b89968974d7d1519d39 (patch) | |
tree | 9dbc730da498c2622057ee935113897771fb756f /src | |
parent | 11ee92d92b1e9875a2707848324012fe881bf893 (diff) | |
download | kconfig-0a166cb2b421d2fc1ce64b89968974d7d1519d39.tar.gz kconfig-0a166cb2b421d2fc1ce64b89968974d7d1519d39.tar.bz2 |
Fix labels of DeleteFile/RenameFile actions
For consistency with D6774.
CCBUG: 382450
Differential Revision: https://phabricator.kde.org/D6775
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kstandardshortcut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/kstandardshortcut.cpp b/src/gui/kstandardshortcut.cpp index 460c1b78..1d0d9b4f 100644 --- a/src/gui/kstandardshortcut.cpp +++ b/src/gui/kstandardshortcut.cpp @@ -164,8 +164,8 @@ static KStandardShortcutInfo g_infoStandardShortcut[] = { { SwitchApplicationLanguage, "SwitchApplicationLanguage", QT_TRANSLATE_NOOP3("KStandardShortcut", "Switch Application Language", "@action"), 0, 0, QList<QKeySequence>(), false }, { AboutApp, "AboutApp", QT_TRANSLATE_NOOP3("KStandardShortcut", "About Application", "@action"), 0, 0, QList<QKeySequence>(), false }, { AboutKDE, "AboutKDE", QT_TRANSLATE_NOOP3("KStandardShortcut", "About KDE", "@action"), 0, 0, QList<QKeySequence>(), false }, - { DeleteFile, "DeleteFile", QT_TRANSLATE_NOOP3("KStandardShortcut", "Delete File", "@action"), SHIFT(Delete), 0, QList<QKeySequence>(), false }, - { RenameFile, "RenameFile", QT_TRANSLATE_NOOP3("KStandardShortcut", "Rename File", "@action"), Qt::Key_F2, 0, QList<QKeySequence>(), false }, + { DeleteFile, "DeleteFile", QT_TRANSLATE_NOOP3("KStandardShortcut", "Delete", "@action"), SHIFT(Delete), 0, QList<QKeySequence>(), false }, + { RenameFile, "RenameFile", QT_TRANSLATE_NOOP3("KStandardShortcut", "Rename", "@action"), Qt::Key_F2, 0, QList<QKeySequence>(), false }, { MoveToTrash, "MoveToTrash", QT_TRANSLATE_NOOP3("KStandardShortcut", "Move to Trash", "@action"), Qt::Key_Delete, 0, QList<QKeySequence>(), false }, { Donate, "Donate", QT_TRANSLATE_NOOP3("KStandardShortcut", "Donate", "@action"), 0, 0, QList<QKeySequence>(), false }, |