You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(98) |
Sep
(138) |
Oct
(100) |
Nov
(49) |
Dec
(131) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(94) |
Feb
(65) |
Mar
(100) |
Apr
(83) |
May
(72) |
Jun
(29) |
Jul
(167) |
Aug
(127) |
Sep
(131) |
Oct
(269) |
Nov
(122) |
Dec
(100) |
2005 |
Jan
(228) |
Feb
(266) |
Mar
(63) |
Apr
(135) |
May
(157) |
Jun
(52) |
Jul
(25) |
Aug
(49) |
Sep
(184) |
Oct
(159) |
Nov
(75) |
Dec
(37) |
2006 |
Jan
(60) |
Feb
(129) |
Mar
(110) |
Apr
(34) |
May
(31) |
Jun
(42) |
Jul
(72) |
Aug
(90) |
Sep
(57) |
Oct
(66) |
Nov
(42) |
Dec
(90) |
2007 |
Jan
(106) |
Feb
(54) |
Mar
(93) |
Apr
(27) |
May
(21) |
Jun
(17) |
Jul
(19) |
Aug
(22) |
Sep
(25) |
Oct
(2) |
Nov
(1) |
Dec
(1) |
2008 |
Jan
(65) |
Feb
(70) |
Mar
(29) |
Apr
(45) |
May
(91) |
Jun
(20) |
Jul
(11) |
Aug
(24) |
Sep
(23) |
Oct
(13) |
Nov
(23) |
Dec
(39) |
2009 |
Jan
(23) |
Feb
(39) |
Mar
(15) |
Apr
(56) |
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Karai C. <ck...@us...> - 2004-08-26 15:48:07
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29170/krusader_kde3/krusader Modified Files: krservices.cpp krservices.h Log Message: Final smoothing on protocols and mimes Index: krservices.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krservices.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** krservices.cpp 26 Aug 2004 10:55:50 -0000 1.6 --- krservices.cpp 26 Aug 2004 15:47:57 -0000 1.7 *************** *** 155,156 **** --- 155,163 ---- return (*slaveMap)[mimetype]; } + + void KrServices::clearProtocolCache() + { + if( slaveMap ) + delete slaveMap; + slaveMap = 0; + } Index: krservices.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krservices.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** krservices.h 26 Aug 2004 10:55:50 -0000 1.5 --- krservices.h 26 Aug 2004 15:47:57 -0000 1.6 *************** *** 37,40 **** --- 37,41 ---- static QStringList separateArgs( QString args ); static QString registerdProtocol(QString mimetype); + static void clearProtocolCache(); private: |
From: Karai C. <ck...@us...> - 2004-08-26 15:21:11
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Locate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23815/krusader_kde3/krusader/Locate Modified Files: locate.cpp locate.h Log Message: FIXED: locate doesn't report errors occured during the search Index: locate.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Locate/locate.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** locate.h 19 Mar 2004 06:49:07 -0000 1.2 --- locate.h 26 Aug 2004 15:21:01 -0000 1.3 *************** *** 51,54 **** --- 51,55 ---- public slots: void processStdout(KProcess *, char *, int); + void processStderr(KProcess *proc, char *buffer, int length); void slotRightClick(QListViewItem *); void slotDoubleClick(QListViewItem *); *************** *** 72,75 **** --- 73,78 ---- KListViewItem *lastItem; + QString collectedErr; + long findOptions; QString findPattern; Index: locate.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Locate/locate.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** locate.cpp 10 May 2004 19:08:42 -0000 1.5 --- locate.cpp 26 Aug 2004 15:21:01 -0000 1.6 *************** *** 206,209 **** --- 206,211 ---- connect( &locateProc, SIGNAL( receivedStdout(KProcess *, char *, int) ), this, SLOT( processStdout(KProcess *, char *, int) ) ); + connect( &locateProc, SIGNAL( receivedStderr(KProcess *, char *, int) ), + this, SLOT( processStderr(KProcess *, char *, int) ) ); locateProc << KrServices::fullPathName( "locate" ); *************** *** 212,218 **** locateProc << locateSearchFor->currentText(); ! if ( !locateProc.start( KProcess::Block, KProcess::Stdout ) ) KMessageBox::error( krApp, i18n( "Error during the start of `locate` process!" ) ); ! enableButton( KDialogBase::User3, true ); /* enable the locate button */ enableButton( KDialogBase::User1, false ); /* disable the stop button */ --- 214,229 ---- locateProc << locateSearchFor->currentText(); ! collectedErr = ""; ! bool result = !locateProc.start( KProcess::Block, KProcess::AllOutput ); ! if( !collectedErr.isEmpty() ) ! { ! KMessageBox::error( krApp, i18n( "Locate produced the following error message:\n\n" ) + collectedErr ); ! }else if ( result ) ! { KMessageBox::error( krApp, i18n( "Error during the start of `locate` process!" ) ); ! }else if ( !locateProc.normalExit() || locateProc.exitStatus() ) ! { ! KMessageBox::error( krApp, i18n( "Error occured during the execution of `locate` process!" ) ); ! } enableButton( KDialogBase::User3, true ); /* enable the locate button */ enableButton( KDialogBase::User1, false ); /* disable the stop button */ *************** *** 225,229 **** buf[ length ] = 0; ! remaining += QString( buf ); delete []buf; --- 236,240 ---- buf[ length ] = 0; ! remaining += QString::fromLocal8Bit( buf ); delete []buf; *************** *** 257,260 **** --- 268,281 ---- } + void LocateDlg::processStderr(KProcess *proc, char *buffer, int length) + { + char *buf = new char[ length+1 ]; + memcpy( buf, buffer, length ); + buf[ length ] = 0; + + collectedErr += QString::fromLocal8Bit( buf ); + delete []buf; + } + void LocateDlg::slotRightClick(QListViewItem *item) { |
From: Karai C. <ck...@us...> - 2004-08-26 15:21:10
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23815/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: locate doesn't report errors occured during the search Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.287 retrieving revision 1.288 diff -C2 -d -r1.287 -r1.288 *** ChangeLog 25 Aug 2004 17:35:30 -0000 1.287 --- ChangeLog 26 Aug 2004 15:21:01 -0000 1.288 *************** *** 30,33 **** --- 30,34 ---- REACTIVATED: usermenu (now using the new useraction-system) + FIXED: locate doesn't report the errors occured during the search FIXED: the viewer size is forgotten in maximized mode (KDE hack) FIXED: internationalization bugs, illegal usage of QString::latin1() |
From: Shie E. <er...@us...> - 2004-08-26 14:26:03
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14309 Modified Files: krusader.desktop Log Message: freedesktop.org compliancy. thanks to Ariszlo Index: krusader.desktop =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.desktop,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** krusader.desktop 15 Apr 2002 18:47:20 -0000 1.1.1.1 --- krusader.desktop 26 Aug 2004 14:25:54 -0000 1.2 *************** *** 1,11 **** - # KDE Config File [Desktop Entry] ! Type=Application Exec=krusader -caption "%c" %i %m Icon=krusader.png MiniIcon=krusader.png DocPath=krusader/index.html Comment=Twin-Panel File Manager ! Terminal=0 ! Name=Krusader ! --- 1,86 ---- [Desktop Entry] ! Encoding=UTF-8 ! Name=Krusader Exec=krusader -caption "%c" %i %m Icon=krusader.png MiniIcon=krusader.png + Terminal=0 + Type=Application DocPath=krusader/index.html + Categories=Qt;KDE;Utility; + #Categories=Qt;KDE;System; Comment=Twin-Panel File Manager ! Comment[hu]=Kétpaneles fájlkezelÅ ! GenericName=File Manager ! GenericName[af]=Lêer Bestuurder ! GenericName[ar]=Ù Ø¯ÙØ± اÙÙ ÙÙØ§Øª ! GenericName[az]=Fayl İdarÉcisi ! GenericName[be]=ÐÑнÑджÑÑ ÑÐ°Ð¹Ð»Ð°Ñ ! GenericName[bg]=Файлов бÑаÑзÑÑ ! GenericName[bn]=ফাà¦à¦² মà§à¦¯à¦¾à¦¨à§à¦à¦¾à¦° ! GenericName[br]=Merour restroù ! GenericName[bs]=Upravitelj datotekama ! GenericName[ca]=Gestor de fitxers ! GenericName[cs]=Správce souborů ! GenericName[cy]=Rheolydd Ffeiliau ! GenericName[da]=FilhÃ¥ndtering ! GenericName[de]=Dateimanager ! GenericName[el]=ÎιαÏειÏιÏÏÎ®Ï Î±ÏÏείÏν ! GenericName[eo]=Dosieradministrilo ! GenericName[es]=Administrador de archivos ! GenericName[et]=Failihaldur ! GenericName[eu]=Fitxategi Kudeatzailea ! GenericName[fa]=Ù Ø¯ÛØ± پرÙÙØ¯Ù ! GenericName[fi]=Tiedostonhallinta ! GenericName[fo]=FÃluhandfarari ! GenericName[fr]=Gestionnaire de fichiers ! GenericName[ga]=Bainisteoir Chomhad ! GenericName[gl]=Xestor de Ficheiros ! GenericName[he]=×× ×× ××§×צ×× ! GenericName[hi]=फ़ाà¤à¤² पà¥à¤°à¤¬à¤à¤§à¤ ! GenericName[hr]=Upravitelj datotekama ! GenericName[hsb]=Rjadowar datajow ! GenericName[hu]=FájlkezelÅ ! GenericName[id]=Manajer File ! GenericName[is]=Skráastjóri ! GenericName[it]=File manager ! GenericName[ja]=ãã¡ã¤ã«ããã¼ã¸ã£ ! GenericName[ko]=íì¼ ê´ë¦¬ì ! GenericName[lo]=à»àºàº·à»àºàºàº¡àº·àºàº²àºàºàº±àºàºàº²àºà»àºà»àº¡ ! GenericName[lt]=Bylų TvarkyklÄ ! GenericName[lv]=Failu Menedžeris ! GenericName[mk]=ÐенаÑÐµÑ Ð½Ð° даÑоÑеки ! GenericName[mn]=Файл ÑдиÑÐ´Ð°Ð³Ñ ! GenericName[ms]=Pengurus Fail ! GenericName[mt]=Manager tal-Fajls ! GenericName[nb]=Filbehandler ! GenericName[nds]=Dateimanager ! GenericName[nl]=Bestandsbeheerder ! GenericName[nn]=Filbehandlar ! GenericName[nso]=Molaodi wa Faele ! GenericName[oc]=Gestionari de fiquièrs ! GenericName[pl]=Menedżer plików ! GenericName[pt]=Gestor de Ficheiros ! GenericName[pt_BR]=Gerenciador de Arquivos ! GenericName[ro]=Managerul de fiÅiere ! GenericName[ru]=ФайловÑй Ð¼ÐµÐ½ÐµÐ´Ð¶ÐµÑ ! GenericName[sk]=Správca súborov ! GenericName[sl]=Upravljalnik datotek ! GenericName[sr]=ÐенаÑÐµÑ ÑаÑлова ! GenericName[sr@Latn]=Menadžer fajlova ! GenericName[ss]=Siphatsi selifayela ! GenericName[sv]=Filhanterare ! GenericName[ta]=à®à¯à®ªà¯à®ªà¯ à®®à¯à®²à®¾à®³à®°à¯ ! GenericName[tg]=ÐÑдиÑи Ñайл ! GenericName[th]=à¹à¸à¸£à¸·à¹à¸à¸à¸¡à¸·à¸à¸à¸±à¸à¸à¸²à¸£à¹à¸à¹à¸¡ ! GenericName[tr]=Dosya Yöneticisi ! GenericName[uk]=ÐÐµÐ½ÐµÐ´Ð¶ÐµÑ ÑайлÑв ! GenericName[uz]=Файл боÑÒаÑÑвÑиÑи ! GenericName[ven]=Mulanguli wa faela ! GenericName[vi]=Trình quản là file ! GenericName[wa]=Manaedjeu di fitchîs ! GenericName[xh]=Umphathi Wefayile ! GenericName[xx]=xxFile Managerxx ! GenericName[zh_CN]=æä»¶ç®¡çå¨ ! GenericName[zh_TW]=æªæ¡ç®¡çç¨å¼ ! GenericName[zu]=imenenja yamafayela |
From: Rafi Y. <ya...@us...> - 2004-08-26 10:56:16
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5736/krusader/Panel Modified Files: panelfunc.cpp Log Message: Using Csaba new slave registration GUI to open files Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** panelfunc.cpp 25 Aug 2004 17:53:09 -0000 1.78 --- panelfunc.cpp 26 Aug 2004 10:55:50 -0000 1.79 *************** *** 560,594 **** // this is done when you double click on a file void ListPanelFunc::execute( QString& name ) { ! if ( name == ".." ) { ! dirUp(); ! return ; ! } ! vfile *vf = files() ->vfs_search( name ); ! if ( vf == 0 ) ! return ; ! KURL origin = files() ->vfs_getOrigin(); ! QString type = vf->vfile_getMime().right( 4 ); ! if ( vf->vfile_getMime().contains( "-rar" ) ) ! type = "-rar"; ! if ( vf->vfile_isDir() ) { ! //origin.addPath(name); ! origin = files()->vfs_getFile( name ); ! panel->view->setNameToMakeCurrent( QString::null ); ! openUrl( origin ); ! } else if ( KRarcHandler::arcHandled( type ) && origin.isLocalFile() ) { ! KURL path = files()->vfs_getFile(vf->vfile_getName()); ! if ( type == "-tbz" || type == "-tgz" || type == "tarz" || type == "-tar" ){ ! path.setProtocol("tar"); ! } else { ! path.setProtocol("krarc"); ! } ! openUrl( path ); } else { ! KURL url = files()->vfs_getFile( name ); ! KRun::runURL( url, vf->vfile_getMime() ); ! } } --- 560,598 ---- // this is done when you double click on a file void ListPanelFunc::execute( QString& name ) { ! if ( name == ".." ) { ! dirUp(); ! return ; ! } ! vfile *vf = files() ->vfs_search( name ); ! if ( vf == 0 ) return ; ! KURL origin = files() ->vfs_getOrigin(); ! // QString type = vf->vfile_getMime().right( 4 ); ! // if ( vf->vfile_getMime().contains( "-rar" ) ) type = "-rar"; ! QString protocol = KrServices::registerdProtocol(vf->vfile_getMime()); ! ! if ( vf->vfile_isDir() ) { ! //origin.addPath(name); ! origin = files()->vfs_getFile( name ); ! panel->view->setNameToMakeCurrent( QString::null ); ! openUrl( origin ); ! } else if ( !protocol.isEmpty() ){ ! KURL path = files()->vfs_getFile(vf->vfile_getName()); ! path.setProtocol(protocol); ! openUrl( path ); ! // } else if ( KRarcHandler::arcHandled( type ) && origin.isLocalFile() ) { ! // KURL path = files()->vfs_getFile(vf->vfile_getName()); ! // if ( type == "-tbz" || type == "-tgz" || type == "tarz" || type == "-tar" ){ ! // path.setProtocol("tar"); ! // } else { ! // path.setProtocol("krarc"); ! // } ! // openUrl( path ); } else { ! KURL url = files()->vfs_getFile( name ); ! KRun::runURL( url, vf->vfile_getMime() ); ! } } |
From: Rafi Y. <ya...@us...> - 2004-08-26 10:56:16
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5736/krusader Modified Files: krservices.h krservices.cpp Log Message: Using Csaba new slave registration GUI to open files Index: krservices.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krservices.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** krservices.cpp 8 Mar 2004 07:02:14 -0000 1.5 --- krservices.cpp 26 Aug 2004 10:55:50 -0000 1.6 *************** *** 26,29 **** --- 26,31 ---- #include "krusader.h" + QMap<QString,QString>* KrServices::slaveMap=0; + bool KrServices::cmdExist(QString cmdName) { *************** *** 136,137 **** --- 138,156 ---- return argList; } + + QString KrServices::registerdProtocol(QString mimetype){ + if( slaveMap == 0 ){ + slaveMap = new QMap<QString,QString>(); + + krConfig->setGroup( "Protocols" ); + QStringList protList = krConfig->readListEntry( "Handled Protocols" ); + for( QStringList::Iterator it = protList.begin(); it != protList.end(); it++ ){ + QStringList mimes = krConfig->readListEntry( QString( "Mimes For %1" ).arg( *it ) ); + for( QStringList::Iterator it2 = mimes.begin(); it2 != mimes.end(); it2++ ) + (*slaveMap)[*it2] = *it; + } + + + } + return (*slaveMap)[mimetype]; + } Index: krservices.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krservices.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** krservices.h 7 Mar 2004 22:48:47 -0000 1.4 --- krservices.h 26 Aug 2004 10:55:50 -0000 1.5 *************** *** 21,24 **** --- 21,25 ---- #include <qstring.h> #include <qstringlist.h> + #include <qmap.h> /** *************** *** 32,38 **** static bool cmdExist(QString cmdName); ! static QString detectFullPathName( QString name ); ! static QString fullPathName( QString name, QString confName = QString::null ); ! static QStringList separateArgs( QString args ); }; --- 33,44 ---- static bool cmdExist(QString cmdName); ! static QString detectFullPathName( QString name ); ! static QString fullPathName( QString name, QString confName = QString::null ); ! static QStringList separateArgs( QString args ); ! static QString registerdProtocol(QString mimetype); ! ! private: ! static QMap<QString,QString>* slaveMap; ! }; |
From: Rafi Y. <ya...@us...> - 2004-08-26 10:54:41
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5492/krusader/Konfigurator Modified Files: kgprotocols.cpp kgprotocols.h Log Message: Added default mimetypes for the "tar" kio_slave Index: kgprotocols.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/kgprotocols.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** kgprotocols.h 25 Aug 2004 18:30:57 -0000 1.1 --- kgprotocols.h 26 Aug 2004 10:54:30 -0000 1.2 *************** *** 81,84 **** --- 81,85 ---- static QString defaultIsoMimes; static QString defaultKrarcMimes; + static QString defaultTarMimes; }; Index: kgprotocols.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/kgprotocols.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** kgprotocols.cpp 25 Aug 2004 18:30:57 -0000 1.1 --- kgprotocols.cpp 26 Aug 2004 10:54:30 -0000 1.2 *************** *** 39,50 **** #include <qtooltip.h> ! QString KgProtocols::defaultProtocols = "krarc,iso"; QString KgProtocols::defaultIsoMimes = "application/x-iso"; QString KgProtocols::defaultKrarcMimes = "application/x-arj,application/x-bzip2," "application/x-cpio,application/x-gzip," "application/x-lha,application/x-rar," ! "application/x-rpm,application/x-tar," ! "application/x-tarz,application/x-tbz," ! "application/x-tgz,application/x-zip"; KgProtocols::KgProtocols( bool first, QWidget* parent, const char* name ) : --- 39,50 ---- #include <qtooltip.h> ! QString KgProtocols::defaultProtocols = "krarc,iso,tar"; QString KgProtocols::defaultIsoMimes = "application/x-iso"; QString KgProtocols::defaultKrarcMimes = "application/x-arj,application/x-bzip2," "application/x-cpio,application/x-gzip," "application/x-lha,application/x-rar," ! "application/x-rpm,application/x-zip"; ! QString KgProtocols::defaultTarMimes = "application/x-tar,application/x-tarz," ! "application/x-tbz,application/x-tgz"; KgProtocols::KgProtocols( bool first, QWidget* parent, const char* name ) : *************** *** 397,400 **** --- 397,401 ---- krConfig->writeEntry( "Mimes For iso", defaultIsoMimes ); krConfig->writeEntry( "Mimes For krarc", defaultKrarcMimes ); + krConfig->writeEntry( "Mimes For tar", defaultTarMimes ); } } |
From: Jonas B. <jb...@us...> - 2004-08-26 00:38:56
|
Update of /cvsroot/krusader/krusader_kde3/krusader/UserAction In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9452/krusader/UserAction Modified Files: kraction.cpp Log Message: call_each is now working Index: kraction.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/UserAction/kraction.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** kraction.cpp 29 Jul 2004 14:37:05 -0000 1.3 --- kraction.cpp 26 Aug 2004 00:38:37 -0000 1.4 *************** *** 91,111 **** void KrActionProc::start( QStringList cmdLineList ) { _proc->clearArguments(); ! bool result = true; - if ( cmdLineList.count() > 1 ) - KMessageBox::sorry( 0, "Support for more then one command is currently broken! I'll try to execute these commands anyway:\n" + cmdLineList.join("\n") ); - if ( _properties->execType() != UserActionProperties::CollectOutput ) { for ( QStringList::Iterator it = cmdLineList.begin(); it != cmdLineList.end(); ++it) { ! _proc->clearArguments(); ! // run in terminal ! if ( _properties->execType() == UserActionProperties::Terminal ) { ! ( *_proc ) << "konsole" << "--noclose" << "-e" << *it; // FIXME read terminal-setting from config ! } else { // no terminal, no output collection ! ( *_proc ) << *it; ! } ! result = ( result && _proc->start( KProcess::NotifyOnExit, ( KProcess::Communication ) ( KProcess::Stdout | KProcess::Stderr ) ) ); ! // while ( _proc->isRunning() ); // FIXME: replace this with a nice proc-queue ! } //for } else { // collect output --- 91,115 ---- void KrActionProc::start( QStringList cmdLineList ) { _proc->clearArguments(); ! QString cmd; ! ! if ( _properties->execType() == UserActionProperties::Terminal && cmdLineList.count() > 1) ! KMessageBox::sorry( 0, "Support for more then one command don't work in a terminal. Only the first is executed in the terminal" ); if ( _properties->execType() != UserActionProperties::CollectOutput ) { + //TODO option to run them in paralell (not available for: collect output) for ( QStringList::Iterator it = cmdLineList.begin(); it != cmdLineList.end(); ++it) { ! if ( ! cmd.isEmpty() ) ! cmd += " ; "; //TODO make this separator configurable (users may want && or || for spec. actions) ! cmd += *it; ! } ! // run in terminal ! if ( _properties->execType() == UserActionProperties::Terminal ) { ! // TODO read terminal-setting from config ! // ( *_proc ) << "konsole" << "--noclose" << "-e" << "\""+cmd+"\""; ! ( *_proc ) << "konsole" << "--noclose" << "-e" << cmd; ! } else { // no terminal, no output collection ! ( *_proc ) << cmd; ! } ! _proc->start( KProcess::NotifyOnExit, ( KProcess::Communication ) ( KProcess::Stdout | KProcess::Stderr ) ); } else { // collect output *************** *** 117,126 **** _output->show(); for ( QStringList::Iterator it = cmdLineList.begin(); it != cmdLineList.end(); ++it) { ! //TODO: read header fom config and place it on top of each command ! _proc->clearArguments(); ! ( *_proc ) << *it; ! result = ( result && _proc->start( KProcess::NotifyOnExit, ( KProcess::Communication ) ( KProcess::Stdout | KProcess::Stderr ) ) ); ! // while ( _proc->isRunning() ); // FIXME: replace this with a nice proc-queue ! } //for } --- 121,133 ---- _output->show(); for ( QStringList::Iterator it = cmdLineList.begin(); it != cmdLineList.end(); ++it) { ! if ( ! cmd.isEmpty() ) ! cmd += " ; "; //TODO make this separator configurable (users may want && or ||) ! //TODO: read header fom config or action-properties and place it on top of each command ! if ( cmdLineList.count() > 1 ) ! cmd += "echo --------------------------------------- ; "; ! cmd += *it; ! } ! ( *_proc ) << cmd; ! _proc->start( KProcess::NotifyOnExit, ( KProcess::Communication ) ( KProcess::Stdout | KProcess::Stderr ) ); } |
From: Karai C. <ck...@us...> - 2004-08-25 18:31:08
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30183/krusader_kde3/krusader/Konfigurator Modified Files: Makefile.am konfigurator.cpp Added Files: kgprotocols.cpp kgprotocols.h Log Message: ADDED: linking mimes and protocols -> konfigurator side --- NEW FILE: kgprotocols.h --- /*************************************************************************** KgProtocols.h - description ------------------- copyright : (C) 2004 by Csaba Karai e-mail : kru...@us... web site : http://krusader.sourceforge.net --------------------------------------------------------------------------- Description *************************************************************************** A db dD d8888b. db db .d8888. .d8b. d8888b. d88888b d8888b. 88 ,8P' 88 `8D 88 88 88' YP d8' `8b 88 `8D 88' 88 `8D 88,8P 88oobY' 88 88 `8bo. 88ooo88 88 88 88ooooo 88oobY' 88`8b 88`8b 88 88 `Y8b. 88~~~88 88 88 88~~~~~ 88`8b 88 `88. 88 `88. 88b d88 db 8D 88 88 88 .8D 88. 88 `88. YP YD 88 YD ~Y8888P' `8888Y' YP YP Y8888D' Y88888P 88 YD H e a d e r F i l e *************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __KgProtocols_H__ #define __KgProtocols_H__ #include "konfiguratorpage.h" #include <qlistbox.h> #include <qpushbutton.h> #include <qlistview.h> class KgProtocols : public KonfiguratorPage { Q_OBJECT public: KgProtocols( bool first, QWidget* parent=0, const char* name=0 ); virtual void loadInitialValues(); virtual void setDefaults(); virtual bool apply(); virtual bool isChanged(); static void init(); public slots: void slotDisableButtons(); void slotAddProtocol(); void slotRemoveProtocol(); void slotAddMime(); void slotRemoveMime(); protected: void loadListCapableProtocols(); void loadMimes(); QWidget* addSpacer( QWidget *parent, const char *widgetName = 0); void addProtocol( QString name, bool changeCurrent = false ); void removeProtocol( QString name ); void addMime( QString name, QString protocol ); void removeMime( QString name ); QListView *linkList; QListBox *protocolList; QListBox *mimeList; QPushButton *btnAddProtocol; QPushButton *btnRemoveProtocol; QPushButton *btnAddMime; QPushButton *btnRemoveMime; static QString defaultProtocols; static QString defaultIsoMimes; static QString defaultKrarcMimes; }; #endif /* __KgProtocols_H__ */ --- NEW FILE: kgprotocols.cpp --- /*************************************************************************** KgProtocols.cpp - description ------------------- copyright : (C) 2004 by Csaba Karai e-mail : kru...@us... web site : http://krusader.sourceforge.net --------------------------------------------------------------------------- Description *************************************************************************** A db dD d8888b. db db .d8888. .d8b. d8888b. d88888b d8888b. 88 ,8P' 88 `8D 88 88 88' YP d8' `8b 88 `8D 88' 88 `8D 88,8P 88oobY' 88 88 `8bo. 88ooo88 88 88 88ooooo 88oobY' 88`8b 88`8b 88 88 `Y8b. 88~~~88 88 88 88~~~~~ 88`8b 88 `88. 88 `88. 88b d88 db 8D 88 88 88 .8D 88. 88 `88. YP YD 88 YD ~Y8888P' `8888Y' YP YP Y8888D' Y88888P 88 YD S o u r c e F i l e *************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "kgprotocols.h" #include "../krusader.h" #include <klocale.h> #include <kprotocolinfo.h> #include <kmimetype.h> #include <qvbox.h> #include <qheader.h> #include <kiconloader.h> #include <qtooltip.h> QString KgProtocols::defaultProtocols = "krarc,iso"; QString KgProtocols::defaultIsoMimes = "application/x-iso"; QString KgProtocols::defaultKrarcMimes = "application/x-arj,application/x-bzip2," "application/x-cpio,application/x-gzip," "application/x-lha,application/x-rar," "application/x-rpm,application/x-tar," "application/x-tarz,application/x-tbz," "application/x-tgz,application/x-zip"; KgProtocols::KgProtocols( bool first, QWidget* parent, const char* name ) : KonfiguratorPage( first, parent, name ) { QGridLayout *KgProtocolsLayout = new QGridLayout( parent ); KgProtocolsLayout->setSpacing( 6 ); KgProtocolsLayout->setMargin( 11 ); // -------------------------- LINK VIEW ---------------------------------- QGroupBox *linkGrp = createFrame( i18n( "Links" ), parent, "linkGrp" ); QGridLayout *linkGrid = createGridLayout( linkGrp->layout() ); linkList = new QListView( linkGrp, "linkList" ); linkList->addColumn( i18n( "Defined Links" ) ); linkList->header()->setStretchEnabled( true, 0 ); linkList->setRootIsDecorated( true ); linkGrid->addWidget( linkList, 0, 0 ); KgProtocolsLayout->addMultiCellWidget( linkGrp, 0 ,1, 0, 0 ); // -------------------------- BUTTONS ---------------------------------- QVBox *vbox1 = new QVBox( parent, "vbox1" ) ; addSpacer( vbox1 ); btnAddProtocol = new QPushButton( vbox1, "btnAddProtocolButton" ); btnAddProtocol->setPixmap( krLoader->loadIcon( "1leftarrow", KIcon::Small ) ); QToolTip::add( btnAddProtocol, i18n( "Add protocol to the link list" ) ); btnRemoveProtocol = new QPushButton( vbox1, "btnRemoveProtocolButton" ); btnRemoveProtocol->setPixmap( krLoader->loadIcon( "1rightarrow", KIcon::Small ) ); QToolTip::add( btnRemoveProtocol, i18n( "Remove protocol from the link list" ) ); addSpacer( vbox1 ); KgProtocolsLayout->addWidget( vbox1, 0 ,1 ); QVBox *vbox2 = new QVBox( parent, "vbox2" ) ; addSpacer( vbox2 ); btnAddMime = new QPushButton( vbox2, "btnAddMimeButton" ); btnAddMime->setPixmap( krLoader->loadIcon( "1leftarrow", KIcon::Small ) ); QToolTip::add( btnAddMime, i18n( "Add mime to the selected protocol on the link list" ) ); btnRemoveMime = new QPushButton( vbox2, "btnRemoveMimeButton" ); btnRemoveMime->setPixmap( krLoader->loadIcon( "1rightarrow", KIcon::Small ) ); QToolTip::add( btnAddMime, i18n( "Remove mime from the link list" ) ); addSpacer( vbox2 ); KgProtocolsLayout->addWidget( vbox2, 1 ,1 ); // -------------------------- PROTOCOLS LISTBOX ---------------------------------- QGroupBox *protocolGrp = createFrame( i18n( "Protocols" ), parent, "protocolGrp" ); QGridLayout *protocolGrid = createGridLayout( protocolGrp->layout() ); protocolList = new QListBox( protocolGrp, "protocolList" ); loadListCapableProtocols(); protocolGrid->addWidget( protocolList, 0, 0 ); KgProtocolsLayout->addWidget( protocolGrp, 0 ,2 ); // -------------------------- MIMES LISTBOX ---------------------------------- QGroupBox *mimeGrp = createFrame( i18n( "Mimes" ), parent, "mimeGrp" ); QGridLayout *mimeGrid = createGridLayout( mimeGrp->layout() ); mimeList = new QListBox( mimeGrp, "protocolList" ); loadMimes(); mimeGrid->addWidget( mimeList, 0, 0 ); KgProtocolsLayout->addWidget( mimeGrp, 1 ,2 ); // -------------------------- CONNECT TABLE ---------------------------------- connect( protocolList, SIGNAL( selectionChanged() ), this, SLOT( slotDisableButtons() ) ); connect( linkList, SIGNAL( selectionChanged() ), this, SLOT( slotDisableButtons() ) ); connect( mimeList, SIGNAL( selectionChanged() ), this, SLOT( slotDisableButtons() ) ); connect( linkList, SIGNAL( currentChanged( QListViewItem *) ), this, SLOT( slotDisableButtons() ) ); connect( btnAddProtocol, SIGNAL( clicked() ) , this, SLOT( slotAddProtocol() ) ); connect( btnRemoveProtocol, SIGNAL( clicked() ) , this, SLOT( slotRemoveProtocol() ) ); connect( btnAddMime, SIGNAL( clicked() ) , this, SLOT( slotAddMime() ) ); connect( btnRemoveMime, SIGNAL( clicked() ) , this, SLOT( slotRemoveMime() ) ); loadInitialValues(); slotDisableButtons(); } QWidget* KgProtocols::addSpacer( QWidget *parent, const char *widgetName ) { QWidget *widget = new QWidget( parent, widgetName ); QVBoxLayout *vboxlayout = new QVBoxLayout( widget ); QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding ); vboxlayout->addItem( spacer ); return widget; } void KgProtocols::loadListCapableProtocols() { QStringList protocols = KProtocolInfo::protocols(); protocols.sort(); for ( QStringList::Iterator it = protocols.begin(); it != protocols.end();) { if( !KProtocolInfo::supportsListing( *it ) ) { it = protocols.remove( it ); continue; } ++it; } protocolList->insertStringList( protocols ); } void KgProtocols::loadMimes() { KMimeType::List mimes = KMimeType::allMimeTypes(); for( QValueListIterator<KMimeType::Ptr> it = mimes.begin(); it != mimes.end(); it++ ) mimeList->insertItem( (*it)->name() ); mimeList->sort(); } void KgProtocols::slotDisableButtons() { btnAddProtocol->setEnabled( protocolList->selectedItem() != 0 ); QListViewItem *listViewItem = linkList->currentItem(); bool isProtocolSelected = ( listViewItem == 0 ? false : listViewItem->parent() == 0 ); btnRemoveProtocol->setEnabled( isProtocolSelected ); btnAddMime->setEnabled( listViewItem != 0 && mimeList->selectedItem() != 0 ); btnRemoveMime->setEnabled( listViewItem == 0 ? false : listViewItem->parent() != 0 ); if( linkList->currentItem() == 0 && linkList->firstChild() != 0 ) linkList->setCurrentItem( linkList->firstChild() ); if( linkList->selectedItem() == 0 && linkList->currentItem() != 0 ) linkList->setSelected( linkList->currentItem(), true ); } void KgProtocols::slotAddProtocol() { QListBoxItem *item = protocolList->selectedItem(); if( item ) { addProtocol( item->text(), true ); slotDisableButtons(); emit sigChanged(); } } void KgProtocols::addProtocol( QString name, bool changeCurrent ) { QListBoxItem *item = protocolList->findItem( name, ExactMatch ); if( item ) { protocolList->removeItem( protocolList->index( item ) ); QListViewItem *listViewItem = new QListViewItem( linkList, name ); listViewItem->setPixmap( 0, krLoader->loadIcon( "exec", KIcon::Small ) ); if( changeCurrent ) linkList->setCurrentItem( listViewItem ); } } void KgProtocols::slotRemoveProtocol() { QListViewItem *item = linkList->currentItem(); if( item ) { removeProtocol( item->text( 0 ) ); slotDisableButtons(); emit sigChanged(); } } void KgProtocols::removeProtocol( QString name ) { QListViewItem *item = linkList->findItem( name, 0 ); if( item ) { while( item->childCount() != 0 ) removeMime( item->firstChild()->text( 0 ) ); linkList->takeItem( item ); protocolList->insertItem( name ); protocolList->sort(); } } void KgProtocols::slotAddMime() { QListBoxItem *item = mimeList->selectedItem(); if( item && linkList->currentItem() != 0 ) { QListViewItem *itemToAdd = linkList->currentItem(); if( itemToAdd->parent() ) itemToAdd = itemToAdd->parent(); addMime( item->text(), itemToAdd->text( 0 ) ); slotDisableButtons(); emit sigChanged(); } } void KgProtocols::addMime( QString name, QString protocol ) { QListBoxItem *item = mimeList->findItem( name, ExactMatch ); QListViewItem *currentListItem = linkList->findItem( protocol, 0 ); if( item && currentListItem && currentListItem->parent() == 0 ) { mimeList->removeItem( mimeList->index( item ) ); QListViewItem *listViewItem = new QListViewItem( currentListItem, name ); listViewItem->setPixmap( 0, krLoader->loadIcon( "mime", KIcon::Small ) ); currentListItem->setOpen( true ); } } void KgProtocols::slotRemoveMime() { QListViewItem *item = linkList->currentItem(); if( item ) { removeMime( item->text( 0 ) ); slotDisableButtons(); emit sigChanged(); } } void KgProtocols::removeMime( QString name ) { QListViewItem *currentMimeItem = linkList->findItem( name, 0 ); if( currentMimeItem && currentMimeItem->parent() != 0 ) { mimeList->insertItem( currentMimeItem->text( 0 ) ); mimeList->sort(); currentMimeItem->parent()->takeItem( currentMimeItem ); } } void KgProtocols::loadInitialValues() { while( linkList->childCount() != 0 ) removeProtocol( linkList->firstChild()->text( 0 ) ); krConfig->setGroup( "Protocols" ); QStringList protList = krConfig->readListEntry( "Handled Protocols" ); for( QStringList::Iterator it = protList.begin(); it != protList.end(); it++ ) { addProtocol( *it ); QStringList mimes = krConfig->readListEntry( QString( "Mimes For %1" ).arg( *it ) ); for( QStringList::Iterator it2 = mimes.begin(); it2 != mimes.end(); it2++ ) addMime( *it2, *it ); } if( linkList->firstChild() != 0 ) linkList->setCurrentItem( linkList->firstChild() ); slotDisableButtons(); } void KgProtocols::setDefaults() { while( linkList->childCount() != 0 ) removeProtocol( linkList->firstChild()->text( 0 ) ); addProtocol( "iso" ); addMime( "application/x-iso", "iso" ); addProtocol( "krarc" ); QStringList krarcMimes = QStringList::split( ',', defaultKrarcMimes ); for( QStringList::Iterator it = krarcMimes.begin(); it != krarcMimes.end(); it++ ) addMime( *it, "krarc" ); slotDisableButtons(); if( isChanged() ) emit sigChanged(); } bool KgProtocols::isChanged() { krConfig->setGroup( "Protocols" ); QStringList protList = krConfig->readListEntry( "Handled Protocols" ); if( (int)protList.count() != linkList->childCount() ) return true; QListViewItem *item = linkList->firstChild(); while( item ) { if( !protList.contains( item->text( 0 ) ) ) return true; QStringList mimes = krConfig->readListEntry( QString( "Mimes For %1" ).arg( item->text( 0 ) ) ); if( (int)mimes.count() != item->childCount() ) return true; QListViewItem *childs = item->firstChild(); while( childs ) { if( !mimes.contains( childs->text( 0 ) ) ) return true; childs = childs->nextSibling(); } item = item->nextSibling(); } return false; } bool KgProtocols::apply() { krConfig->setGroup( "Protocols" ); QStringList protocolList; QListViewItem *item = linkList->firstChild(); while( item ) { protocolList.append( item->text( 0 ) ); QStringList mimes; QListViewItem *childs = item->firstChild(); while( childs ) { mimes.append( childs->text( 0 ) ); childs = childs->nextSibling(); } krConfig->writeEntry( QString( "Mimes For %1" ).arg( item->text( 0 ) ), mimes ); item = item->nextSibling(); } krConfig->writeEntry( "Handled Protocols", protocolList ); krConfig->sync(); emit sigChanged(); return false; } void KgProtocols::init() { if( !krConfig->groupList().contains( "Protocols" ) ) { krConfig->setGroup( "Protocols" ); krConfig->writeEntry( "Handled Protocols", defaultProtocols ); krConfig->writeEntry( "Mimes For iso", defaultIsoMimes ); krConfig->writeEntry( "Mimes For krarc", defaultKrarcMimes ); } } #include "kgprotocols.moc" Index: Makefile.am =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 23 Jul 2004 00:03:18 -0000 1.5 --- Makefile.am 25 Aug 2004 18:30:57 -0000 1.6 *************** *** 6,12 **** libKonfigurator_a_METASOURCES = AUTO ! libKonfigurator_a_SOURCES = kgcolors.cpp kgdependencies.cpp \ ! konfiguratorpage.cpp konfiguratoritems.cpp konfigurator.cpp kgwelcome.cpp kgstartup.cpp \ ! kglookfeel.cpp kggeneral.cpp kgarchives.cpp kgadvanced.cpp kguseractions.cpp --- 6,10 ---- libKonfigurator_a_METASOURCES = AUTO ! libKonfigurator_a_SOURCES = kgcolors.cpp kgdependencies.cpp konfiguratorpage.cpp konfiguratoritems.cpp konfigurator.cpp kgwelcome.cpp kgstartup.cpp kglookfeel.cpp kggeneral.cpp kgarchives.cpp kgadvanced.cpp kguseractions.cpp kgprotocols.cpp Index: konfigurator.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/konfigurator.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** konfigurator.cpp 27 Jul 2004 22:39:08 -0000 1.13 --- konfigurator.cpp 25 Aug 2004 18:30:57 -0000 1.14 *************** *** 54,57 **** --- 54,58 ---- #include "kgcolors.h" #include "kguseractions.h" + #include "kgprotocols.h" Konfigurator::Konfigurator(bool f) : KDialogBase(0,0,true,"Konfigurator", *************** *** 112,115 **** --- 113,119 ---- newContent(new KgUserActions(firstTime, widget->addPage(i18n("User Actions"),i18n("Configure you personal actions"), QPixmap(krLoader->loadIcon("kr_useractions",KIcon::Desktop,32))))); + // protocols + newContent(new KgProtocols(firstTime, widget->addPage(i18n("Protocols"), + i18n("Link mimes to protocols"), QPixmap(krLoader->loadIcon("exec",KIcon::Desktop,32))))); widget->showPage( widget->pageIndex( firstPage ) ); |
From: Karai C. <ck...@us...> - 2004-08-25 18:31:06
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30183/krusader_kde3/krusader Modified Files: krusader.cpp Log Message: ADDED: linking mimes and protocols -> konfigurator side Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.81 retrieving revision 1.82 diff -C2 -d -r1.81 -r1.82 *** krusader.cpp 20 Aug 2004 14:46:13 -0000 1.81 --- krusader.cpp 25 Aug 2004 18:30:56 -0000 1.82 *************** *** 68,71 **** --- 68,72 ---- #include "Panel/panelfunc.h" #include "Konfigurator/konfigurator.h" + #include "Konfigurator/kgprotocols.h" #include "MountMan/kmountman.h" #include "Panel/panelpopup.h" *************** *** 193,196 **** --- 194,200 ---- KRpermHandler::init(); + // init the protocol handler + KgProtocols::init(); + // create the main view and set it mainView = new KrusaderView( this ); |
From: Dirk E. <des...@us...> - 2004-08-25 17:55:59
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23397/po Modified Files: de.po krusader.pot Log Message: krusader-1.50-cvs Index: krusader.pot =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/krusader.pot,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** krusader.pot 20 Aug 2004 14:49:38 -0000 1.18 --- krusader.pot 25 Aug 2004 17:55:43 -0000 1.19 *************** *** 11,15 **** "Project-Id-Version: krusader-1.50-cvs\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2004-08-20 16:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" --- 11,15 ---- "Project-Id-Version: krusader-1.50-cvs\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2004-08-25 19:50+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" *************** *** 550,582 **** msgstr "" ! #: VFS/krarchandler.cpp:144 msgid "Counting files in archive" msgstr "" ! #: VFS/krarchandler.cpp:167 VFS/krarchandler.cpp:223 msgid "Failed to unpack" msgstr "" ! #: VFS/krarchandler.cpp:206 msgid "Unpacking File(s)" msgstr "" ! #: VFS/krarchandler.cpp:256 msgid "Testing Archive" msgstr "" ! #: VFS/krarchandler.cpp:290 msgid "Packing File(s)" msgstr "" ! #: VFS/krarchandler.cpp:306 VFS/krarchandler.cpp:313 msgid "Failed to pack: " msgstr "" ! #: VFS/krarchandler.cpp:360 msgid "Password Needed" msgstr "" ! #: VFS/krarchandler.cpp:361 msgid "This archive is encrypted, please supply the password:" msgstr "" --- 550,582 ---- msgstr "" ! #: VFS/krarchandler.cpp:150 msgid "Counting files in archive" msgstr "" ! #: VFS/krarchandler.cpp:173 VFS/krarchandler.cpp:232 msgid "Failed to unpack" msgstr "" ! #: VFS/krarchandler.cpp:215 msgid "Unpacking File(s)" msgstr "" ! #: VFS/krarchandler.cpp:266 msgid "Testing Archive" msgstr "" ! #: VFS/krarchandler.cpp:307 msgid "Packing File(s)" msgstr "" ! #: VFS/krarchandler.cpp:323 VFS/krarchandler.cpp:330 msgid "Failed to pack: " msgstr "" ! #: VFS/krarchandler.cpp:377 msgid "Password Needed" msgstr "" ! #: VFS/krarchandler.cpp:378 msgid "This archive is encrypted, please supply the password:" msgstr "" *************** *** 747,763 **** msgstr "" ! #: Panel/krdetailedviewitem.cpp:361 msgid "Climb up the directory tree" msgstr "" ! #: Panel/krdetailedviewitem.cpp:373 msgid "Symbolic Link" msgstr "" ! #: Panel/krdetailedviewitem.cpp:374 msgid "(broken link !)" msgstr "" ! #: Panel/krdetailedviewitem.cpp:375 msgid "%1 (Link)" msgstr "" --- 747,763 ---- msgstr "" ! #: Panel/krdetailedviewitem.cpp:347 msgid "Climb up the directory tree" msgstr "" ! #: Panel/krdetailedviewitem.cpp:359 msgid "Symbolic Link" msgstr "" ! #: Panel/krdetailedviewitem.cpp:360 msgid "(broken link !)" msgstr "" ! #: Panel/krdetailedviewitem.cpp:361 msgid "%1 (Link)" msgstr "" *************** *** 924,928 **** msgstr "" ! #: Panel/listpanel.cpp:759 Panel/krdetailedview.cpp:1026 msgid "Rename" msgstr "" --- 924,928 ---- msgstr "" ! #: Panel/listpanel.cpp:759 Panel/krdetailedview.cpp:980 msgid "Rename" msgstr "" *************** *** 979,983 **** msgstr "" ! #: Panel/krdetailedview.cpp:89 Search/krsearchdialogbase.cpp:729 #: MountMan/kmountmangui.cpp:117 Synchronizer/synchronizergui.cpp:1361 #: Synchronizer/synchronizergui.cpp:1367 --- 979,983 ---- msgstr "" ! #: Panel/krdetailedview.cpp:88 Search/krsearchdialogbase.cpp:729 #: MountMan/kmountmangui.cpp:117 Synchronizer/synchronizergui.cpp:1361 #: Synchronizer/synchronizergui.cpp:1367 *************** *** 985,997 **** msgstr "" ! #: Panel/krdetailedview.cpp:90 msgid "Ext" msgstr "" ! #: Panel/krdetailedview.cpp:91 MountMan/kmountmangui.cpp:118 msgid "Type" msgstr "" ! #: Panel/krdetailedview.cpp:92 Search/krsearchdialogbase.cpp:420 #: Search/krsearchdialogbase.cpp:731 Synchronizer/synchronizergui.cpp:1362 #: Synchronizer/synchronizergui.cpp:1366 --- 985,997 ---- msgstr "" ! #: Panel/krdetailedview.cpp:89 msgid "Ext" msgstr "" ! #: Panel/krdetailedview.cpp:90 MountMan/kmountmangui.cpp:118 msgid "Type" msgstr "" ! #: Panel/krdetailedview.cpp:91 Search/krsearchdialogbase.cpp:420 #: Search/krsearchdialogbase.cpp:731 Synchronizer/synchronizergui.cpp:1362 #: Synchronizer/synchronizergui.cpp:1366 *************** *** 999,1027 **** msgstr "" ! #: Panel/krdetailedview.cpp:93 msgid "Modified" msgstr "" ! #: Panel/krdetailedview.cpp:94 msgid "Perms" msgstr "" ! #: Panel/krdetailedview.cpp:95 msgid "rwx" msgstr "" ! #: Panel/krdetailedview.cpp:96 msgid "Owner" msgstr "" ! #: Panel/krdetailedview.cpp:97 msgid "Group" msgstr "" ! #: Panel/krdetailedview.cpp:1026 msgid "Rename " msgstr "" ! #: Panel/krdetailedview.cpp:1026 msgid " to:" msgstr "" --- 999,1027 ---- msgstr "" ! #: Panel/krdetailedview.cpp:92 msgid "Modified" msgstr "" ! #: Panel/krdetailedview.cpp:93 msgid "Perms" msgstr "" ! #: Panel/krdetailedview.cpp:94 msgid "rwx" msgstr "" ! #: Panel/krdetailedview.cpp:95 msgid "Owner" msgstr "" ! #: Panel/krdetailedview.cpp:96 msgid "Group" msgstr "" ! #: Panel/krdetailedview.cpp:980 msgid "Rename " msgstr "" ! #: Panel/krdetailedview.cpp:980 msgid " to:" msgstr "" *************** *** 1205,1211 **** msgstr "" #: Panel/panelfunc.cpp:502 #, c-format ! msgid " %d files ?" msgstr "" --- 1205,1215 ---- msgstr "" + #: Panel/panelfunc.cpp:500 + msgid " this item ?" + msgstr "" + #: Panel/panelfunc.cpp:502 #, c-format ! msgid " these %d items ?" msgstr "" *************** *** 1222,1226 **** msgstr "" ! #: Panel/panelfunc.cpp:513 msgid "Are you sure you want to " msgstr "" --- 1226,1230 ---- msgstr "" ! #: Panel/panelfunc.cpp:514 msgid "Are you sure you want to " msgstr "" *************** *** 1321,1325 **** #: Locate/locate.cpp:109 Konfigurator/kggeneral.cpp:132 ! #: Konfigurator/kgarchives.cpp:137 msgid "Results" msgstr "" --- 1325,1329 ---- #: Locate/locate.cpp:109 Konfigurator/kggeneral.cpp:132 ! #: Konfigurator/kgarchives.cpp:148 msgid "Results" msgstr "" *************** *** 1683,1732 **** msgstr "" ! #: Search/krsearchdialog.cpp:138 Search/krsearchdialog.cpp:308 msgid "All Files" msgstr "" ! #: Search/krsearchdialog.cpp:139 Search/krsearchmod.cpp:91 #: Konfigurator/konfigurator.cpp:106 msgid "Archives" msgstr "" ! #: Search/krsearchdialog.cpp:140 Search/krsearchmod.cpp:93 msgid "Directories" msgstr "" ! #: Search/krsearchdialog.cpp:141 Search/krsearchmod.cpp:94 msgid "Image Files" msgstr "" ! #: Search/krsearchdialog.cpp:142 Search/krsearchmod.cpp:95 msgid "Text Files" msgstr "" ! #: Search/krsearchdialog.cpp:143 Search/krsearchmod.cpp:96 msgid "Video Files" msgstr "" ! #: Search/krsearchdialog.cpp:144 Search/krsearchmod.cpp:97 msgid "Audio Files" msgstr "" ! #: Search/krsearchdialog.cpp:280 msgid "Found %1 matches." msgstr "" ! #: Search/krsearchdialog.cpp:335 msgid "No search criteria entered !" msgstr "" ! #: Search/krsearchdialog.cpp:341 msgid "Please specify a location to search in." msgstr "" ! #: Search/krsearchdialog.cpp:370 msgid "Specified sizes are inconsistent !" msgstr "" ! #: Search/krsearchdialog.cpp:371 msgid "" "Please re-enter the values, so that the leftmost size will\n" --- 1687,1736 ---- msgstr "" ! #: Search/krsearchdialog.cpp:139 Search/krsearchdialog.cpp:309 msgid "All Files" msgstr "" ! #: Search/krsearchdialog.cpp:140 Search/krsearchmod.cpp:91 #: Konfigurator/konfigurator.cpp:106 msgid "Archives" msgstr "" ! #: Search/krsearchdialog.cpp:141 Search/krsearchmod.cpp:93 msgid "Directories" msgstr "" ! #: Search/krsearchdialog.cpp:142 Search/krsearchmod.cpp:94 msgid "Image Files" msgstr "" ! #: Search/krsearchdialog.cpp:143 Search/krsearchmod.cpp:95 msgid "Text Files" msgstr "" ! #: Search/krsearchdialog.cpp:144 Search/krsearchmod.cpp:96 msgid "Video Files" msgstr "" ! #: Search/krsearchdialog.cpp:145 Search/krsearchmod.cpp:97 msgid "Audio Files" msgstr "" ! #: Search/krsearchdialog.cpp:281 msgid "Found %1 matches." msgstr "" ! #: Search/krsearchdialog.cpp:336 msgid "No search criteria entered !" msgstr "" ! #: Search/krsearchdialog.cpp:342 msgid "Please specify a location to search in." msgstr "" ! #: Search/krsearchdialog.cpp:371 msgid "Specified sizes are inconsistent !" msgstr "" ! #: Search/krsearchdialog.cpp:372 msgid "" "Please re-enter the values, so that the leftmost size will\n" *************** *** 1734,1742 **** msgstr "" ! #: Search/krsearchdialog.cpp:390 Search/krsearchdialog.cpp:441 msgid "Dates are inconsistent !" msgstr "" ! #: Search/krsearchdialog.cpp:391 msgid "" "The date on the left side is later than the date on the right.\n" --- 1738,1746 ---- msgstr "" ! #: Search/krsearchdialog.cpp:391 Search/krsearchdialog.cpp:442 msgid "Dates are inconsistent !" msgstr "" ! #: Search/krsearchdialog.cpp:392 msgid "" "The date on the left side is later than the date on the right.\n" *************** *** 1745,1749 **** msgstr "" ! #: Search/krsearchdialog.cpp:442 msgid "" "The date on the top is later than the date on the bottom.\n" --- 1749,1753 ---- msgstr "" ! #: Search/krsearchdialog.cpp:443 msgid "" "The date on the top is later than the date on the bottom.\n" *************** *** 1752,1756 **** msgstr "" ! #: Search/krsearchdialog.cpp:471 msgid "" "Since you chose to also search in archives, note the following limitations:\n" --- 1756,1760 ---- msgstr "" ! #: Search/krsearchdialog.cpp:472 msgid "" "Since you chose to also search in archives, note the following limitations:\n" *************** *** 1761,1781 **** msgstr "" ! #: Search/krsearchdialog.cpp:490 Search/krsearchdialogbase.cpp:716 msgid "Found 0 matches." msgstr "" ! #: Search/krsearchdialog.cpp:525 msgid "Finished searching." msgstr "" ! #: Search/krsearchdialog.cpp:671 msgid "Krusader Search" msgstr "" ! #: Search/krsearchdialog.cpp:673 msgid "View File (F3)" msgstr "" ! #: Search/krsearchdialog.cpp:674 msgid "Edit File (F4)" msgstr "" --- 1765,1785 ---- msgstr "" ! #: Search/krsearchdialog.cpp:491 Search/krsearchdialogbase.cpp:716 msgid "Found 0 matches." msgstr "" ! #: Search/krsearchdialog.cpp:526 msgid "Finished searching." msgstr "" ! #: Search/krsearchdialog.cpp:672 msgid "Krusader Search" msgstr "" ! #: Search/krsearchdialog.cpp:674 msgid "View File (F3)" msgstr "" ! #: Search/krsearchdialog.cpp:675 msgid "Edit File (F4)" msgstr "" *************** *** 2259,2263 **** msgstr "" ! #: Dialogs/packgui.cpp:88 msgid "Please select a directory" msgstr "" --- 2263,2267 ---- msgstr "" ! #: Dialogs/packgui.cpp:90 msgid "Please select a directory" msgstr "" *************** *** 2912,2920 **** msgstr "" ! #: Konfigurator/kgdependencies.cpp:117 msgid "The %1 path is incorrect, no valid path found." msgstr "" ! #: Konfigurator/kgdependencies.cpp:120 msgid "The %1 path is incorrect, %2 used instead." msgstr "" --- 2916,2924 ---- msgstr "" ! #: Konfigurator/kgdependencies.cpp:119 msgid "The %1 path is incorrect, no valid path found." msgstr "" ! #: Konfigurator/kgdependencies.cpp:122 msgid "The %1 path is incorrect, %2 used instead." msgstr "" *************** *** 3017,3021 **** msgstr "" ! #: Konfigurator/kggeneral.cpp:131 Konfigurator/kgarchives.cpp:135 msgid "" "\n" --- 3021,3025 ---- msgstr "" ! #: Konfigurator/kggeneral.cpp:131 Konfigurator/kgarchives.cpp:146 msgid "" "\n" *************** *** 3292,3296 **** msgstr "" ! #: Konfigurator/kgadvanced.cpp:86 Konfigurator/kgarchives.cpp:87 msgid "Fine-Tuning" msgstr "" --- 3296,3300 ---- msgstr "" ! #: Konfigurator/kgadvanced.cpp:86 Konfigurator/kgarchives.cpp:88 msgid "Fine-Tuning" msgstr "" *************** *** 3611,3615 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:73 msgid "" "The archives that are \"greyed-out\" were unavaible on your\n" --- 3615,3623 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:69 ! msgid "Lha" ! msgstr "" ! ! #: Konfigurator/kgarchives.cpp:74 msgid "" "The archives that are \"greyed-out\" were unavaible on your\n" *************** *** 3618,3644 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:78 msgid "Auto Configure" msgstr "" ! #: Konfigurator/kgarchives.cpp:93 msgid "Test archive when finished packing" msgstr "" ! #: Konfigurator/kgarchives.cpp:93 msgid "" "If checked, Krusader will test the archive's intergrity after packing it." msgstr "" ! #: Konfigurator/kgarchives.cpp:94 msgid "Test archive before unpacking" msgstr "" ! #: Konfigurator/kgarchives.cpp:94 msgid "" "Some corrupted archives might cause a crash, therefore testing is suggested" msgstr "" ! #: Konfigurator/kgarchives.cpp:111 msgid "" "Search results:\n" --- 3626,3652 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:79 msgid "Auto Configure" msgstr "" ! #: Konfigurator/kgarchives.cpp:94 msgid "Test archive when finished packing" msgstr "" ! #: Konfigurator/kgarchives.cpp:94 msgid "" "If checked, Krusader will test the archive's intergrity after packing it." msgstr "" ! #: Konfigurator/kgarchives.cpp:95 msgid "Test archive before unpacking" msgstr "" ! #: Konfigurator/kgarchives.cpp:95 msgid "" "Some corrupted archives might cause a crash, therefore testing is suggested" msgstr "" ! #: Konfigurator/kgarchives.cpp:112 msgid "" "Search results:\n" *************** *** 3646,3654 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:112 msgid "tar: found, packing and unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:113 msgid "" "tar: NOT found, packing and unpacking DISABLED.\n" --- 3654,3662 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:113 msgid "tar: found, packing and unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:114 msgid "" "tar: NOT found, packing and unpacking DISABLED.\n" *************** *** 3656,3664 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:114 msgid "gzip: found, packing and unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:115 msgid "" "gzip: NOT found, packing and unpacking DISABLED.\n" --- 3664,3672 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:115 msgid "gzip: found, packing and unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:116 msgid "" "gzip: NOT found, packing and unpacking DISABLED.\n" *************** *** 3666,3674 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:116 msgid "bzip2: found, packing and unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:117 msgid "" "bzip2: NOT found, packing and unpacking DISABLED.\n" --- 3674,3682 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:117 msgid "bzip2: found, packing and unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:118 msgid "" "bzip2: NOT found, packing and unpacking DISABLED.\n" *************** *** 3676,3684 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:118 msgid "unzip: found, unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:119 msgid "" "unzip: NOT found, unpacking DISABLED.\n" --- 3684,3692 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:119 msgid "unzip: found, unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:120 msgid "" "unzip: NOT found, unpacking DISABLED.\n" *************** *** 3686,3694 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:120 msgid "zip: found, packing enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:121 msgid "" "zip: NOT found, packing DISABLED.\n" --- 3694,3702 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:121 msgid "zip: found, packing enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:122 msgid "" "zip: NOT found, packing DISABLED.\n" *************** *** 3696,3704 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:122 msgid "rpm: found, unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:123 msgid "" "rpm found but cpio NOT found: unpacking DISABLED.\n" --- 3704,3722 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:123 ! msgid "lha: found, packing and unpacking enabled.\n" ! msgstr "" ! ! #: Konfigurator/kgarchives.cpp:124 ! msgid "" ! "lha: NOT found, packing and unpacking DISABLED.\n" ! "==> lha can be obtained at www.gnu.org\n" ! msgstr "" ! ! #: Konfigurator/kgarchives.cpp:125 msgid "rpm: found, unpacking enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:126 msgid "" "rpm found but cpio NOT found: unpacking DISABLED.\n" *************** *** 3706,3710 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:124 msgid "" "rpm: NOT found, unpacking is DISABLED.\n" --- 3724,3728 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:127 msgid "" "rpm: NOT found, unpacking is DISABLED.\n" *************** *** 3712,3720 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:125 msgid "unrar: found, unpacking is enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:126 msgid "" "unrar: NOT found, unpacking is DISABLED.\n" --- 3730,3742 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:128 msgid "unrar: found, unpacking is enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:130 ! msgid "unrar: NOT found.\n" ! msgstr "" ! ! #: Konfigurator/kgarchives.cpp:131 msgid "" "unrar: NOT found, unpacking is DISABLED.\n" *************** *** 3722,3730 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:127 ! msgid "rar: found, packing is enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:128 msgid "" "rar: NOT found, packing is DISABLED.\n" --- 3744,3752 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:133 ! msgid "rar: found, packing and unpacking is enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:134 msgid "" "rar: NOT found, packing is DISABLED.\n" *************** *** 3732,3740 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:129 msgid "unarj: found, unpacking is enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:130 msgid "" "unarj: NOT found, unpacking is DISABLED.\n" --- 3754,3766 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:135 msgid "unarj: found, unpacking is enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:137 ! msgid "unarj: NOT found.\n" ! msgstr "" ! ! #: Konfigurator/kgarchives.cpp:138 msgid "" "unarj: NOT found, unpacking is DISABLED.\n" *************** *** 3742,3750 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:131 msgid "unace: found, unpacking is enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:132 msgid "" "unace: NOT found, unpacking is DISABLED.\n" --- 3768,3786 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:140 ! msgid "arj: found, packing and unpacking is enabled.\n" ! msgstr "" ! ! #: Konfigurator/kgarchives.cpp:141 ! msgid "" ! "arj: NOT found, packing is DISABLED.\n" ! "==> arj can be obtained at www.arjsoft.com\n" ! msgstr "" ! ! #: Konfigurator/kgarchives.cpp:142 msgid "unace: found, unpacking is enabled.\n" msgstr "" ! #: Konfigurator/kgarchives.cpp:143 msgid "" "unace: NOT found, unpacking is DISABLED.\n" *************** *** 3752,3756 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:134 msgid "" "\n" --- 3788,3792 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:145 msgid "" "\n" *************** *** 3758,3762 **** msgstr "" ! #: Konfigurator/kgarchives.cpp:136 msgid "" "\n" --- 3794,3798 ---- msgstr "" ! #: Konfigurator/kgarchives.cpp:147 msgid "" "\n" Index: de.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/de.po,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** de.po 20 Aug 2004 14:49:37 -0000 1.19 --- de.po 25 Aug 2004 17:55:43 -0000 1.20 *************** *** 11,16 **** "Project-Id-Version: krusader-1.50-cvs\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2004-08-20 16:13+0200\n" ! "PO-Revision-Date: 2004-08-20 16:38+0200\n" "Last-Translator: Dirk Eschler <des...@us...>\n" "Language-Team: German\n" --- 11,16 ---- "Project-Id-Version: krusader-1.50-cvs\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2004-08-25 19:50+0200\n" ! "PO-Revision-Date: 2004-08-25 19:51+0200\n" "Last-Translator: Dirk Eschler <des...@us...>\n" "Language-Team: German\n" *************** *** 569,601 **** msgstr "Verzeichnis kann nicht angelegt werden. Ãberprüfen Sie Ihre Rechte." ! #: VFS/krarchandler.cpp:144 msgid "Counting files in archive" msgstr "Dateien im Archiv werden gezählt" ! #: VFS/krarchandler.cpp:167 VFS/krarchandler.cpp:223 msgid "Failed to unpack" msgstr "Entpacken fehlgeschlagen" ! #: VFS/krarchandler.cpp:206 msgid "Unpacking File(s)" msgstr "Dateien werden entpackt" ! #: VFS/krarchandler.cpp:256 msgid "Testing Archive" msgstr "Archiv wird getestet" ! #: VFS/krarchandler.cpp:290 msgid "Packing File(s)" msgstr "Dateien werden gepackt" ! #: VFS/krarchandler.cpp:306 VFS/krarchandler.cpp:313 msgid "Failed to pack: " msgstr "Packen fehlgeschlagen: " ! #: VFS/krarchandler.cpp:360 msgid "Password Needed" msgstr "Passwort benötigt" ! #: VFS/krarchandler.cpp:361 msgid "This archive is encrypted, please supply the password:" msgstr "Dieses Archiv ist verschlüsselt, geben Sie bitte das Passwort ein:" --- 569,601 ---- msgstr "Verzeichnis kann nicht angelegt werden. Ãberprüfen Sie Ihre Rechte." ! #: VFS/krarchandler.cpp:150 msgid "Counting files in archive" msgstr "Dateien im Archiv werden gezählt" ! #: VFS/krarchandler.cpp:173 VFS/krarchandler.cpp:232 msgid "Failed to unpack" msgstr "Entpacken fehlgeschlagen" ! #: VFS/krarchandler.cpp:215 msgid "Unpacking File(s)" msgstr "Dateien werden entpackt" ! #: VFS/krarchandler.cpp:266 msgid "Testing Archive" msgstr "Archiv wird getestet" ! #: VFS/krarchandler.cpp:307 msgid "Packing File(s)" msgstr "Dateien werden gepackt" ! #: VFS/krarchandler.cpp:323 VFS/krarchandler.cpp:330 msgid "Failed to pack: " msgstr "Packen fehlgeschlagen: " ! #: VFS/krarchandler.cpp:377 msgid "Password Needed" msgstr "Passwort benötigt" ! #: VFS/krarchandler.cpp:378 msgid "This archive is encrypted, please supply the password:" msgstr "Dieses Archiv ist verschlüsselt, geben Sie bitte das Passwort ein:" *************** *** 768,784 **** msgstr "KrAction" ! #: Panel/krdetailedviewitem.cpp:361 msgid "Climb up the directory tree" msgstr "Ebene hoch im Verzeichnisbaum" ! #: Panel/krdetailedviewitem.cpp:373 msgid "Symbolic Link" msgstr "Symbolische Verknüpfung" ! #: Panel/krdetailedviewitem.cpp:374 msgid "(broken link !)" msgstr "(ungültige Verknüpfung!)" ! #: Panel/krdetailedviewitem.cpp:375 msgid "%1 (Link)" msgstr "%1 (Verknüpfung)" --- 768,784 ---- msgstr "KrAction" ! #: Panel/krdetailedviewitem.cpp:347 msgid "Climb up the directory tree" msgstr "Ebene hoch im Verzeichnisbaum" ! #: Panel/krdetailedviewitem.cpp:359 msgid "Symbolic Link" msgstr "Symbolische Verknüpfung" ! #: Panel/krdetailedviewitem.cpp:360 msgid "(broken link !)" msgstr "(ungültige Verknüpfung!)" ! #: Panel/krdetailedviewitem.cpp:361 msgid "%1 (Link)" msgstr "%1 (Verknüpfung)" *************** *** 956,960 **** msgstr "Ãffnen mit" ! #: Panel/listpanel.cpp:759 Panel/krdetailedview.cpp:1026 msgid "Rename" msgstr "Umbenennen" --- 956,960 ---- msgstr "Ãffnen mit" ! #: Panel/listpanel.cpp:759 Panel/krdetailedview.cpp:980 msgid "Rename" msgstr "Umbenennen" *************** *** 1011,1015 **** msgstr "Kann nicht geöffnet werden " ! #: Panel/krdetailedview.cpp:89 Search/krsearchdialogbase.cpp:729 #: MountMan/kmountmangui.cpp:117 Synchronizer/synchronizergui.cpp:1361 #: Synchronizer/synchronizergui.cpp:1367 --- 1011,1015 ---- msgstr "Kann nicht geöffnet werden " ! #: Panel/krdetailedview.cpp:88 Search/krsearchdialogbase.cpp:729 #: MountMan/kmountmangui.cpp:117 Synchronizer/synchronizergui.cpp:1361 #: Synchronizer/synchronizergui.cpp:1367 *************** *** 1017,1029 **** msgstr "Name" ! #: Panel/krdetailedview.cpp:90 msgid "Ext" msgstr "Erw" ! #: Panel/krdetailedview.cpp:91 MountMan/kmountmangui.cpp:118 msgid "Type" msgstr "Typ" ! #: Panel/krdetailedview.cpp:92 Search/krsearchdialogbase.cpp:420 #: Search/krsearchdialogbase.cpp:731 Synchronizer/synchronizergui.cpp:1362 #: Synchronizer/synchronizergui.cpp:1366 --- 1017,1029 ---- msgstr "Name" ! #: Panel/krdetailedview.cpp:89 msgid "Ext" msgstr "Erw" ! #: Panel/krdetailedview.cpp:90 MountMan/kmountmangui.cpp:118 msgid "Type" msgstr "Typ" ! #: Panel/krdetailedview.cpp:91 Search/krsearchdialogbase.cpp:420 #: Search/krsearchdialogbase.cpp:731 Synchronizer/synchronizergui.cpp:1362 #: Synchronizer/synchronizergui.cpp:1366 *************** *** 1031,1059 **** msgstr "GröÃe" ! #: Panel/krdetailedview.cpp:93 msgid "Modified" msgstr "Geändert" ! #: Panel/krdetailedview.cpp:94 msgid "Perms" msgstr "Berechtigungen" ! #: Panel/krdetailedview.cpp:95 msgid "rwx" msgstr "rwx" ! #: Panel/krdetailedview.cpp:96 msgid "Owner" msgstr "Eigentümer" ! #: Panel/krdetailedview.cpp:97 msgid "Group" msgstr "Gruppe" ! #: Panel/krdetailedview.cpp:1026 msgid "Rename " msgstr "Umbenennen " ! #: Panel/krdetailedview.cpp:1026 msgid " to:" msgstr " nach:" --- 1031,1059 ---- msgstr "GröÃe" ! #: Panel/krdetailedview.cpp:92 msgid "Modified" msgstr "Geändert" ! #: Panel/krdetailedview.cpp:93 msgid "Perms" msgstr "Berechtigungen" ! #: Panel/krdetailedview.cpp:94 msgid "rwx" msgstr "rwx" ! #: Panel/krdetailedview.cpp:95 msgid "Owner" msgstr "Eigentümer" ! #: Panel/krdetailedview.cpp:96 msgid "Group" msgstr "Gruppe" ! #: Panel/krdetailedview.cpp:980 msgid "Rename " msgstr "Umbenennen " ! #: Panel/krdetailedview.cpp:980 msgid " to:" msgstr " nach:" *************** *** 1241,1248 **** msgstr "Sie haben keine Schreib-Berechtigung für dieses Verzeichnis" #: Panel/panelfunc.cpp:502 #, c-format ! msgid " %d files ?" ! msgstr "%d Dateien ?" #: Panel/panelfunc.cpp:506 --- 1241,1252 ---- msgstr "Sie haben keine Schreib-Berechtigung für dieses Verzeichnis" + #: Panel/panelfunc.cpp:500 + msgid " this item ?" + msgstr " dieses Element wirklich löschen?" + #: Panel/panelfunc.cpp:502 #, c-format ! msgid " these %d items ?" ! msgstr " diese %d Elemente wirklich löschen?" #: Panel/panelfunc.cpp:506 *************** *** 1258,1264 **** msgstr " " ! #: Panel/panelfunc.cpp:513 msgid "Are you sure you want to " ! msgstr "Möchten Sie folgenden Eintrag wirklich löschen:" #: Panel/panelfunc.cpp:533 --- 1262,1268 ---- msgstr " " ! #: Panel/panelfunc.cpp:514 msgid "Are you sure you want to " ! msgstr "Möchten Sie " #: Panel/panelfunc.cpp:533 *************** *** 1359,1363 **** #: Locate/locate.cpp:109 Konfigurator/kggeneral.cpp:132 ! #: Konfigurator/kgarchives.cpp:137 msgid "Results" msgstr "Ergebnisse" --- 1363,1367 ---- #: Locate/locate.cpp:109 Konfigurator/kggeneral.cpp:132 ! #: Konfigurator/kgarchives.cpp:148 msgid "Results" msgstr "Ergebnisse" *************** *** 1732,1781 **** "Bitte ein gültiges Datum eingeben (benutzen Sie den Datum-Knopf)." ! #: Search/krsearchdialog.cpp:138 Search/krsearchdialog.cpp:308 msgid "All Files" msgstr "Alle Dateien" ! #: Search/krsearchdialog.cpp:139 Search/krsearchmod.cpp:91 #: Konfigurator/konfigurator.cpp:106 msgid "Archives" msgstr "Archive" ! #: Search/krsearchdialog.cpp:140 Search/krsearchmod.cpp:93 msgid "Directories" msgstr "Verzeichnisse" ! #: Search/krsearchdialog.cpp:141 Search/krsearchmod.cpp:94 msgid "Image Files" msgstr "Bilddateien" ! #: Search/krsearchdialog.cpp:142 Search/krsearchmod.cpp:95 msgid "Text Files" msgstr "Textdateien" ! #: Search/krsearchdialog.cpp:143 Search/krsearchmod.cpp:96 msgid "Video Files" msgstr "Videodateien" ! #: Search/krsearchdialog.cpp:144 Search/krsearchmod.cpp:97 msgid "Audio Files" msgstr "Audiodateien" ! #: Search/krsearchdialog.cpp:280 msgid "Found %1 matches." msgstr "%1 Ãbereinstimmungen gefunden." ! #: Search/krsearchdialog.cpp:335 msgid "No search criteria entered !" msgstr "Kein Suchkriterium eingegeben!" ! #: Search/krsearchdialog.cpp:341 msgid "Please specify a location to search in." msgstr "Bitte geben Sie einen Ort zum Suchen an." ! #: Search/krsearchdialog.cpp:370 msgid "Specified sizes are inconsistent !" msgstr "Die angegebenen GröÃen sind inkonsistent!" ! #: Search/krsearchdialog.cpp:371 msgid "" "Please re-enter the values, so that the leftmost size will\n" --- 1736,1785 ---- "Bitte ein gültiges Datum eingeben (benutzen Sie den Datum-Knopf)." ! #: Search/krsearchdialog.cpp:139 Search/krsearchdialog.cpp:309 msgid "All Files" msgstr "Alle Dateien" ! #: Search/krsearchdialog.cpp:140 Search/krsearchmod.cpp:91 #: Konfigurator/konfigurator.cpp:106 msgid "Archives" msgstr "Archive" ! #: Search/krsearchdialog.cpp:141 Search/krsearchmod.cpp:93 msgid "Directories" msgstr "Verzeichnisse" ! #: Search/krsearchdialog.cpp:142 Search/krsearchmod.cpp:94 msgid "Image Files" msgstr "Bilddateien" ! #: Search/krsearchdialog.cpp:143 Search/krsearchmod.cpp:95 msgid "Text Files" msgstr "Textdateien" ! #: Search/krsearchdialog.cpp:144 Search/krsearchmod.cpp:96 msgid "Video Files" msgstr "Videodateien" ! #: Search/krsearchdialog.cpp:145 Search/krsearchmod.cpp:97 msgid "Audio Files" msgstr "Audiodateien" ! #: Search/krsearchdialog.cpp:281 msgid "Found %1 matches." msgstr "%1 Ãbereinstimmungen gefunden." ! #: Search/krsearchdialog.cpp:336 msgid "No search criteria entered !" msgstr "Kein Suchkriterium eingegeben!" ! #: Search/krsearchdialog.cpp:342 msgid "Please specify a location to search in." msgstr "Bitte geben Sie einen Ort zum Suchen an." ! #: Search/krsearchdialog.cpp:371 msgid "Specified sizes are inconsistent !" msgstr "Die angegebenen GröÃen sind inkonsistent!" ! #: Search/krsearchdialog.cpp:372 msgid "" "Please re-enter the values, so that the leftmost size will\n" *************** *** 1785,1793 **** "(oder gleich) der rechten GröÃe ist." ! #: Search/krsearchdialog.cpp:390 Search/krsearchdialog.cpp:441 msgid "Dates are inconsistent !" msgstr "Die Daten sind inkonsistent!" ! #: Search/krsearchdialog.cpp:391 msgid "" "The date on the left side is later than the date on the right.\n" --- 1789,1797 ---- "(oder gleich) der rechten GröÃe ist." ! #: Search/krsearchdialog.cpp:391 Search/krsearchdialog.cpp:442 msgid "Dates are inconsistent !" msgstr "Die Daten sind inkonsistent!" ! #: Search/krsearchdialog.cpp:392 msgid "" "The date on the left side is later than the date on the right.\n" *************** *** 1799,1803 **** "rechten liegt." ! #: Search/krsearchdialog.cpp:442 msgid "" "The date on the top is later than the date on the bottom.\n" --- 1803,1807 ---- "rechten liegt." ! #: Search/krsearchdialog.cpp:443 msgid "" "The date on the top is later than the date on the bottom.\n" *************** *** 1809,1813 **** "vor dem des Endes liegt." ! #: Search/krsearchdialog.cpp:471 msgid "" "Since you chose to also search in archives, note the following limitations:\n" --- 1813,1817 ---- "vor dem des Endes liegt." ! #: Search/krsearchdialog.cpp:472 msgid "" "Since you chose to also search in archives, note the following limitations:\n" *************** *** 1823,1843 **** "die Archive beinhaltet." ! #: Search/krsearchdialog.cpp:490 Search/krsearchdialogbase.cpp:716 msgid "Found 0 matches." msgstr "Keine Ãbereinstimmungen gefunden." ! #: Search/krsearchdialog.cpp:525 msgid "Finished searching." msgstr "Suche beendet." ! #: Search/krsearchdialog.cpp:671 msgid "Krusader Search" msgstr "Krusader::Suche" ! #: Search/krsearchdialog.cpp:673 msgid "View File (F3)" msgstr "Datei anzeigen (F3)" ! #: Search/krsearchdialog.cpp:674 msgid "Edit File (F4)" msgstr "Datei editieren (F4)" --- 1827,1847 ---- "die Archive beinhaltet." ! #: Search/krsearchdialog.cpp:491 Search/krsearchdialogbase.cpp:716 msgid "Found 0 matches." msgstr "Keine Ãbereinstimmungen gefunden." ! #: Search/krsearchdialog.cpp:526 msgid "Finished searching." msgstr "Suche beendet." ! #: Search/krsearchdialog.cpp:672 msgid "Krusader Search" msgstr "Krusader::Suche" ! #: Search/krsearchdialog.cpp:674 msgid "View File (F3)" msgstr "Datei anzeigen (F3)" ! #: Search/krsearchdialog.cpp:675 msgid "Edit File (F4)" msgstr "Datei editieren (F4)" *************** *** 2344,2348 **** msgstr "%1/s ( %2 verbleibend )" ! #: Dialogs/packgui.cpp:88 msgid "Please select a directory" msgstr "Bitte ein Verzeichnis auswählen" --- 2348,2352 ---- msgstr "%1/s ( %2 verbleibend )" ! #: Dialogs/packgui.cpp:90 msgid "Please select a directory" msgstr "Bitte ein Verzeichnis auswählen" *************** *** 3019,3027 **** msgstr "Packer" ! #: Konfigurator/kgdependencies.cpp:117 msgid "The %1 path is incorrect, no valid path found." msgstr "Der Pfad %1 ist nicht korrekt, es wurde kein gültiger Pfad gefunden." ! #: Konfigurator/kgdependencies.cpp:120 msgid "The %1 path is incorrect, %2 used instead." msgstr "Der Pfad %1 ist nicht korrekt, stattdessen wurde %2 benutzt." --- 3023,3031 ---- msgstr "Packer" ! #: Konfigurator/kgdependencies.cpp:119 msgid "The %1 path is incorrect, no valid path found." msgstr "Der Pfad %1 ist nicht korrekt, es wurde kein gültiger Pfad gefunden." ! #: Konfigurator/kgdependencies.cpp:122 msgid "The %1 path is incorrect, %2 used instead." msgstr "Der Pfad %1 ist nicht korrekt, stattdessen wurde %2 benutzt." *************** *** 3145,3149 **** "Wenn Sie neue Werkzeuge installieren, bitte installieren Sie diese" ! #: Konfigurator/kggeneral.cpp:131 Konfigurator/kgarchives.cpp:135 msgid "" "\n" --- 3149,3153 ---- "Wenn Sie neue Werkzeuge installieren, bitte installieren Sie diese" ! #: Konfigurator/kggeneral.cpp:131 Konfigurator/kgarchives.cpp:146 msgid "" "\n" *************** *** 3426,3430 **** msgstr "Verschieben von Dateien" ! #: Konfigurator/kgadvanced.cpp:86 Konfigurator/kgarchives.cpp:87 msgid "Fine-Tuning" msgstr "Feineinstellungen" --- 3430,3434 ---- msgstr "Verschieben von Dateien" ! #: Konfigurator/kgadvanced.cpp:86 Konfigurator/kgarchives.cpp:88 msgid "Fine-Tuning" msgstr "Feineinstellungen" *************** *** 3748,3752 **** msgstr "ace" ! #: Konfigurator/kgarchives.cpp:73 msgid "" "The archives that are \"greyed-out\" were unavaible on your\n" --- 3752,3760 ---- msgstr "ace" ! #: Konfigurator/kgarchives.cpp:69 ! msgid "Lha" ! msgstr "Lha" ! ! #: Konfigurator/kgarchives.cpp:74 msgid "" "The archives that are \"greyed-out\" were unavaible on your\n" *************** *** 3758,3778 **** "erneut sucht, klicken Sie den 'Automatische Konfiguration'-Knopf." ! #: Konfigurator/kgarchives.cpp:78 msgid "Auto Configure" msgstr "Automatische Konfiguration" ! #: Konfigurator/kgarchives.cpp:93 msgid "Test archive when finished packing" msgstr "Archiv nach dem Packen testen" ! #: Konfigurator/kgarchives.cpp:93 msgid "If checked, Krusader will test the archive's intergrity after packing it." msgstr "Falls ausgewählt, wird Krusader die Archivintegrität nach dem Packen testen." ! #: Konfigurator/kgarchives.cpp:94 msgid "Test archive before unpacking" msgstr "Archiv vor dem Entpacken testen" ! #: Konfigurator/kgarchives.cpp:94 msgid "Some corrupted archives might cause a crash, therefore testing is suggested" msgstr "" --- 3766,3786 ---- "erneut sucht, klicken Sie den 'Automatische Konfiguration'-Knopf." ! #: Konfigurator/kgarchives.cpp:79 msgid "Auto Configure" msgstr "Automatische Konfiguration" ! #: Konfigurator/kgarchives.cpp:94 msgid "Test archive when finished packing" msgstr "Archiv nach dem Packen testen" ! #: Konfigurator/kgarchives.cpp:94 msgid "If checked, Krusader will test the archive's intergrity after packing it." msgstr "Falls ausgewählt, wird Krusader die Archivintegrität nach dem Packen testen." ! #: Konfigurator/kgarchives.cpp:95 msgid "Test archive before unpacking" msgstr "Archiv vor dem Entpacken testen" ! #: Konfigurator/kgarchives.cpp:95 msgid "Some corrupted archives might cause a crash, therefore testing is suggested" msgstr "" *************** *** 3780,3784 **** "Testen zu empfehlen" ! #: Konfigurator/kgarchives.cpp:111 msgid "" "Search results:\n" --- 3788,3792 ---- "Testen zu empfehlen" ! #: Konfigurator/kgarchives.cpp:112 msgid "" "Search results:\n" *************** *** 3788,3796 **** "\n" ! #: Konfigurator/kgarchives.cpp:112 msgid "tar: found, packing and unpacking enabled.\n" msgstr "tar: gefunden, packen und entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:113 msgid "" "tar: NOT found, packing and unpacking DISABLED.\n" --- 3796,3804 ---- "\n" ! #: Konfigurator/kgarchives.cpp:113 msgid "tar: found, packing and unpacking enabled.\n" msgstr "tar: gefunden, packen und entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:114 msgid "" "tar: NOT found, packing and unpacking DISABLED.\n" *************** *** 3800,3808 **** "==> tar kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:114 msgid "gzip: found, packing and unpacking enabled.\n" msgstr "gzip: gefunden, packen und entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:115 msgid "" "gzip: NOT found, packing and unpacking DISABLED.\n" --- 3808,3816 ---- "==> tar kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:115 msgid "gzip: found, packing and unpacking enabled.\n" msgstr "gzip: gefunden, packen und entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:116 msgid "" "gzip: NOT found, packing and unpacking DISABLED.\n" *************** *** 3812,3820 **** "==> gzip kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:116 msgid "bzip2: found, packing and unpacking enabled.\n" msgstr "bzip2: gefunden, packen und entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:117 msgid "" "bzip2: NOT found, packing and unpacking DISABLED.\n" --- 3820,3828 ---- "==> gzip kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:117 msgid "bzip2: found, packing and unpacking enabled.\n" msgstr "bzip2: gefunden, packen und entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:118 msgid "" "bzip2: NOT found, packing and unpacking DISABLED.\n" *************** *** 3824,3832 **** "==> bzip2 kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:118 msgid "unzip: found, unpacking enabled.\n" msgstr "unzip: gefunden, entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:119 msgid "" "unzip: NOT found, unpacking DISABLED.\n" --- 3832,3840 ---- "==> bzip2 kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:119 msgid "unzip: found, unpacking enabled.\n" msgstr "unzip: gefunden, entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:120 msgid "" "unzip: NOT found, unpacking DISABLED.\n" *************** *** 3836,3844 **** "==> unzip kann bei http://www.info-zip/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:120 msgid "zip: found, packing enabled.\n" msgstr "zip: gefunden, packen aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:121 msgid "" "zip: NOT found, packing DISABLED.\n" --- 3844,3852 ---- "==> unzip kann bei http://www.info-zip/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:121 msgid "zip: found, packing enabled.\n" msgstr "zip: gefunden, packen aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:122 msgid "" "zip: NOT found, packing DISABLED.\n" *************** *** 3848,3856 **** "==> zip kann bei http://www.info-zip.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:122 msgid "rpm: found, unpacking enabled.\n" msgstr "rpm: gefunden, entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:123 msgid "" "rpm found but cpio NOT found: unpacking DISABLED.\n" --- 3856,3876 ---- "==> zip kann bei http://www.info-zip.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:123 ! msgid "lha: found, packing and unpacking enabled.\n" ! msgstr "lha: gefunden, packen und entpacken aktiviert.\n" ! ! #: Konfigurator/kgarchives.cpp:124 ! msgid "" ! "lha: NOT found, packing and unpacking DISABLED.\n" ! "==> lha can be obtained at www.gnu.org\n" ! msgstr "" ! "lha: NICHT gefunden, packen und entpacken DEAKTIVIERT.\n" ! "==> lha kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! ! #: Konfigurator/kgarchives.cpp:125 msgid "rpm: found, unpacking enabled.\n" msgstr "rpm: gefunden, entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:126 msgid "" "rpm found but cpio NOT found: unpacking DISABLED.\n" *************** *** 3860,3864 **** "==> cpio kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:124 msgid "" "rpm: NOT found, unpacking is DISABLED.\n" --- 3880,3884 ---- "==> cpio kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:127 msgid "" "rpm: NOT found, unpacking is DISABLED.\n" *************** *** 3868,3876 **** "==> rpm kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:125 msgid "unrar: found, unpacking is enabled.\n" msgstr "unrar: gefunden, entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:126 msgid "" "unrar: NOT found, unpacking is DISABLED.\n" --- 3888,3900 ---- "==> rpm kann bei http://www.gnu.org/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:128 msgid "unrar: found, unpacking is enabled.\n" msgstr "unrar: gefunden, entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:130 ! msgid "unrar: NOT found.\n" ! msgstr "unrar: NICHT gefunden.\n" ! ! #: Konfigurator/kgarchives.cpp:131 msgid "" "unrar: NOT found, unpacking is DISABLED.\n" *************** *** 3880,3888 **** "==> rar kann bei http://www.rarsoft.com/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:127 ! msgid "rar: found, packing is enabled.\n" ! msgstr "rar: gefunden, packen aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:128 msgid "" "rar: NOT found, packing is DISABLED.\n" --- 3904,3912 ---- "==> rar kann bei http://www.rarsoft.com/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:133 ! msgid "rar: found, packing and unpacking is enabled.\n" ! msgstr "rar: gefunden, packen und entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:134 msgid "" "rar: NOT found, packing is DISABLED.\n" *************** *** 3892,3900 **** "==> tar kann bei http://www.rarsoft.com/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:129 msgid "unarj: found, unpacking is enabled.\n" msgstr "unarj: gefunden, entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:130 msgid "" "unarj: NOT found, unpacking is DISABLED.\n" --- 3916,3928 ---- "==> tar kann bei http://www.rarsoft.com/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:135 msgid "unarj: found, unpacking is enabled.\n" msgstr "unarj: gefunden, entpacken aktiviert.\n" ! #: Konfigurator/kgarchives.cpp:137 ! msgid "unarj: NOT found.\n" ! msgstr "unarj: NICHT gefunden.\n" ! ! #: Konfigurator/kgarchives.cpp:138 msgid "" "unarj: NOT found, unpacking is DISABLED.\n" *************** *** 3902,3912 **** msgstr "" "unarj: NICHT gefunden, entpacken DEAKTIVIERT.\n" "==> tar kann bei http://www.arjsoft.com/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:131 msgid "unace: found, unpacking is enabled.\n" msgstr "unace: gefunden, entpacken aktiviert\n" ! #: Konfigurator/kgarchives.cpp:132 msgid "" "unace: NOT found, unpacking is DISABLED.\n" --- 3930,3952 ---- msgstr "" "unarj: NICHT gefunden, entpacken DEAKTIVIERT.\n" + "==> unarj kann bei http://www.arjsoft.com/ heruntergeladen werden.\n" + + #: Konfigurator/kgarchives.cpp:140 + msgid "arj: found, packing and unpacking is enabled.\n" + msgstr "arj: gefunden, packen und entpacken aktiviert.\n" + + #: Konfigurator/kgarchives.cpp:141 + msgid "" + "arj: NOT found, packing is DISABLED.\n" + "==> arj can be obtained at www.arjsoft.com\n" + msgstr "" + "arj: NICHT gefunden, entpacken DEAKTIVIERT.\n" "==> tar kann bei http://www.arjsoft.com/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:142 msgid "unace: found, unpacking is enabled.\n" msgstr "unace: gefunden, entpacken aktiviert\n" ! #: Konfigurator/kgarchives.cpp:143 msgid "" "unace: NOT found, unpacking is DISABLED.\n" *************** *** 3916,3920 **** "==> unace kann bei http://www.winace.com/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:134 msgid "" "\n" --- 3956,3960 ---- "==> unace kann bei http://www.winace.com/ heruntergeladen werden.\n" ! #: Konfigurator/kgarchives.cpp:145 msgid "" "\n" *************** *** 3924,3928 **** "Wenn Sie neue Packer installieren, dann bitte" ! #: Konfigurator/kgarchives.cpp:136 msgid "" "\n" --- 3964,3968 ---- "Wenn Sie neue Packer installieren, dann bitte" ! #: Konfigurator/kgarchives.cpp:147 msgid "" "\n" |
From: Dirk E. <des...@us...> - 2004-08-25 17:53:35
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23045/krusader/Panel Modified Files: panelfunc.cpp Log Message: added missing i18n() Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** panelfunc.cpp 25 Aug 2004 14:57:47 -0000 1.77 --- panelfunc.cpp 25 Aug 2004 17:53:09 -0000 1.78 *************** *** 498,502 **** QString s, b; if ( fileNames.count() == 1 ) ! s = " this item?"; else s.sprintf( i18n( " these %d items ?" ).local8Bit(), fileNames.count() ); --- 498,502 ---- QString s, b; if ( fileNames.count() == 1 ) ! s = i18n( " this item ?" ); else s.sprintf( i18n( " these %d items ?" ).local8Bit(), fileNames.count() ); |
From: Karai C. <ck...@us...> - 2004-08-25 17:35:39
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19291/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: remove international chars Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.286 retrieving revision 1.287 diff -C2 -d -r1.286 -r1.287 *** ChangeLog 24 Aug 2004 08:28:18 -0000 1.286 --- ChangeLog 25 Aug 2004 17:35:30 -0000 1.287 *************** *** 1,6 **** ====================== ADDED: new delete dialog box: lists the file names to be deleted (thanks to dirk for the idea) ! ADDED: iso protocol for viewing .iso cd/dvd images ! (thanks to Szombathelyi György) ADDED: full handling of arj and lha packers ADDED: useraction: new Placeholder %_Sync("synchronizer-profile")% --- 1,6 ---- ====================== ADDED: new delete dialog box: lists the file names to be deleted (thanks to dirk for the idea) ! ADDED: iso protocol for viewing .iso cd/dvd images ! (thanks to Szombathelyi Gyorgy) ADDED: full handling of arj and lha packers ADDED: useraction: new Placeholder %_Sync("synchronizer-profile")% |
From: Shie E. <er...@us...> - 2004-08-25 14:58:02
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21251/krusader/Panel Modified Files: panelfunc.cpp Log Message: fixed the new delete dialog box Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** panelfunc.cpp 24 Aug 2004 08:40:10 -0000 1.76 --- panelfunc.cpp 25 Aug 2004 14:57:47 -0000 1.77 *************** *** 498,504 **** QString s, b; if ( fileNames.count() == 1 ) ! s = " " + fileNames.first() + " ?"; else ! s.sprintf( i18n( " %d files ?" ).local8Bit(), fileNames.count() ); krConfig->setGroup( "General" ); if ( krConfig->readBoolEntry( "Move To Trash", _MoveToTrash ) && --- 498,504 ---- QString s, b; if ( fileNames.count() == 1 ) ! s = " this item?"; else ! s.sprintf( i18n( " these %d items ?" ).local8Bit(), fileNames.count() ); krConfig->setGroup( "General" ); if ( krConfig->readBoolEntry( "Move To Trash", _MoveToTrash ) && |
From: Shie E. <er...@us...> - 2004-08-24 21:10:30
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23363/krusader/Panel Modified Files: krdetailedview.h Log Message: deuglyfy the code ;-) Index: krdetailedview.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.h,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** krdetailedview.h 25 Jul 2004 22:58:36 -0000 1.31 --- krdetailedview.h 24 Aug 2004 21:10:00 -0000 1.32 *************** *** 150,154 **** QListViewItem *clickedItem; QTimer renameTimer; ! QDict<QListViewItem> dict; }; --- 150,154 ---- QListViewItem *clickedItem; QTimer renameTimer; ! QDict<KrDetailedViewItem> dict; }; |
From: Shie E. <er...@us...> - 2004-08-24 09:17:58
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24620/krusader/Panel Modified Files: krviewitem.h Log Message: interface fixes Index: krviewitem.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krviewitem.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** krviewitem.h 19 Sep 2003 22:35:32 -0000 1.6 --- krviewitem.h 24 Aug 2004 09:17:47 -0000 1.7 *************** *** 1,31 **** /*************************************************************************** ! krviewitem.h ! ------------------- ! copyright : (C) 2000-2002 by Shie Erlich & Rafi Yanai ! e-mail : kru...@us... ! web site : http://krusader.sourceforge.net ! --------------------------------------------------------------------------- ! Description ! *************************************************************************** ! A ! db dD d8888b. db db .d8888. .d8b. d8888b. d88888b d8888b. ! 88 ,8P' 88 `8D 88 88 88' YP d8' `8b 88 `8D 88' 88 `8D ! 88,8P 88oobY' 88 88 `8bo. 88ooo88 88 88 88ooooo 88oobY' ! 88`8b 88`8b 88 88 `Y8b. 88~~~88 88 88 88~~~~~ 88`8b ! 88 `88. 88 `88. 88b d88 db 8D 88 88 88 .8D 88. 88 `88. ! YP YD 88 YD ~Y8888P' `8888Y' YP YP Y8888D' Y88888P 88 YD ! H e a d e r F i l e ! *************************************************************************** ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! ***************************************************************************/ #ifndef KRVIEWITEM_H #define KRVIEWITEM_H --- 1,31 ---- /*************************************************************************** ! krviewitem.h ! ------------------- ! copyright : (C) 2000-2002 by Shie Erlich & Rafi Yanai ! e-mail : kru...@us... ! web site : http://krusader.sourceforge.net ! --------------------------------------------------------------------------- ! Description ! *************************************************************************** ! A ! db dD d8888b. db db .d8888. .d8b. d8888b. d88888b d8888b. ! 88 ,8P' 88 `8D 88 88 88' YP d8' `8b 88 `8D 88' 88 `8D ! 88,8P 88oobY' 88 88 `8bo. 88ooo88 88 88 88ooooo 88oobY' ! 88`8b 88`8b 88 88 `Y8b. 88~~~88 88 88 88~~~~~ 88`8b ! 88 `88. 88 `88. 88b d88 db 8D 88 88 88 .8D 88. 88 `88. ! YP YD 88 YD ~Y8888P' `8888Y' YP YP Y8888D' Y88888P 88 YD ! H e a d e r F i l e ! *************************************************************************** ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! ***************************************************************************/ #ifndef KRVIEWITEM_H #define KRVIEWITEM_H *************** *** 39,57 **** class KrViewItem { public: ! KrViewItem() {} ! virtual ~KrViewItem() {} ! virtual QString name() const = 0; ! virtual bool isDir() const = 0; ! virtual bool isExecutable() const = 0; ! virtual KIO::filesize_t size() const = 0; ! virtual QString dateTime() const = 0; ! virtual time_t getTime_t() const = 0; ! virtual QString mime() const = 0; ! virtual QString symlinkDest() const = 0; ! virtual bool isSymLink() const = 0; ! virtual QString description() const = 0; ! virtual bool isSelected() const = 0; ! virtual void setSelected(bool s) = 0; ! virtual QPixmap& icon() = 0; }; --- 39,57 ---- class KrViewItem { public: ! KrViewItem() {} ! virtual ~KrViewItem() {} ! virtual QString name() const = 0; ! virtual bool isDir() const = 0; ! virtual bool isExecutable() const = 0; ! virtual KIO::filesize_t size() const = 0; ! virtual QString dateTime() const = 0; ! virtual time_t getTime_t() const = 0; ! virtual QString mime() const = 0; ! virtual QString symlinkDest() const = 0; ! virtual bool isSymLink() const = 0; ! virtual QString description() const = 0; ! virtual bool isSelected() const = 0; ! virtual void setSelected( bool s ) = 0; ! virtual QPixmap icon() = 0; }; |
From: Shie E. <er...@us...> - 2004-08-24 09:17:36
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24517/krusader/Panel Modified Files: krdetailedviewitem.h Log Message: interface fixes Index: krdetailedviewitem.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.h,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** krdetailedviewitem.h 24 Aug 2004 08:06:30 -0000 1.16 --- krdetailedviewitem.h 24 Aug 2004 09:17:26 -0000 1.17 *************** *** 67,71 **** void setSelected(bool s) { KListViewItem::setSelected(s); } /*void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment){}*/ ! QPixmap& icon(); int compare(QListViewItem *i,int col,bool ascending ) const; void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int align); --- 67,71 ---- void setSelected(bool s) { KListViewItem::setSelected(s); } /*void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment){}*/ ! QPixmap icon(); int compare(QListViewItem *i,int col,bool ascending ) const; void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int align); |
From: Shie E. <er...@us...> - 2004-08-24 09:17:15
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24412/krusader/Panel Modified Files: krdetailedviewitem.cpp Log Message: interface fixes Index: krdetailedviewitem.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** krdetailedviewitem.cpp 5 Jul 2004 15:04:40 -0000 1.27 --- krdetailedviewitem.cpp 24 Aug 2004 09:17:05 -0000 1.28 *************** *** 280,284 **** } ! QPixmap& KrDetailedViewItem::icon() { QPixmap *p; --- 280,285 ---- } ! QPixmap KrDetailedViewItem::icon() { ! #if 0 QPixmap *p; *************** *** 290,293 **** --- 291,298 ---- else p = new QPixmap(KrView::getIcon(_vf)); return *p; + #endif + if (!_vf || !_view->_withIcons) + return QPixmap(); + else return KrView::getIcon(_vf); } |
From: Shie E. <er...@us...> - 2004-08-24 08:40:20
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13794/krusader/Panel Modified Files: panelfunc.cpp Log Message: Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** panelfunc.cpp 24 Aug 2004 08:27:53 -0000 1.75 --- panelfunc.cpp 24 Aug 2004 08:40:10 -0000 1.76 *************** *** 511,523 **** } // show message ! #if 0 ! if ( KMessageBox::warningContinueCancel( krApp, i18n( "Are you sure you want to " ) + s ! , QString::null, b ) ! == KMessageBox::Cancel ) ! return ; ! #endif ! // note: this dialog returns Yes and No. don't put Cancel here!!! ! if ( KMessageBox::questionYesNoList(krApp, i18n("Are you sure you want to " ) + s ! , fileNames, i18n("Warning"), b, i18n("Cancel") ) != KMessageBox::Yes) return; } --- 511,517 ---- } // show message ! // note: i'm using continue and not yes/no because the yes/no has cancel as default button ! if ( KMessageBox::warningContinueCancelList(krApp, i18n("Are you sure you want to " ) + s ! , fileNames, i18n("Warning"), b ) != KMessageBox::Continue) return; } |
From: Shie E. <er...@us...> - 2004-08-24 08:28:32
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10339 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.285 retrieving revision 1.286 diff -C2 -d -r1.285 -r1.286 *** ChangeLog 23 Aug 2004 22:10:27 -0000 1.285 --- ChangeLog 24 Aug 2004 08:28:18 -0000 1.286 *************** *** 1,4 **** ====================== ! ADDED: iso protocol for viewing .iso cd/dvd images (thanks to Szombathelyi György) ADDED: full handling of arj and lha packers --- 1,5 ---- ====================== ! ADDED: new delete dialog box: lists the file names to be deleted (thanks to dirk for the idea) ! ADDED: iso protocol for viewing .iso cd/dvd images (thanks to Szombathelyi György) ADDED: full handling of arj and lha packers |
From: Shie E. <er...@us...> - 2004-08-24 08:28:05
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10184/krusader/Panel Modified Files: panelfunc.cpp Log Message: new delete dialog: show the names to be deleted Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** panelfunc.cpp 17 Aug 2004 17:03:39 -0000 1.74 --- panelfunc.cpp 24 Aug 2004 08:27:53 -0000 1.75 *************** *** 511,518 **** } // show message ! if ( KMessageBox::warningContinueCancel( krApp, i18n( "Are you sure you want to " ) + s , QString::null, b ) == KMessageBox::Cancel ) return ; } //we want to warn the user about non empty dir --- 511,524 ---- } // show message ! #if 0 ! if ( KMessageBox::warningContinueCancel( krApp, i18n( "Are you sure you want to " ) + s , QString::null, b ) == KMessageBox::Cancel ) return ; + #endif + // note: this dialog returns Yes and No. don't put Cancel here!!! + if ( KMessageBox::questionYesNoList(krApp, i18n("Are you sure you want to " ) + s + , fileNames, i18n("Warning"), b, i18n("Cancel") ) != KMessageBox::Yes) + return; } //we want to warn the user about non empty dir |
From: Shie E. <er...@us...> - 2004-08-24 08:13:46
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5868/krusader/Search Modified Files: krsearchdialog.cpp Log Message: unchecked case sensativity in search module Index: krsearchdialog.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Search/krsearchdialog.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** krsearchdialog.cpp 29 Jul 2004 20:05:15 -0000 1.18 --- krsearchdialog.cpp 24 Aug 2004 08:13:33 -0000 1.19 *************** *** 130,133 **** --- 130,134 ---- void KrSearchDialog::prepareGUI() { //=======> to be moved ... + searchForCase->setChecked(false); resultsList->setSorting(1); // sort by location belongsToUserData->setEditable(false); belongsToGroupData->setEditable(false); |
From: Shie E. <er...@us...> - 2004-08-24 08:06:45
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3900/krusader/Panel Modified Files: krdetailedviewitem.h Log Message: unhack an ugly hack ;-) Index: krdetailedviewitem.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** krdetailedviewitem.h 1 Apr 2004 22:07:40 -0000 1.15 --- krdetailedviewitem.h 24 Aug 2004 08:06:30 -0000 1.16 *************** *** 63,67 **** } bool isSymLink() const { return (_vf ? _vf->vfile_isSymLink() : false); } ! bool isSelected() const { return (_vf ? KListViewItem::isSelected() : false); } void setSelected(bool s) { KListViewItem::setSelected(s); } /*void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment){}*/ --- 63,68 ---- } bool isSymLink() const { return (_vf ? _vf->vfile_isSymLink() : false); } ! // isSelected doesn't check of _vf on purpose! not needed here ! bool isSelected() const { return KListViewItem::isSelected(); } void setSelected(bool s) { KListViewItem::setSelected(s); } /*void paintCell(QPainter *p, const QColorGroup &cg, int column, int width, int alignment){}*/ |
From: Shie E. <er...@us...> - 2004-08-24 08:06:15
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3747/krusader/Panel Modified Files: krdetailedview.cpp Log Message: unhack an ugly hack ;-) Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.89 retrieving revision 1.90 diff -C2 -d -r1.89 -r1.90 *** krdetailedview.cpp 27 Jul 2004 22:35:24 -0000 1.89 --- krdetailedview.cpp 24 Aug 2004 08:06:05 -0000 1.90 *************** *** 1,5 **** /*************************************************************************** ! krdetailedview.cpp ! ------------------- copyright : (C) 2000-2002 by Shie Erlich & Rafi Yanai e-mail : kru...@us... --- 1,5 ---- /*************************************************************************** ! krdetailedview.cpp ! ------------------- copyright : (C) 2000-2002 by Shie Erlich & Rafi Yanai [...2014 lines suppressed...] ! // Set the alternate color to its default or to an invalid color, to turn alternate the background off. ! setAlternateBackground( KrColorCache::getColorCache().isAlternateBackgroundEnabled() ? KGlobalSettings::alternateBackgroundColor() : QColor() ); ! } } ! bool KrDetailedView::event( QEvent *e ) { ! modifierPressed = false; ! switch ( e->type() ) { ! case QEvent::Timer: ! case QEvent::MouseMove: ! case QEvent::MouseButtonPress: ! case QEvent::MouseButtonRelease: ! break; ! default: ! CANCEL_TWO_CLICK_RENAME; ! } ! return KListView::event( e ); } |
From: Karai C. <ck...@us...> - 2004-08-23 22:10:45
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25536/krusader_kde3/krusader Modified Files: main.cpp Log Message: ADDED: ISO KIO slave Index: main.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/main.cpp,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** main.cpp 29 Jul 2004 20:54:18 -0000 1.31 --- main.cpp 23 Aug 2004 22:10:30 -0000 1.32 *************** *** 69,74 **** aboutData.addCredit("Jan Halasa", "Bookmark Module", "xh...@fi...", 0); aboutData.addCredit("Hans Loeffler", "Dir history button", 0, 0); aboutData.addCredit("Jan Willem", "Icons for Krusader", 0, 0); ! aboutData.addCredit("Mikolaj Machowski", "Usability and QA", "<mi...@wp...>", 0); aboutData.addCredit("Cristi Dumitrescu","QA, bug-hunting, patches and general help","cr...@ch...",0); aboutData.addCredit("Aurelien Gateau","patch for KViewer","aur...@fr...",0); --- 69,75 ---- aboutData.addCredit("Jan Halasa", "Bookmark Module", "xh...@fi...", 0); aboutData.addCredit("Hans Loeffler", "Dir history button", 0, 0); + aboutData.addCredit("Szombathelyi György", "ISO KIO slave", 0, 0); aboutData.addCredit("Jan Willem", "Icons for Krusader", 0, 0); ! aboutData.addCredit("Mikolaj Machowski", "Usability and QA", "<mi...@wp...>", 0); aboutData.addCredit("Cristi Dumitrescu","QA, bug-hunting, patches and general help","cr...@ch...",0); aboutData.addCredit("Aurelien Gateau","patch for KViewer","aur...@fr...",0); |