From 896b8dcfddb4e5be4be30532f506755a1a6807ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Thu, 5 Jun 2014 18:02:43 +0200 Subject: [PATCH] [killer] i18n -> xi18n It's using markup, so it needs to be xi18n. --- killer/killer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/killer/killer.cpp b/killer/killer.cpp index c1ddb75a2a..3b4e21c966 100644 --- a/killer/killer.cpp +++ b/killer/killer.cpp @@ -94,11 +94,11 @@ int main(int argc, char* argv[]) QString question = i18nc("@info", "Application \"%1\" is not responding", appname); question += isLocal - ? i18nc("@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) - : i18nc("@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 += i18nc("@info", + 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." );