From 7681e312c5805f2f3a96d2d8afe990c9b5781bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Wed, 2 Nov 2016 13:55:11 +0100 Subject: [PATCH] [helpers/killer] Use

instead of Summary: para works fine for English, but seems to break in translations. BUG: 363750 FIXED-IN: 5.9 Test Plan: Renders correctly in English. Translations not tested. Reviewers: #kwin, #plasma Subscribers: plasma-devel, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D3227 --- helpers/killer/killer.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helpers/killer/killer.cpp b/helpers/killer/killer.cpp index 3b4e21c966..31fcaa1513 100644 --- a/helpers/killer/killer.cpp +++ b/helpers/killer/killer.cpp @@ -94,13 +94,13 @@ int main(int argc, char* argv[]) QString question = i18nc("@info", "Application \"%1\" is not responding", appname); question += isLocal - ? xi18nc("@info", "You tried to close window \"%1\" from application \"%2\" (Process ID: %3) but the application is not responding.", + ? xi18nc("@info", "

You tried to close window \"%1\" from application \"%2\" (Process ID: %3) but the application is not responding.

", caption, appname, pidString) - : xi18nc("@info", "You tried to close window \"%1\" from application \"%2\" (Process ID: %3), running on host \"%4\", but the application is not responding.", + : xi18nc("@info", "

You tried to close window \"%1\" from application \"%2\" (Process ID: %3), running on host \"%4\", but the application is not responding.

", caption, appname, pidString, hostname); question += xi18nc("@info", - "Do you want to terminate this application?" - "Terminating the application will close all of its child windows. Any unsaved data will be lost." + "

Do you want to terminate this application?

" + "

Terminating the application will close all of its child windows. Any unsaved data will be lost.

" ); KGuiItem continueButton = KGuiItem(i18n("&Terminate Application %1", appname), QStringLiteral("edit-bomb"));