diff --git a/src/helpers/killer/killer.cpp b/src/helpers/killer/killer.cpp index 095abc3d60..054c06dba5 100644 --- a/src/helpers/killer/killer.cpp +++ b/src/helpers/killer/killer.cpp @@ -80,13 +80,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"));