CVS_SILENT i18n style guide fixes
svn path=/trunk/kdebase/kwin/; revision=380564
This commit is contained in:
parent
3ca2ea00c8
commit
2306f67f6b
2 changed files with 3 additions and 6 deletions
|
@ -12,9 +12,6 @@
|
|||
<height>503</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="caption">
|
||||
<string>Form2</string>
|
||||
</property>
|
||||
<vbox>
|
||||
<property name="name">
|
||||
<cstring>unnamed</cstring>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue