From 2306f67f6b130c180ae2950563ddb0760fa315a5 Mon Sep 17 00:00:00 2001 From: Stephan Binner Date: Thu, 20 Jan 2005 21:09:28 +0000 Subject: [PATCH] CVS_SILENT i18n style guide fixes svn path=/trunk/kdebase/kwin/; revision=380564 --- kcmkwin/kwinrules/ruleswidgetbase.ui | 3 --- workspace.cpp | 6 +++--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/kcmkwin/kwinrules/ruleswidgetbase.ui b/kcmkwin/kwinrules/ruleswidgetbase.ui index dc803f1c02..00811cf433 100644 --- a/kcmkwin/kwinrules/ruleswidgetbase.ui +++ b/kcmkwin/kwinrules/ruleswidgetbase.ui @@ -12,9 +12,6 @@ 503 - - Form2 - unnamed diff --git a/workspace.cpp b/workspace.cpp index 6f390ef977..d6ad6d4792 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -2325,7 +2325,7 @@ void Workspace::startKompmgr() KProcess proc; proc << "kdialog" << "--error" << i18n("The Composite Manager could not be started.\\nMake sure you have \"kompmgr\" in a $PATH directory.") - << "--title" << "Composite Manager failure"; + << "--title" << "Composite Manager Failure"; proc.start(KProcess::DontCare); } else @@ -2382,7 +2382,7 @@ void Workspace::restartKompmgr() KProcess proc; proc << "kdialog" << "--error" << i18n("The Composite Manager could not be started.\\nMake sure you have \"kompmgr\" in a $PATH directory.") - << "--title" << i18n("Composite Manager failure"); + << "--title" << i18n("Composite Manager Failure"); proc.start(KProcess::DontCare); } else @@ -2420,7 +2420,7 @@ void Workspace::handleKompmgrOutput( KProcess* , char *buffer, int buflen) KProcess proc; proc << "kdialog" << "--error" << message - << "--title" << i18n("Composite Manager failure"); + << "--title" << i18n("Composite Manager Failure"); proc.start(KProcess::DontCare); } }