CVS_SILENT i18n style guide fixes

svn path=/trunk/kdebase/kcontrol/konq/; revision=324065
This commit is contained in:
Stephan Binner 2004-06-27 16:18:56 +00:00
parent 4c7e136f95
commit 74fb815647
3 changed files with 3 additions and 3 deletions

View file

@ -332,7 +332,7 @@ void ListView::handleDropped(KEBListView *lv, QDropEvent *e, QListViewItem *newP
KMacroCommand *mcmd = 0;
if (!inApp) {
mcmd = CmdGen::self()->insertMimeSource(i18n("Drop items"), e, newAddress);
mcmd = CmdGen::self()->insertMimeSource(i18n("Drop Items"), e, newAddress);
} else {
if (!VALID_FIRST(selectedItems()) || (selectedItems()->first() == itemAfterQLVI))

View file

@ -11,7 +11,7 @@
#include "version.h"
static const char description[] =
I18N_NOOP("KDE File find utility.");
I18N_NOOP("KDE file find utility");
static KCmdLineOptions options[] =
{

View file

@ -308,7 +308,7 @@ bool DesktopPathConfig::moveDir( const KURL & src, const KURL & dest, const QStr
m_ok = true;
// Ask for confirmation before moving the files
if ( KMessageBox::questionYesNo( this, i18n("The path for '%1' has been changed;\ndo you want the files to be moved from '%2' to '%3'?").
arg(type).arg(src.path()).arg(dest.path()), i18n("Confirmation required") )
arg(type).arg(src.path()).arg(dest.path()), i18n("Confirmation Required") )
== KMessageBox::Yes )
{
bool destExists = QFile::exists(dest.path());