diff --git a/runners/sessions/sessionrunner.cpp b/runners/sessions/sessionrunner.cpp index 107b2c775506eaf0474bc33627adc474745367a1..87726deef2f6dbb1b768d46c17f044d8d7403f3a 100644 --- a/runners/sessions/sessionrunner.cpp +++ b/runners/sessions/sessionrunner.cpp @@ -223,21 +223,18 @@ void SessionRunner::run(const Plasma::RunnerContext &context, const Plasma::Quer return; } - // TODO: this message is too verbose and too technical. - int result = QMessageBox::warning(nullptr, - i18n("Warning - New Session"), - i18n("

You have chosen to open another desktop session.
" - "The current session will be hidden " - "and a new login screen will be displayed.
" - "An F-key is assigned to each session; " - "F%1 is usually assigned to the first session, " - "F%2 to the second session and so on. " - "You can switch between sessions by pressing " - "Ctrl, Alt and the appropriate F-key at the same time. " - "Additionally, the Plasma Panel and Desktop menus have " - "actions for switching between sessions.

", - 7, - 8)); + int result = QMessageBox::information(nullptr, + i18n("New Session"), + i18n("

You are about to enter a new desktop session.

" + "

A login screen will be displayed and the current session will be hidden.

" + "

You can switch between desktop sessions using:

" + ""), + QMessageBox::Ok, + QMessageBox::Cancel); if (result == QMessageBox::Cancel) { return;