diff --git a/konsole/konsole.cpp b/konsole/konsole.cpp index c07b6f87..2908bd19 100644 --- a/konsole/konsole.cpp +++ b/konsole/konsole.cpp @@ -711,9 +711,9 @@ void Konsole::makeGUI() applySettingsToGUI(); isRestored = false; - new KAction(i18n("Previous Session"), QApplication::reverseLayout() ? Qt::SHIFT+Qt::Key_Right : Qt::SHIFT+Qt::Key_Left, + new KAction(i18n("Goto Previous Session"), QApplication::reverseLayout() ? Qt::SHIFT+Qt::Key_Right : Qt::SHIFT+Qt::Key_Left, this, SLOT(prevSession()), m_shortcuts, "previous_session"); - new KAction(i18n("Next Session"), QApplication::reverseLayout() ? Qt::SHIFT+Qt::Key_Left : Qt::SHIFT+Qt::Key_Right, + new KAction(i18n("Goto Next Session"), QApplication::reverseLayout() ? Qt::SHIFT+Qt::Key_Left : Qt::SHIFT+Qt::Key_Right, this, SLOT(nextSession()), m_shortcuts, "next_session"); new KAction(i18n("Switch to Session 1"), 0, this, SLOT(switchToSession1()), m_shortcuts, "switch_to_session_1");