diff --git a/killer/killer.cpp b/killer/killer.cpp index f2745c8d34..31b72411c7 100644 --- a/killer/killer.cpp +++ b/killer/killer.cpp @@ -64,12 +64,13 @@ int main( int argc, char* argv[] ) return 1; } QString question = i18n( - "

Window with title \"%2\" is not responding. " - "This window belongs to application %1 (PID=%3, hostname=%4).

" - "

Do you wish to terminate this application? (All unsaved data in this application will be lost.)

" , + "

The window \"%2\" is not responding. " + "It belongs to the application %1 (Process ID = %3, hostname = %4).

" + "

Do you wish to terminate the application process including all of its child windows?
" + "Any unsaved data will be lost!

" , appname, caption, QString::number( pid ), QString( hostname ) ); app.updateUserTimestamp( timestamp ); - if( KMessageBox::warningYesNoWId( id, question, QString(), KGuiItem(i18n("Terminate")), KGuiItem(i18n("Keep Running")) ) == KMessageBox::Yes ) + if( KMessageBox::warningContinueCancelWId( id, question, QString(), KGuiItem(i18n("&Terminate application %1", appname), "edit-bomb") ) == KMessageBox::Continue ) { if( hostname != "localhost" ) {