From c65938f36c715771bd8deebb22dde811a6e47bd7 Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Sun, 30 Jan 2022 20:31:15 +0100 Subject: [PATCH] sessionrunner: Change text from "New Session" to "Switch User" This is how we call it since ~2016. Because of the string changes, it can not get cherry-picked to stable. BUG: 431315 --- runners/sessions/sessionrunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runners/sessions/sessionrunner.cpp b/runners/sessions/sessionrunner.cpp index ae565262a..ad70687e3 100644 --- a/runners/sessions/sessionrunner.cpp +++ b/runners/sessions/sessionrunner.cpp @@ -133,7 +133,7 @@ void SessionRunner::match(Plasma::RunnerContext &context) Plasma::QueryMatch match(this); match.setType(Plasma::QueryMatch::ExactMatch); match.setIconName(QStringLiteral("system-switch-user")); - match.setText(i18n("New Session")); + match.setText(i18n("Switch User")); matches << match; }