From a3d375ea62db31ede171a95216af969b1d09b161 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Fri, 31 Jan 2020 15:09:57 -0700 Subject: [PATCH] Replace a few more instances of "KDE" with "Plasma" BUG: 337681 FIXED-IN: 5.19.0 --- ksmserver/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ksmserver/main.cpp b/ksmserver/main.cpp index b0d20116a..c8d697846 100644 --- a/ksmserver/main.cpp +++ b/ksmserver/main.cpp @@ -49,7 +49,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include static const char version[] = "0.4"; -static const char description[] = I18N_NOOP( "The reliable KDE session manager that talks the standard X11R6 \nsession management protocol (XSMP)." ); +static const char description[] = I18N_NOOP( "The reliable Plasma session manager that talks the standard X11R6 \nsession management protocol (XSMP)." ); Display* dpy = nullptr; Colormap colormap = 0; @@ -213,9 +213,9 @@ void sanity_check( int argc, char* argv[] ) { const QString msg_pre = i18n("The following installation problem was detected\n" - "while trying to start KDE:") + + "while trying to start Plasma:") + QStringLiteral("\n\n "); - const QString msg_post = i18n("\n\nKDE is unable to start.\n"); + const QString msg_post = i18n("\n\nPlasma is unable to start.\n"); fputs(msg_pre.toUtf8().constData(), stderr); fprintf(stderr, "%s", msg.toUtf8().constData()); fputs(msg_post.toUtf8().constData(), stderr);