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: Rafi Y. <ya...@us...> - 2004-05-30 14:43:29
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7686/krusader/VFS Modified Files: ftp_vfs.cpp ftp_vfs.h vfile.h Log Message: KIO::Slave url redirection handling (e.g. now devices:/ and settings:/ works !) Index: vfile.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/vfile.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** vfile.h 16 Mar 2004 08:23:17 -0000 1.11 --- vfile.h 30 May 2004 14:43:20 -0000 1.12 *************** *** 87,90 **** --- 87,92 ---- inline gid_t vfile_getGid() { return vfile_groupId; } inline time_t vfile_getTime_t() { return vfile_time_t; } + inline KURL vfile_getUrl() { return vfile_url; } + QString vfile_getOwner(); QString vfile_getGroup(); *************** *** 99,103 **** */ inline void vfile_setSize(KIO::filesize_t size) {vfile_size = size;} ! virtual ~vfile(){} --- 101,105 ---- */ inline void vfile_setSize(KIO::filesize_t size) {vfile_size = size;} ! inline void vfile_setUrl(const KURL& url){ vfile_url = url; } virtual ~vfile(){} Index: ftp_vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/ftp_vfs.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** ftp_vfs.cpp 28 Apr 2004 18:35:15 -0000 1.28 --- ftp_vfs.cpp 30 May 2004 14:43:20 -0000 1.29 *************** *** 88,92 **** { symDest = kfi.linkDest(); ! if ( kfi.isDir() || mime.contains("directory") ) perm[0] = 'd'; } --- 88,92 ---- { symDest = kfi.linkDest(); ! if ( kfi.isDir() || mime.contains("directory") ); perm[0] = 'd'; } *************** *** 104,109 **** temp=new vfile(name,size,perm,mtime,symLink,kfi.user(),kfi.group(),currentUser,mime,symDest,mode); } addToList(temp); ! } } --- 104,115 ---- temp=new vfile(name,size,perm,mtime,symLink,kfi.user(),kfi.group(),currentUser,mime,symDest,mode); } + + temp->vfile_setUrl(kfi.url()); addToList(temp); ! } ! } ! ! void ftp_vfs::slotPermanentRedirection(KIO::Job*,const KURL&,const KURL& newUrl){ ! vfs_origin = newUrl; } *************** *** 114,122 **** void ftp_vfs::slotListResult(KIO::Job *job){ ! if( job && job->error()){ // we failed to refresh - QString msg= KIO::buildErrorString(job->error(),vfs_origin.prettyURL()); // display error message ! if ( !msg.isEmpty() && !quietMode ) KMessageBox::sorry(krApp,msg); error = true; } --- 120,127 ---- void ftp_vfs::slotListResult(KIO::Job *job){ ! if( job && job->error()){ // we failed to refresh // display error message ! if ( !quietMode ) job->showErrorDialog(krApp); error = true; } *************** *** 135,166 **** // Open the directory marked by origin krConfig->setGroup("Look&Feel"); ! KIO::Job *job = new KIO::ListJob(vfs_origin,false,false,QString::null, ! krConfig->readBoolEntry("Show Hidden",_ShowHidden)); connect(job,SIGNAL(entries(KIO::Job*,const KIO::UDSEntryList&)), this,SLOT(slotAddFiles(KIO::Job*,const KIO::UDSEntryList&))); connect(job,SIGNAL(redirection(KIO::Job*,const KURL&)), this,SLOT(slotRedirection(KIO::Job*,const KURL&))); connect(job,SIGNAL(result(KIO::Job*)), this,SLOT(slotListResult(KIO::Job*))); if( !quietMode ) new KrProgress(job); } bool ftp_vfs::vfs_refresh(const KURL& origin) { ! error = false; ! QString errorMsg = QString::null; ! if ( origin.isMalformed() ) errorMsg = i18n("Malformed URL:\n%1").arg(origin.url()); if( !KProtocolInfo::supportsListing(origin) ) ! errorMsg = i18n("Protocol not supported by Krusader:\n%1").arg(origin.url()); ! if( !errorMsg.isEmpty() ){ if (!quietMode) KMessageBox::sorry(krApp, errorMsg); ! error = true; return false; ! } ! busy = true; // clear the the list and back up out current situation --- 140,176 ---- // Open the directory marked by origin krConfig->setGroup("Look&Feel"); ! KIO::Job *job = KIO::listDir(vfs_origin,false, ! krConfig->readBoolEntry("Show Hidden",_ShowHidden)); connect(job,SIGNAL(entries(KIO::Job*,const KIO::UDSEntryList&)), this,SLOT(slotAddFiles(KIO::Job*,const KIO::UDSEntryList&))); connect(job,SIGNAL(redirection(KIO::Job*,const KURL&)), this,SLOT(slotRedirection(KIO::Job*,const KURL&))); + connect(job,SIGNAL(permanentRedirection(KIO::Job*,const KURL&,const KURL&)), + this,SLOT(slotPermanentRedirection(KIO::Job*,const KURL&,const KURL&))); + connect(job,SIGNAL(result(KIO::Job*)), this,SLOT(slotListResult(KIO::Job*))); + job->setWindow(krApp); + if( !quietMode ) new KrProgress(job); } bool ftp_vfs::vfs_refresh(const KURL& origin) { ! error = false; ! QString errorMsg = QString::null; ! if ( !origin.isValid() ) errorMsg = i18n("Malformed URL:\n%1").arg(origin.url()); if( !KProtocolInfo::supportsListing(origin) ) ! errorMsg = i18n("Protocol not supported by Krusader:\n%1").arg(origin.url()); ! if( !errorMsg.isEmpty() ){ if (!quietMode) KMessageBox::sorry(krApp, errorMsg); ! error = true; return false; ! } ! busy = true; // clear the the list and back up out current situation *************** *** 178,182 **** if( error ) return false; ! return true; } --- 188,192 ---- if( error ) return false; ! return true; } *************** *** 234,242 **** // return a path to the file KURL ftp_vfs::vfs_getFile(const QString& name){ ! KURL url = vfs_origin; ! ! url.addPath(name); ! ! return url; } --- 244,251 ---- // return a path to the file KURL ftp_vfs::vfs_getFile(const QString& name){ ! vfile* vf=vfs_search(name); ! if( !vf ) return KURL(); // empty ! ! return vf->vfile_getUrl(); } Index: ftp_vfs.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/ftp_vfs.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ftp_vfs.h 25 Dec 2003 23:56:54 -0000 1.9 --- ftp_vfs.h 30 May 2004 14:43:20 -0000 1.10 *************** *** 43,47 **** // the constructor simply uses the inherited constructor ftp_vfs(QObject* panel); ! ~ftp_vfs(){} /// Copy a file to the vfs (physical). --- 43,47 ---- // the constructor simply uses the inherited constructor ftp_vfs(QObject* panel); ! ~ftp_vfs(){} /// Copy a file to the vfs (physical). *************** *** 58,62 **** virtual void vfs_rename(const QString& fileName,const QString& newName); /// Calculate the amount of space occupied by a file or directory (recursive). ! /// Not implemted (yet) in ftp_vfs virtual void vfs_calcSpace(QString name ,KIO::filesize_t *totalSize,unsigned long *totalFiles,unsigned long *totalDirs, bool * stop = 0); --- 58,62 ---- virtual void vfs_rename(const QString& fileName,const QString& newName); /// Calculate the amount of space occupied by a file or directory (recursive). ! /// Not implemted (yet) in ftp_vfs virtual void vfs_calcSpace(QString name ,KIO::filesize_t *totalSize,unsigned long *totalFiles,unsigned long *totalDirs, bool * stop = 0); *************** *** 67,72 **** /// Handles new files from the dir lister void slotAddFiles(KIO::Job * job, const KIO::UDSEntryList& entries); ! /// Redirection signal handler void slotRedirection(KIO::Job *, const KURL &url); /// Called when the dir listing job is finished (for better or worst) void slotListResult(KIO::Job *job); --- 67,73 ---- /// Handles new files from the dir lister void slotAddFiles(KIO::Job * job, const KIO::UDSEntryList& entries); ! /// Redirection signal handlers void slotRedirection(KIO::Job *, const KURL &url); + void slotPermanentRedirection(KIO::Job*,const KURL&,const KURL& newUrl); /// Called when the dir listing job is finished (for better or worst) void slotListResult(KIO::Job *job); *************** *** 74,86 **** bool vfs_refresh(const KURL& origin); ! void startLister(); protected: QList<vfile> vfs_files; //< List of pointers to vfile. ! //QList<vfile> vfs_files2; //< The second list of pointers to vfiles. ! //QList<vfile> *vfs_filesP2; //< pointer to the second list ! KURL origin_backup; //< used to backup the old URL when refreshing to a new one, ! bool busy; }; --- 75,85 ---- bool vfs_refresh(const KURL& origin); ! void startLister(); protected: QList<vfile> vfs_files; //< List of pointers to vfile. ! KURL origin_backup; //< used to backup the old URL when refreshing to a new one, ! bool busy; }; |
From: Rafi Y. <ya...@us...> - 2004-05-30 14:43:29
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7686/krusader/Panel Modified Files: panelfunc.cpp Log Message: KIO::Slave url redirection handling (e.g. now devices:/ and settings:/ works !) Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** panelfunc.cpp 19 May 2004 05:48:19 -0000 1.65 --- panelfunc.cpp 30 May 2004 14:43:20 -0000 1.66 *************** *** 544,548 **** if ( vf->vfile_isDir() ) { ! origin.addPath(name); panel->view->setNameToMakeCurrent( QString::null ); openUrl( origin ); --- 544,549 ---- if ( vf->vfile_isDir() ) { ! //origin.addPath(name); ! origin = files()->vfs_getFile( name ); panel->view->setNameToMakeCurrent( QString::null ); openUrl( origin ); |
From: Shie E. <er...@us...> - 2004-05-30 14:20:55
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4501 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.236 retrieving revision 1.237 diff -C2 -d -r1.236 -r1.237 *** ChangeLog 26 May 2004 16:33:40 -0000 1.236 --- ChangeLog 30 May 2004 14:20:44 -0000 1.237 *************** *** 1,4 **** --- 1,5 ---- ====================== ADDED: Chinese Simplified translation + FIXED: [ 962598 ] viewer didn't display XML files FIXED: [ 960595 ] problem with paths containing more '@' characters (FTP proxy hack) FIXED: [ 957145 ] krusader closes editor without asking |
From: Shie E. <er...@us...> - 2004-05-30 14:20:14
|
Update of /cvsroot/krusader/krusader_kde3/krusader/KViewer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4338/krusader/KViewer Modified Files: krviewer.cpp Log Message: FIXED: [ 962598 ] viewer didn't display XML files Index: krviewer.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/KViewer/krviewer.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** krviewer.cpp 24 May 2004 08:32:57 -0000 1.21 --- krviewer.cpp 30 May 2004 14:20:03 -0000 1.22 *************** *** 263,266 **** --- 263,268 ---- bool KrViewer::viewGeneric(){ QString mimetype = KMimeType::findByURL( url )->name(); + // ugly hack: don't try to get a part for an XML file, it usually don't work + if( mimetype == "text/xml" ) return false; if( url.prettyURL().startsWith("man:") ) mimetype = "text/html"; if( mimetype == "text/plain" ) |
From: Karai C. <ck...@us...> - 2004-05-26 16:33:51
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31283/krusader_kde3/krusader/VFS Modified Files: vfs.cpp Log Message: FIXED: krusader fails at paths containing more '@' chars (FTP proxy hack bug) Index: vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/vfs.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** vfs.cpp 21 Apr 2004 16:40:58 -0000 1.8 --- vfs.cpp 26 May 2004 16:33:40 -0000 1.9 *************** *** 77,98 **** { QString password, loginName, origin = originIn; ! ! // breakdown the url; ! /* FIXME: untill KDE fixes the bug we have to check for ! passwords and users with @ in them... */ ! bool bugfix = origin.find("@") != origin.findRev("@"); ! if(bugfix){ ! if(origin.find(":") != origin.findRev(":", origin.findRev("@") )){ ! int passStart = origin.find( ":",origin.find(":")+1 )+1; ! int passLen = origin.findRev("@")-passStart; ! password = origin.mid(passStart,passLen); ! origin = origin.remove(passStart-1,passLen+1); ! } ! if(origin.find("@") != origin.findRev("@")){ ! int usrStart = origin.find( "/" )+1; ! if(origin.at(usrStart) == '/') ++usrStart; ! int usrLen = origin.findRev("@")-usrStart; ! loginName = origin.mid(usrStart,usrLen); ! origin = origin.remove(usrStart,usrLen+1); } } --- 77,102 ---- { QString password, loginName, origin = originIn; ! bool bugfix; ! ! if ( originIn.contains( ":/" ) && !originIn.startsWith( "/" ) ) ! { ! // breakdown the url; ! /* FIXME: untill KDE fixes the bug we have to check for ! passwords and users with @ in them... */ ! bugfix = origin.find("@") != origin.findRev("@"); ! if(bugfix){ ! if(origin.find(":") != origin.findRev(":", origin.findRev("@") )){ ! int passStart = origin.find( ":",origin.find(":")+1 )+1; ! int passLen = origin.findRev("@")-passStart; ! password = origin.mid(passStart,passLen); ! origin = origin.remove(passStart-1,passLen+1); ! } ! if(origin.find("@") != origin.findRev("@")){ ! int usrStart = origin.find( "/" )+1; ! if(origin.at(usrStart) == '/') ++usrStart; ! int usrLen = origin.findRev("@")-usrStart; ! loginName = origin.mid(usrStart,usrLen); ! origin = origin.remove(usrStart,usrLen+1); ! } } } |
From: Karai C. <ck...@us...> - 2004-05-26 16:33:50
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31283/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: krusader fails at paths containing more '@' chars (FTP proxy hack bug) Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.235 retrieving revision 1.236 diff -C2 -d -r1.235 -r1.236 *** ChangeLog 25 May 2004 20:30:01 -0000 1.235 --- ChangeLog 26 May 2004 16:33:40 -0000 1.236 *************** *** 1,6 **** ====================== ADDED: Chinese Simplified translation FIXED: [ 957145 ] krusader closes editor without asking ! FIXED: ports cannot be added for fish, sftp in the new connection GUI FIXED: [ 943962 ] the summary status is not updated after calc space FIXED: [ 950762 ] missing pemission check on entering a folder --- 1,7 ---- ====================== ADDED: Chinese Simplified translation + FIXED: [ 960595 ] problem with paths containing more '@' characters (FTP proxy hack) FIXED: [ 957145 ] krusader closes editor without asking ! FIXED: ports cannot be added for fish, sftp in the new connection GUI FIXED: [ 943962 ] the summary status is not updated after calc space FIXED: [ 950762 ] missing pemission check on entering a folder |
From: Dirk E. <des...@us...> - 2004-05-25 20:30:23
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20424 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.234 retrieving revision 1.235 diff -C2 -d -r1.234 -r1.235 *** ChangeLog 24 May 2004 08:33:19 -0000 1.234 --- ChangeLog 25 May 2004 20:30:01 -0000 1.235 *************** *** 32,35 **** --- 32,36 ---- UPDATED: Czech translation UPDATED: Dutch translation + UPDATED: French translation UPDATED: German translation UPDATED: Hungarian translation |
From: Dirk E. <des...@us...> - 2004-05-25 20:17:40
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18054/po Modified Files: fr.po Log Message: krusader-1.40 (needs update, is unmaintained) Index: fr.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/fr.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fr.po 22 May 2004 15:08:14 -0000 1.2 --- fr.po 25 May 2004 20:17:31 -0000 1.3 *************** *** 1,38 **** # Translation of krusader.pot to French - # - # This file is distributed under the same license as the Krusader package # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai # Copyright (C) 2004, Krusader Krew ! # René-Pierre Lehmann <ri...@le...>, 2002. # msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" [...3879 lines suppressed...] #: Splitter/splitter.cpp:76 - #, fuzzy msgid "Can't split a directory!" ! msgstr "Vous ne pouvez pas éditer un répertoire." #: Splitter/splitter.cpp:127 --- 3522,3527 ---- #: Splitter/splitter.cpp:76 msgid "Can't split a directory!" ! msgstr "" #: Splitter/splitter.cpp:127 *************** *** 4230,4231 **** --- 3963,3965 ---- #~ msgid "Add the current path to your bookmarks" #~ msgstr "Ajoute le chemin courant à vos signets" + |
From: Frank S. <cod...@us...> - 2004-05-25 20:17:29
|
Update of /cvsroot/krusader/krusader_kde3/doc/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18003/doc/en Modified Files: faq.sgml index.docbook installation.sgml using-krusader.sgml Log Message: Handbook 1.40.01 Index: index.docbook =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/index.docbook,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** index.docbook 15 May 2004 19:49:15 -0000 1.12 --- index.docbook 25 May 2004 20:17:18 -0000 1.13 *************** *** 70,73 **** --- 70,76 ---- <!ENTITY xbel_url '<ulink url="http://grail.sourceforge.net/info/xbel.html">XBEL standard</ulink>'> <!ENTITY kde_apps_url '<ulink url="http://www.kde-apps.org">KDE-APPS.org</ulink>'> + <!ENTITY maxrpm_url '<ulink url="http://www.rpm.org/max-rpm">Maximum RPM Book</ulink>'> + <!ENTITY kioslave_url '<ulink url="http://docs.kde.org/en/3.2/kdebase/kioslave/index.html">KIOSlave</ulink>'> + <!ENTITY kioslaves_url '<ulink url="http://developer.kde.org/documentation/library/cvs-api/kio/html">KIOSlaves</ulink>'> <!-- documentation links --> *************** *** 201,206 **** <legalnotice>&FDLNotice;</legalnotice> ! <date>22/04/2004</date> ! <releaseinfo>1.40.00</releaseinfo> <abstract> --- 204,209 ---- <legalnotice>&FDLNotice;</legalnotice> ! <date>17/05/2004</date> ! <releaseinfo>1.40.01</releaseinfo> <abstract> *************** *** 249,253 **** basically, all you'd come to expect from tools like &mc;. Krusader is open-source, free and is released under the ! <link linkend="credits">GNU Public License (GPL)</link>, although we (the developers) still retain the copyright for the project and its name. </para> --- 252,256 ---- basically, all you'd come to expect from tools like &mc;. Krusader is open-source, free and is released under the ! <link linkend="credits">GNU General Public License (GPL)</link>, although we (the developers) still retain the copyright for the project and its name. </para> Index: using-krusader.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/using-krusader.sgml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** using-krusader.sgml 15 May 2004 19:49:16 -0000 1.12 --- using-krusader.sgml 25 May 2004 20:17:18 -0000 1.13 *************** *** 710,714 **** files/directories.</para></listitem> <listitem> ! <para>To calculate how much disk space is occupied by the selected files and directories in the active panel select <emphasis role="bold"><menuchoice><guimenu>File</guimenu> --- 710,714 ---- files/directories.</para></listitem> <listitem> ! <para>To calculate how much disk space is occupied by the marked files and directories in the active panel select <emphasis role="bold"><menuchoice><guimenu>File</guimenu> *************** *** 719,723 **** <keycap>SPACE</keycap> on that directories. If the active panel is browsing an archive, the numbers will apply to the unpacked ! size of the selected files and directories.</para> <note><para>Performing this operation on a very large filesystem (thousands of files) may be time --- 719,724 ---- <keycap>SPACE</keycap> on that directories. If the active panel is browsing an archive, the numbers will apply to the unpacked ! size of the selected files and directories. ! After the calculation the marking state will toggle and the cusor will move one position down.</para> <note><para>Performing this operation on a very large filesystem (thousands of files) may be time *************** *** 1286,1290 **** <row> <entry><para><keycap>End</keycap></para></entry> ! <entry><para>Cursor jumps to latest file</para></entry></row> </tbody> </tgroup> --- 1287,1291 ---- <row> <entry><para><keycap>End</keycap></para></entry> ! <entry><para>Cursor jumps to the latest file</para></entry></row> </tbody> </tgroup> Index: installation.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/installation.sgml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** installation.sgml 15 May 2004 19:49:15 -0000 1.11 --- installation.sgml 25 May 2004 20:17:18 -0000 1.12 *************** *** 28,33 **** <title>Stable version</title> <para><filename>krusader-x.xx.tar.gz</filename></para> <para> ! The most updated stable version can be found on the &krudownload_url;. It contains the source tarballs and RPM packages to whatever distro we are currently using. There might be some other packages on the site, but that depends on --- 28,38 ---- <title>Stable version</title> <para><filename>krusader-x.xx.tar.gz</filename></para> + <note><para>&krusader; is released under the + <link linkend="credits">GNU General Public License (GPL)</link>, this means that + THE PROGRAM IS PROVIDED "AS IS" WITH NO WARRANTY OF ANY KIND, + even when it is marked as a stable release.</para></note> + <para> ! The latest stable version can be found on the &krudownload_url;. It contains the source tarballs and RPM packages to whatever distro we are currently using. There might be some other packages on the site, but that depends on *************** *** 39,46 **** we recommend searching for it with &rpmfind_url; or &rpmpbone_url;.</para> ! <para>A &krufreebsd_port_url; of &krusader; is maintained, the <guibutton>"Search"</guibutton> button will lead you to the latest BSD version. Many thanks to <link linkend="credits">Heiner Eichmann</link> !</para> </sect2> --- 44,56 ---- we recommend searching for it with &rpmfind_url; or &rpmpbone_url;.</para> ! <para>A &krufreebsd_port_url; of &krusader; is maintained, the <guibutton>"Search"</guibutton> button will lead you to the latest BSD version. Many thanks to <link linkend="credits">Heiner Eichmann</link> !</para> + <para>If you can't find a RPM package, don't wurry. + We provide a verry detailled installation procedure. This will allow that even newcomers will be able + to compile &krusader; from source, even when you dit never before a compilation from source. + Please continue reading this chapter.</para> + </sect2> *************** *** 440,443 **** --- 450,459 ---- </listitem> + <listitem> + <para>Now you can <link linkend="starting-krusader">start</link> &krusader;.</para> + <para></para> <!-- Empty line to make it more readable --> + </listitem> + + <listitem> Index: faq.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/faq.sgml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** faq.sgml 15 May 2004 19:49:15 -0000 1.11 --- faq.sgml 25 May 2004 20:17:18 -0000 1.12 *************** *** 51,69 **** <answer> <para>Please install them. ;-)</para> ! <para>Here is a (obviously incomplete) list of &krusader;'s dependencies:</para> <para><itemizedlist> ! <listitem><para><application>gcc</application> (other compilers may work but haven't been tested) </para></listitem> ! <listitem><para><application>autoconf</application> (⪚ <filename>autoconf-2.x-xmdk.i586.rpm</filename>) </para></listitem> ! <listitem><para><application>automake</application> (⪚ <filename>automake1.x-x.x.x-xmdk.i586.rpm</filename>) </para></listitem> ! <listitem><para>XFree</para></listitem> ! <listitem><para>&Qt; (all &krusader; versions >=1.02 are &Qt; 3.x only)</para></listitem> ! <listitem><para>kdelibs (all &krusader; versions >=1.02 are &kde; 3.x only)</para></listitem> ! <listitem><para>libpng </para></listitem> ! <listitem><para>fam and famlibs (⪚ <filename>fam-2.x.x-xmdk.rpm</filename> and <filename>libfam0-devel-2.x.x-5mdk.i586.rpm</filename>)</para></listitem> ! </itemizedlist></para> <para>Most RPM-based distributions separate the headers from the libs. The headers are needed to compile &krusader;. Look for packages in the form foo-devel-*.rpm (⪚ --- 51,70 ---- <answer> <para>Please install them. ;-)</para> ! <para>Here is a (possibly incomplete) list of &krusader;'s dependencies:</para> <para><itemizedlist> ! <listitem><para>gcc-cpp gcc-c++ glibc libgcc1 (other compilers may work but haven't been tested) </para></listitem> ! <listitem><para>autoconf (⪚ <filename>autoconf-2.x-xmdk.i586.rpm</filename>) </para></listitem> ! <listitem><para>automake (⪚ <filename>automake1.x-x.x.x-xmdk.i586.rpm</filename>) </para></listitem> ! <listitem><para>XFree: libxfree86 libfreetype6 libfontconfig1 libnas2 libexpat0</para></listitem> ! <listitem><para>libqt3 libqt-devel (all &krusader; versions >=1.02 are &Qt; 3.x only)</para></listitem> ! <listitem><para>kdelibs kdelibs-devel (all &krusader; versions >=1.02 are &kde; 3.x only)</para></listitem> ! <listitem><para>libjpeg62 libjpeg-devel libpng3 libmng1</para></listitem> ! <listitem><para>fam libfam-devel (⪚ <filename>fam-2.x.x-xmdk.rpm</filename> and <filename>libfam0-devel-2.x.x-5mdk.i586.rpm</filename>)</para></listitem> ! <listitem><para>zlib1 arts libart_lgpl2 libstdc++5 libpcre0</para></listitem> ! </itemizedlist></para> <para>Most RPM-based distributions separate the headers from the libs. The headers are needed to compile &krusader;. Look for packages in the form foo-devel-*.rpm (⪚ *************** *** 78,81 **** --- 79,83 ---- </qandaentry> + <qandaentry> <question id="path"> *************** *** 102,123 **** </qandaentry> ! <qandaentry> ! <question id="source_rpm"> ! <para>I have downloaded the Source RPM for &krusader;. What now?</para> ! </question> ! <answer> ! <para><itemizedlist> ! <listitem><para>To recompile a Source RPM for your machine, do this (being root): ! <screen><prompt>$</prompt> <userinput><command>su -c 'rpm</command> <option>--rebuild</option> <replaceable></path/to/filename></replaceable>'</userinput></screen>You will be asked to enter your root password.</para></listitem> ! <listitem><para>If nothing goes wrong, a RPM will be created at ! <filename class="directory">/usr/src/RPM/RPMS/i386</filename> (replace i386 with your arch). Install as usual, for example. ! <screen><prompt>$</prompt> <userinput><command>su -c 'rpm</command> <option>-ivh</option> <replaceable></path/to/filename></replaceable>'</userinput></screen>You will be asked to enter your root password.</para></listitem> ! </itemizedlist></para> <para> </para> <!-- Empty line to make it more readable --> </answer> ! </qandaentry> <qandaentry> ! <question id="binary"> <para>I'm trying to install binary foo (RPM or DEB package), but it fails. What's wrong?</para> </question> --- 104,146 ---- </qandaentry> ! <qandaentry> ! <question id="rpm_source"> ! <para>I have downloaded the Source RPM <filename>krusader-x.xx.dist.src.rpm</filename> What now?</para> ! </question> ! <answer> ! <para><orderedlist> ! <listitem><para>Set the right permissions to ! <filename class="directory">/usr/src/RPM/</filename> and all recursive directories ! so that your normal user can read-write-execute in these directories. ! </para></listitem> ! <listitem><para>To produce the binary RPM for your computer, do this: ! <screen><prompt>$</prompt> <userinput><command>rpm</command> <option>--rebuild</option> <replaceable></path/to/rpmfile/> krusader-x.xx.dist.src.rpm</replaceable></userinput></screen> ! </para></listitem> ! <listitem><para>If all <link linkend="faqq_missing_libs">dependencies</link> are ok, ! a binary RPM <filename>krusader-x.xx.dist.rpm</filename> will be created at ! <filename class="directory">/usr/src/RPM/RPMS/i586</filename> (replace i586 with your architecture). ! </para></listitem> ! <listitem><para>Test the binary RPM before installing: ! <screen><prompt>$</prompt> <userinput><command>rpm</command> <option>-i --test</option> <replaceable></path/to/rpmfile> krusader-x.xx.dist.rpm</replaceable></userinput></screen> ! If the prompt returns without a message, than everything is ok. ! </para></listitem> ! <listitem><para>Install the binary RPM as usual, for example: ! <screen><prompt>$</prompt> <userinput><command>su -c 'rpm</command> <option>-Uvh</option> <replaceable></path/to/rpmfile> krusader-x.xx.dist.rpm</replaceable>'</userinput></screen> ! You will be asked to enter your root password. ! </para></listitem> ! <listitem><para>Now you can <link linkend="starting-krusader">start</link> &krusader;. ! </para></listitem> ! </orderedlist></para> ! <tip><para>For more information about RPM, take a look at the &maxrpm_url;. ! This book is verry good but it dates from the year 2000, so some issues are ! obsolete/changed/improved now. If you now a better (or updated) RPM book on the internet please ! <link linkend="editors_note">let me know</link>.</para></tip> <para> </para> <!-- Empty line to make it more readable --> </answer> ! </qandaentry> ! <qandaentry> ! <question id="rpm_fails"> <para>I'm trying to install binary foo (RPM or DEB package), but it fails. What's wrong?</para> </question> *************** *** 126,133 **** Try to find another binary at &Linux; software archives such as &freshmeat_url; or &kde_apps_url;. If you can't find a RPM package for your &Linux; distribution, we recommend searching for it with ! &rpmfind_url; or &rpmpbone_url;. ! Or better, please try to compile the &krusader; sourcecode. ! We provide a verry detailled &install_proc_lnk; if you have never done a compilation before. ! Feel free to post a &help_request_lnk; if you encounter problems. </para> <para> </para> <!-- Empty line to make it more readable --> --- 149,153 ---- Try to find another binary at &Linux; software archives such as &freshmeat_url; or &kde_apps_url;. If you can't find a RPM package for your &Linux; distribution, we recommend searching for it with ! &rpmfind_url; or &rpmpbone_url;. Or better, please read next question. </para> <para> </para> <!-- Empty line to make it more readable --> *************** *** 135,138 **** --- 155,173 ---- </qandaentry> + <qandaentry> + <question id="rpm_notfound"> + <para>I can't find a RPM package for &krusader;, What now?</para> + </question> + <answer> + <para>Compile &krusader; from source :) + Even when you think that you have no skills, you will probably succeed in compiling &krusader;! + We provide a verry detailled &install_proc_lnk;. This will allow that even newcomers will be able + to compile &krusader; from source, even when you dit never before a compilation from source. + Feel free to post a &help_request_lnk; if you encounter problems. + </para> + <para> </para> <!-- Empty line to make it more readable --> + </answer> + </qandaentry> + <qandaentry> <question id="krusaderui_rc"> *************** *** 237,240 **** --- 272,321 ---- </qandaentry> + <qandaentry> + <question id="rpm_build"> + <para>How can i build a RPM package for &krusader;?</para> + </question> + <answer> + <para>If you have experiance with compiling from source, you will probably be able to build a &krusader; RPM too. + Follow the next steps to build an RPM. + </para> + <para><orderedlist> + <listitem><para>Compile &krusader; from source to check that the compilation works fine. + </para></listitem> + <listitem><para>Set the right permissions to + <filename class="directory">/usr/src/RPM/</filename> and all recursive directories + so that your normal user can read-write-execute in these directories. + </para></listitem> + <listitem><para>copy <filename>kusader1.xx.tar.gz</filename> to + <filename class="directory">/usr/scr/RPM/SOURCE</filename> + </para></listitem> + <listitem><para>copy <filename>kusader.spec</filename> to + <filename class="directory">/usr/scr/RPM/SPECS</filename> + Tip: the latest <filename>kusader.spec</filename> can be found in CVS. + </para></listitem> + <listitem><para>Edit <filename>kusader.spec</filename> and add your name, your e-mail adress, + the rpm name, ... (please read the comments in <filename>kusader.spec</filename>). + Maybe other changes are needed if <command>rpmbuild</command> fails. + </para></listitem> + <listitem><para>Build the binary an source RPM: + <screen><prompt>/usr/scr/RPM/SPECS $</prompt> <userinput><command>rpmbuild</command> <option>-ba</option> <replaceable>krusader.spec</replaceable></userinput></screen> + If everything went ok you will have a binaryRPM in + <filename class="directory">/usr/src/RPM/RPMS/i586</filename> (depending on your architecture) + and a sourceRPM in <filename class="directory">/usr/src/RPM/SRPMS/</filename> + ⪚ <filename>krusader-1.40-beta1.suse90.i586.rpm</filename> and + <filename>krusader-1.40-beta1.suse90.src.rpm</filename> + </para></listitem> + <listitem><para>If it is not ok you will receive an error message during the rpmbuild process, + try to fix it and run <command>rpmbuild</command> again. + </para></listitem> + <listitem><para>And final: <link linkend="rpm_source">test</link> the RPM before sending it in. + </para></listitem> + </orderedlist></para> + + <para> </para> <!-- Empty line to make it more readable --> + </answer> + </qandaentry> + + </qandaset> </sect1> *************** *** 424,427 **** --- 505,513 ---- </orderedlist></para> <para>Thanks for your cooperation!</para> + <note><para>If possible try todo the same operation with &konqueror;, if you have the same problem than it is + probably a &kioslave_url; (kdelibs) bug, and not a &krusader; bug. + &krusader; uses the &kde; libraries and the &kioslaves_url; for several operations. + </para></note> + <para> </para> <!-- Empty line to make it more readable --> <note><para><remark>If you've got bugs to report please do not use &kde;'s bugzilla http://bugs.kde.org/, &kde;'s Bug Tracking System.</remark></para></note> |
From: Frank S. <cod...@us...> - 2004-05-25 20:16:51
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17836 Modified Files: README Log Message: Packagers and faq Index: README =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/README,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** README 4 May 2004 15:02:35 -0000 1.19 --- README 25 May 2004 20:16:41 -0000 1.20 *************** *** 72,76 **** When you install a Krusader cvs or beta version and if Krusader was previously installed on your computer, there is a possibility that you will have to update ! the krusaderui.rc file. please read the faq's for more info. --- 72,76 ---- When you install a Krusader cvs or beta version and if Krusader was previously installed on your computer, there is a possibility that you will have to update ! the krusaderui.rc file. please read the FAQ for more info. *************** *** 78,82 **** For detailed installation instructions, please read the INSTALL file. Or read it on-line at: http://krusader.sourceforge.net/handbook/installation.html ! The FAQ's are available at: http://krusader.sourceforge.net/handbook/faq.html --- 78,82 ---- For detailed installation instructions, please read the INSTALL file. Or read it on-line at: http://krusader.sourceforge.net/handbook/installation.html ! The FAQ are available at: http://krusader.sourceforge.net/handbook/faq.html *************** *** 94,98 **** Krusader Handbook ================= ! Documentation, detailed install procedure, FAQ's, ... The Krusader Handbook is available in the Help menu of Krusader or read it on-line at: http://krusader.sourceforge.net/handbook/index.html --- 94,98 ---- Krusader Handbook ================= ! Documentation, detailed install procedure, FAQ, ... The Krusader Handbook is available in the Help menu of Krusader or read it on-line at: http://krusader.sourceforge.net/handbook/index.html *************** *** 129,139 **** Please contact Frank. ! - Faq If you have a question you want to add to the FAQ's, please let us know. - Feature requests Discussions about new features for future Krusader versions. ! Please use our "New Features Discussions/Requests" forum. - Packagers We are always in need of packagers (preferably for Debian and SuSE). ! --- 129,142 ---- Please contact Frank. ! - FAQ If you have a question for the FAQ. ! Please contact Frank. - Feature requests Discussions about new features for future Krusader versions. ! Please use our "New Features Discussions/Requests" forum. - Packagers We are always in need of packagers (preferably for Debian and SuSE). ! Please read the FAQ "How can i build a RPM package for Krusader?" ! in the INSTALL file. ! For RPM and krusader.spec feedback, please contact Frank. *************** *** 209,213 **** Homepage http://krusader.sourceforge.net Installation http://krusader.sourceforge.net/handbook/installation.html ! FAQ's http://krusader.sourceforge.net/handbook/faq.html Documentation http://krusader.sourceforge.net/handbook/index.html Todolist http://sourceforge.net/tracker/?atid=560746&group_id=6488&func=browse --- 212,216 ---- Homepage http://krusader.sourceforge.net Installation http://krusader.sourceforge.net/handbook/installation.html ! FAQ http://krusader.sourceforge.net/handbook/faq.html Documentation http://krusader.sourceforge.net/handbook/index.html Todolist http://sourceforge.net/tracker/?atid=560746&group_id=6488&func=browse |
From: Frank S. <cod...@us...> - 2004-05-25 20:16:11
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17648 Modified Files: INSTALL Log Message: Packagers and faq Index: INSTALL =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/INSTALL,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** INSTALL 23 Apr 2004 08:54:41 -0000 1.3 --- INSTALL 25 May 2004 20:16:00 -0000 1.4 *************** *** 1,612 **** ! Compilation and installation ! ============================ ! ! This text is extracted from Krusader Handbook version 1.40.00 (15/04/2004) ! The Krusader Handbook is available in the Help menu of Krusader ! (after installing Krusader). ! ! For the HTML version look at: ! http://krusader.sourceforge.net/handbook/installation.html ! [...1257 lines suppressed...] ! debugging `configure'. ! ! `--help' ! Print a summary of the options to `configure', and exit. ! ! `--quiet' ! `--silent' ! `-q' ! Do not print messages saying which checks are being made. ! ! `--srcdir=DIR' ! Look for the package's source code in directory DIR. Usually ! `configure' can determine that directory automatically. ! ! `--version' ! Print the version of Autoconf used to generate the `configure' ! script, and exit. ! ! `configure' also accepts some other, not widely useful, options. ! |
From: Shie E. <er...@us...> - 2004-05-24 08:33:28
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21401 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.233 retrieving revision 1.234 diff -C2 -d -r1.233 -r1.234 *** ChangeLog 21 May 2004 16:17:18 -0000 1.233 --- ChangeLog 24 May 2004 08:33:19 -0000 1.234 *************** *** 1,5 **** ====================== ADDED: Chinese Simplified translation ! FIXED: ports cannot be added for fish, sftp in the new connection GUI FIXED: [ 943962 ] the summary status is not updated after calc space FIXED: [ 950762 ] missing pemission check on entering a folder --- 1,6 ---- ====================== ADDED: Chinese Simplified translation ! FIXED: [ 957145 ] krusader closes editor without asking ! FIXED: ports cannot be added for fish, sftp in the new connection GUI FIXED: [ 943962 ] the summary status is not updated after calc space FIXED: [ 950762 ] missing pemission check on entering a folder |
From: Shie E. <er...@us...> - 2004-05-24 08:33:06
|
Update of /cvsroot/krusader/krusader_kde3/krusader/KViewer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21282/krusader/KViewer Modified Files: krviewer.cpp Log Message: [ 957145 ] krusader closes editor without asking Index: krviewer.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/KViewer/krviewer.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** krviewer.cpp 16 May 2004 15:35:43 -0000 1.20 --- krviewer.cpp 24 May 2004 08:32:57 -0000 1.21 *************** *** 41,45 **** KrViewer::KrViewer(QWidget *parent, const char *name ) : ! KParts::MainWindow(parent,name), manager(this,this){ //setWFlags(WType_TopLevel | WDestructiveClose); --- 41,45 ---- KrViewer::KrViewer(QWidget *parent, const char *name ) : ! KParts::MainWindow(parent,name), manager(this,this), normalExit(false){ //setWFlags(WType_TopLevel | WDestructiveClose); *************** *** 52,55 **** --- 52,56 ---- connect(&manager,SIGNAL(activePartChanged(KParts::Part*)), this,SLOT(createGUI(KParts::Part*))); + viewerMenu = new QPopupMenu( this ); *************** *** 66,69 **** --- 67,76 ---- KrViewer::~KrViewer(){ + if (!normalExit && editor_part && editor_part->isModified() ) { + switch ( KMessageBox::warningYesNo( this, i18n("The editor is about to close. Do you want to save your changes?")) ) { + case KMessageBox::Yes : + ((KParts::ReadWritePart*)editor_part)->save(); + } + } //kdDebug() << "KrViewer killed" << endl; } *************** *** 352,355 **** --- 359,363 ---- bool KrViewer::queryClose() { + normalExit = true; if( !editor_part || !editor_part->isModified() ) return true; |
From: Shie E. <er...@us...> - 2004-05-24 08:32:34
|
Update of /cvsroot/krusader/krusader_kde3/krusader/KViewer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21176/krusader/KViewer Modified Files: krviewer.h Log Message: [ 957145 ] krusader closes editor without asking Index: krviewer.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/KViewer/krviewer.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** krviewer.h 10 Apr 2004 08:56:37 -0000 1.7 --- krviewer.h 24 May 2004 08:32:25 -0000 1.8 *************** *** 70,73 **** --- 70,74 ---- KTempFile tmpFile; + bool normalExit; }; |
From: Rafi Y. <ya...@us...> - 2004-05-24 07:28:08
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9374/krusader/VFS Modified Files: krarchandler.cpp Log Message: Fixed a bzip2 and gzip uncompress bug Index: krarchandler.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/krarchandler.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** krarchandler.cpp 20 Mar 2004 12:33:15 -0000 1.7 --- krarchandler.cpp 24 May 2004 07:27:49 -0000 1.8 *************** *** 184,189 **** else if ( type == "tarz" ) packer = KrServices::fullPathName( "tar" ) + " -xvzf"; else if ( type == "-tbz" ) packer = KrServices::fullPathName( "tar" ) + " -xjvf"; ! else if ( type == "gzip" ) packer = KrServices::fullPathName( "gzip" ) + " -d"; ! else if ( type == "zip2" ) packer = KrServices::fullPathName( "bzip2" ) + " -d"; else if ( type == "-rar" ) packer = KrServices::fullPathName( "unrar" ) + " x"; else if ( type == "-ace" ) packer = KrServices::fullPathName( "unace" ) + " x"; --- 184,189 ---- else if ( type == "tarz" ) packer = KrServices::fullPathName( "tar" ) + " -xvzf"; else if ( type == "-tbz" ) packer = KrServices::fullPathName( "tar" ) + " -xjvf"; ! else if ( type == "gzip" ) packer = KrServices::fullPathName( "gzip" ) + " -cd"; ! else if ( type == "zip2" ) packer = KrServices::fullPathName( "bzip2" ) + " -cdk"; else if ( type == "-rar" ) packer = KrServices::fullPathName( "unrar" ) + " x"; else if ( type == "-ace" ) packer = KrServices::fullPathName( "unace" ) + " x"; *************** *** 193,197 **** // unpack the files KShellProcess proc; ! proc << packer << + "\"" + archive + "\""; QString save = getcwd( 0, 0 ); chdir( dest.local8Bit() ); --- 193,203 ---- // unpack the files KShellProcess proc; ! proc << packer << " \"" + archive + "\""; ! if( type == "zip2" || type=="gzip" ){ ! QString arcname = archive.mid(archive.findRev("/")+1); ! if( arcname.contains(".") ) arcname = arcname.left(arcname.findRev(".")); ! proc << ">" << "\""+dest+"/"+arcname+"\""; ! } ! QString save = getcwd( 0, 0 ); chdir( dest.local8Bit() ); |
From: Karai C. <ck...@us...> - 2004-05-23 20:08:45
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4546/krusader_kde3/krusader/Panel Modified Files: krdetailedview.cpp krview.cpp Log Message: FIXED: calc space does not update correctly the total size field Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.79 retrieving revision 1.80 diff -C2 -d -r1.79 -r1.80 *** krdetailedview.cpp 19 May 2004 05:48:19 -0000 1.79 --- krdetailedview.cpp 23 May 2004 20:08:35 -0000 1.80 *************** *** 798,802 **** } viewItem->setSize( totalSize ); - _countSize += totalSize; viewItem->repaintItem(); } --- 798,801 ---- Index: krview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krview.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** krview.cpp 12 Feb 2004 17:23:30 -0000 1.6 --- krview.cpp 23 May 2004 20:08:35 -0000 1.7 *************** *** 122,131 **** QString KrView::statistics() { ! _numSelected = _selectedSize = 0; ! for ( KrViewItem * it = getFirst(); it != 0; it = getNext( it ) ) if ( it->isSelected() ) { ++_numSelected; _selectedSize += it->size(); } QString tmp = QString(i18n("%1 out of %2 selected, %3 out of %4")) .arg( _numSelected ).arg( _count ).arg( KIO::convertSize( _selectedSize ) ) --- 122,135 ---- QString KrView::statistics() { ! _countSize = _numSelected = _selectedSize = 0; ! ! for ( KrViewItem * it = getFirst(); it != 0; it = getNext( it ) ){ if ( it->isSelected() ) { ++_numSelected; _selectedSize += it->size(); } + if (it->size() > 0) + _countSize += it->size(); + } QString tmp = QString(i18n("%1 out of %2 selected, %3 out of %4")) .arg( _numSelected ).arg( _count ).arg( KIO::convertSize( _selectedSize ) ) |
From: Dirk E. <des...@us...> - 2004-05-22 15:09:56
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7264/po Modified Files: dk.po es.po ja.po jp.po pl.po ru.po sv.po Log Message: krusader-1.40 (needs update) Index: pl.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/pl.po,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** pl.po 4 Jul 2003 11:42:37 -0000 1.5 --- pl.po 22 May 2004 15:09:43 -0000 1.6 *************** *** 1,15 **** ! # translation of krusader.po to polski ! # Tumaczenie Krusadera na j�yk polski ! # This file is distributed under the same license as the Krusader package. ! # Copyright (C) 2002 by Shie Erlich & Rafi Yanai ! # Lukasz Janyst <lj...@wp...>, 2003 # msgid "" msgstr "" ! "Project-Id-Version: krusader\n" ! "POT-Creation-Date: 2003-05-28 01:53+0300\n" [...5913 lines suppressed...] + #~ msgid "Tree, List" + #~ msgstr "Drzewo, Lista" + + #~ msgid "Quickview, List" + #~ msgstr "Szybki podglÄ d, Lista" + + #~ msgid "Panel types (left,right):" + #~ msgstr "Typy panela (lewy, prawy):" + + #~ msgid "" + #~ "This action can be tricky, since system failure during the process might " + #~ "result in misplaced files. If this happens, the files are stored in a " + #~ "temp directory inside /tmp." + #~ msgstr "" + #~ "Ta operacja może byÄ niebezpieczna, gdyż bÅÄ d systemu podczas jej\n" + #~ "wykonywania może spowodowaÄ zaginiÄcie plików. JeÅli to siÄ wydarzy\n" + #~ "pliki zostanÄ zachowane w katalogu tymczasowym. (???)" + + #~ msgid "Choose an editor" + #~ msgstr "Wybierz edytor" Index: sv.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/sv.po,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** sv.po 9 May 2004 19:13:38 -0000 1.3 --- sv.po 22 May 2004 15:09:43 -0000 1.4 *************** *** 1,5 **** ! # translation of sv.po to ! # Swedish translation for Krusader ! # Copyright (C) 2001, 2004 Free Software Foundation, Inc. # Erik Johansson <er...@te...>, 2001. # Anders Lindén <con...@gm...>, 2004. --- 1,7 ---- ! # Translation of krusader.pot to Swedish ! # ! # This file is distributed under the same license as the Krusader package ! # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai ! # Copyright (C) 2004, Krusader Krew # Erik Johansson <er...@te...>, 2001. # Anders Lindén <con...@gm...>, 2004. *************** *** 7,16 **** msgid "" msgstr "" ! "Project-Id-Version: sv\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-18 02:45+0000\n" "Last-Translator: Anders Lindén <con...@gm...>\n" ! "Language-Team: <@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" --- 9,18 ---- msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-18 02:45+0000\n" "Last-Translator: Anders Lindén <con...@gm...>\n" ! "Language-Team: Swedish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" Index: ru.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/ru.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ru.po 1 Oct 2003 14:36:22 -0000 1.2 --- ru.po 22 May 2004 15:09:43 -0000 1.3 *************** *** 1,15 **** ! # translation of ru.po to Russian ! # translation of krusader.po to Russian ! # This file is distributed under the same license as the PACKAGE package. ! # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ! # Dmitry V. Chernyak <dv...@ma...>, 2003 # msgid "" msgstr "" ! "Project-Id-Version: ru\n" ! "POT-Creation-Date: 2003-08-01 13:49+0300\n" [...5827 lines suppressed...] + #~ msgid "Quickview, List" + #~ msgstr "ÐÑÑÑÑÑй пÑоÑмоÑÑ, СпиÑок" + + #~ msgid "Panel types (left,right):" + #~ msgstr "Ð¢Ð¸Ð¿Ñ Ð¿Ð°Ð½ÐµÐ»ÐµÐ¹ (леваÑ, пÑаваÑ):" + + #~ msgid "" + #~ "This action can be tricky, since system failure during the process\n" + #~ "might result in misplaced files. If this happens,\n" + #~ "the files are stored in a temp directory inside /tmp." + #~ msgstr "" + #~ "ÐÑо дейÑÑвие Ð¼Ð¾Ð¶ÐµÑ Ð±ÑÑÑ ÑложнÑм, ÑиÑÑемнÑй оÑказ вовÑÐµÐ¼Ñ Ð¿ÑÐ¾Ñ Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ\n" + #~ "пÑоÑеÑÑа Ð¼Ð¾Ð¶ÐµÑ Ð¿ÑивеÑÑи к непÑавилÑÐ½Ð¾Ð¼Ñ ÑазмеÑÐµÐ½Ð¸Ñ Ñайлов. ÐÑли ÑÑо\n" + #~ "ÑлÑÑилоÑÑ, ÑÐ°Ð¹Ð»Ñ Ð±ÑдÑÑ ÑÐ¾Ñ ÑÐ°Ð½ÐµÐ½Ñ Ð²Ð¾ вÑеменной диÑекÑоÑии /tmp." + + #~ msgid "Choose an editor" + #~ msgstr "ÐÑбеÑиÑе ÑедакÑоÑ" + + #~ msgid "Choose a temporary directory" + #~ msgstr "ÐÑбеÑиÑе вÑеменнÑÑ Ð´Ð¸ÑекÑоÑиÑ" Index: ja.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/ja.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ja.po 9 Jan 2004 14:12:22 -0000 1.2 --- ja.po 22 May 2004 15:09:43 -0000 1.3 *************** *** 1,11 **** ! # translation of krusader-ja.po to Japanese ! # UTUMI Hirosi <utu...@ya...>, 2003, 2004 msgid "" msgstr "" ! "Project-Id-Version: krusader-ja\n" ! "POT-Creation-Date: 2003-10-18 13:19+0200\n" "PO-Revision-Date: 2004-01-09 14:28+0900\n" "Last-Translator: UTUMI Hirosi <utu...@ya...>\n" ! "Language-Team: Japanese <ja...@li...>\n" "MIME-Version: 1.0\n" [...5335 lines suppressed...] - #~ msgid "&Quickview Panel" #~ msgstr "æ¦è¦³ããã«(&Q)" --- 3944,3947 ---- *************** *** 2769,2775 **** #~ msgstr "ç¾å¨ã®ãã£ã¬ã¯ããªã®ãã«ãã¹ã表示" - #~ msgid "Tree" - #~ msgstr "Tree" - #~ msgid "Unknown viewer" #~ msgstr "䏿ãªãã¥ã¼ã¢" --- 4019,4022 ---- *************** *** 2851,2853 **** #~ msgid "trash " #~ msgstr "trash " - --- 4098,4099 ---- Index: dk.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/dk.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dk.po 18 Oct 2003 10:52:57 -0000 1.2 --- dk.po 22 May 2004 15:09:43 -0000 1.3 *************** *** 1,12 **** ! # translation of dk.po to Danish ! # Danish translation for Krusader ! # Copyright (C) 2001, 2003 Free Software Foundation, Inc. ! # Anders Bruun Olsen <an...@br...>, 2001, 2003. # msgid "" msgstr "" ! "Project-Id-Version: dk\n" ! "POT-Creation-Date: 2002-01-01 17:11+0200\n" ! "PO-Revision-Date: 2003-10-17 15:49+0200\n" [...6824 lines suppressed...] - #~ msgid "PackGUI" #~ msgstr "PackGUI" --- 4290,4293 ---- *************** *** 2764,2770 **** #~ msgstr "remoteManBase" - #~ msgid "KrusaderView" - #~ msgstr "KrusaderView" - #~ msgid "kgArchives" #~ msgstr "kgArchives" --- 4311,4314 ---- *************** *** 2802,2804 **** #~ msgid "Can't find " #~ msgstr "Kan ikke finde " - --- 4346,4347 ---- Index: es.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/es.po,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** es.po 2 Dec 2003 14:24:56 -0000 1.3 --- es.po 22 May 2004 15:09:43 -0000 1.4 *************** *** 1,14 **** ! # translation of krusader130.po to Español ! # This file is distributed under the same license as the PACKAGE package. ! # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Rafael Munoz Rodriguez <mu...@ho...>, 2003. # msgid "" msgstr "" ! "Project-Id-Version: krusader130\n" ! "POT-Creation-Date: 2003-10-18 13:19+0200\n" "PO-Revision-Date: 2003-12-02 01:05+0100\n" [...5380 lines suppressed...] + #~ msgid "Quickview, List" + #~ msgstr "Vista rápida, lista" + + #~ msgid "Panel types (left,right):" + #~ msgstr "Tipos de panel (izquierda, derecha):" + + #~ msgid "" + #~ "This action can be tricky, since system failure during the process\n" + #~ "might result in misplaced files. If this happens,\n" + #~ "the files are stored in a temp directory inside /tmp." + #~ msgstr "" + #~ "Esto puede ser delicado, si el equipo falla durante el proceso\n" + #~ "podrÃan extraviarse los archivos. Si esto ocurre,\n" + #~ "los archivos serán almacenados en un temporal /tmp." + + #~ msgid "Choose an editor" + #~ msgstr "Elija un editor" + + #~ msgid "Choose a temporary directory" + #~ msgstr "Elija un archivo temporal" Index: jp.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/jp.po,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** jp.po 10 May 2004 15:23:55 -0000 1.3 --- jp.po 22 May 2004 15:09:43 -0000 1.4 *************** *** 1,11 **** ! # translation of krusader-ja.po to Japanese ! # UTUMI Hirosi <utu...@ya...>, 2003, 2004 msgid "" msgstr "" ! "Project-Id-Version: krusader-ja\n" ! "POT-Creation-Date: 2003-10-18 13:19+0200\n" "PO-Revision-Date: 2004-01-09 14:28+0900\n" "Last-Translator: UTUMI Hirosi <utu...@ya...>\n" ! "Language-Team: Japanese <ja...@li...>\n" "MIME-Version: 1.0\n" [...5335 lines suppressed...] - #~ msgid "&Quickview Panel" #~ msgstr "æ¦è¦³ããã«(&Q)" --- 3944,3947 ---- *************** *** 2769,2775 **** #~ msgstr "ç¾å¨ã®ãã£ã¬ã¯ããªã®ãã«ãã¹ã表示" - #~ msgid "Tree" - #~ msgstr "Tree" - #~ msgid "Unknown viewer" #~ msgstr "䏿ãªãã¥ã¼ã¢" --- 4019,4022 ---- *************** *** 2851,2853 **** #~ msgid "trash " #~ msgstr "trash " - --- 4098,4099 ---- |
From: Dirk E. <des...@us...> - 2004-05-22 15:08:26
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7104/po Modified Files: fr.po Log Message: krusader-1.40 (needs update, is unmaintained) Index: fr.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/fr.po,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** fr.po 15 Apr 2002 18:54:39 -0000 1.1.1.1 --- fr.po 22 May 2004 15:08:14 -0000 1.2 *************** *** 1,13 **** ! # SOME DESCRIPTIVE TITLE. ! # Copyright (C) YEAR Free Software Foundation, Inc. ! # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # msgid "" msgstr "" ! "Project-Id-Version: PACKAGE VERSION\n" ! "POT-Creation-Date: 2002-01-01 17:11+0200\n" "PO-Revision-Date: 2002-02-10 14:37GMT\n" "Last-Translator: René-Pierre Lehmann <ri...@le...>\n" [...6738 lines suppressed...] + #~ msgid "&Full Panel" + #~ msgstr "Volet d'&exploration" + + #~ msgid "&Tree Panel" + #~ msgstr "Volet d'&arborescence" + + #~ msgid "&BookMan" + #~ msgstr "&BookMan" + + #~ msgid "&Device Manager" + #~ msgstr "&Gestionnaire de périphériques" + + #~ msgid "&Quickview Panel" + #~ msgstr "Volet d'&aperçu" + + #~ msgid "Mount.Man: Krusader's mount-manager. Try it!" + #~ msgstr "Mount.Man: Le Gestionnaire de mount de Krusader. Essayez-le!" + + #~ msgid "Add the current path to your bookmarks" + #~ msgstr "Ajoute le chemin courant à vos signets" |
From: Dirk E. <des...@us...> - 2004-05-22 15:05:27
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6370/po Modified Files: bg.po cs.po de.po hu.po it.po nl.po sk.po zh_CN.po Log Message: krusader-1.40 Index: bg.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/bg.po,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** bg.po 22 May 2004 12:58:19 -0000 1.4 --- bg.po 22 May 2004 15:05:07 -0000 1.5 *************** *** 1,15 **** ! # translation of krusader.po to bulgarian ! # This file is distributed under the same license as the PACKAGE package. ! # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Milen Ivanov <ke...@ma...>, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-05-21 17:52+0300\n" "Last-Translator: Milen Ivanov <ke...@ma...>\n" ! "Language-Team: bulgarian <bg...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" --- 1,17 ---- ! # Translation of krusader.po to Bulgarian ! # ! # This file is distributed under the same license as the Krusader package ! # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai ! # Copyright (C) 2004, Krusader Krew # Milen Ivanov <ke...@ma...>, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-05-21 17:52+0300\n" "Last-Translator: Milen Ivanov <ke...@ma...>\n" ! "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" Index: it.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/it.po,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** it.po 29 Apr 2004 19:17:51 -0000 1.6 --- it.po 22 May 2004 15:05:10 -0000 1.7 *************** *** 1,15 **** ! # translation of krusader.pot to Italiano ! # This file is distributed under the same license as the PACKAGE package. ! # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ! # Giuseppe Bordoni <ge...@ge...>, 2003,2004 # msgid "" msgstr "" ! "Project-Id-Version: Krusader1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-28 21:51+0200\n" "Last-Translator: Giuseppe Bordoni <ge...@ge...>\n" ! "Language-Team: Italiano\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" --- 1,17 ---- ! # Translation of krusader.pot to Italian ! # ! # This file is distributed under the same license as the Krusader package ! # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai ! # Copyright (C) 2004, Krusader Krew ! # Giuseppe Bordoni <ge...@ge...>, 2003, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-28 21:51+0200\n" "Last-Translator: Giuseppe Bordoni <ge...@ge...>\n" ! "Language-Team: Italian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" Index: sk.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/sk.po,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** sk.po 27 Apr 2004 11:24:03 -0000 1.5 --- sk.po 22 May 2004 15:05:10 -0000 1.6 *************** *** 1,14 **** ! # Slovak translation of Krusader ! # Copyright (C) 2004 Zdenko Podobný # Zdenko Podobný <zd...@ma...>, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader 1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-24 19:16+0100\n" "Last-Translator: Zdenko Podobný <zd...@ma...>\n" ! "Language-Team: Slovak <sk...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" --- 1,17 ---- ! # Translation of krusader.pot to Slovak ! # ! # This file is distributed under the same license as the Krusader package ! # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai ! # Copyright (C) 2004, Krusader Krew # Zdenko Podobný <zd...@ma...>, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-24 19:16+0100\n" "Last-Translator: Zdenko Podobný <zd...@ma...>\n" ! "Language-Team: Slovak\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" Index: nl.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/nl.po,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** nl.po 4 May 2004 14:53:14 -0000 1.11 --- nl.po 22 May 2004 15:05:10 -0000 1.12 *************** *** 1,14 **** ! # translation of krusader.pot to DUTCH (nl.po) ! # Dutch (Nederlands) translation for Krusader ! # Copyright (C) 2001,2003,2004 Free Software Foundation, Inc. ! # FIRST AUTHOR Frank Schoolmeesters <fra...@fa...> 2003,2004 # msgid "" msgstr "" ! "Project-Id-Version: krusader1.40\n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-05-03 20:25+0200\n" "Last-Translator: Frank Schoolmeesters <fra...@fa...>\n" ! "Language-Team: Dutch <nl...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" --- 1,16 ---- ! # Translation of krusader.pot to Dutch ! # ! # This file is distributed under the same license as the Krusader package. ! # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai ! # Copyright (C) 2004, Krusader Krew ! # FIRST AUTHOR Frank Schoolmeesters <fra...@fa...> 2003, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-05-03 20:25+0200\n" "Last-Translator: Frank Schoolmeesters <fra...@fa...>\n" ! "Language-Team: Dutch\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" Index: de.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/de.po,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** de.po 9 May 2004 19:13:33 -0000 1.12 --- de.po 22 May 2004 15:05:09 -0000 1.13 *************** *** 1,5 **** ! # translation of de.po to german ! # translation of krusader.pot to german ! # Copyright (C) 2003, 2004 Free Software Foundation, Inc. # Christoph Thielecke <cri...@gm...>, 2003. # Dirk Eschler <des...@us...>, 2003, 2004. --- 1,7 ---- ! # Translation of krusader.pot to German ! # ! # This file is distributed under the same license as the Krusader package ! # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai ! # Copyright (C) 2004, Krusader Krew # Christoph Thielecke <cri...@gm...>, 2003. # Dirk Eschler <des...@us...>, 2003, 2004. *************** *** 7,16 **** msgid "" msgstr "" ! "Project-Id-Version: Krusader1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" ! "PO-Revision-Date: 2004-05-08 15:09+0200\n" "Last-Translator: Dirk Eschler <des...@us...>\n" ! "Language-Team: german\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" --- 9,18 ---- msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" ! "PO-Revision-Date: 2004-05-22 17:01+0200\n" "Last-Translator: Dirk Eschler <des...@us...>\n" ! "Language-Team: German\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" Index: cs.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/cs.po,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** cs.po 27 Apr 2004 16:37:57 -0000 1.5 --- cs.po 22 May 2004 15:05:08 -0000 1.6 *************** *** 1,21 **** ! # translation of krusader.pot to czech ! # Copyright (C) 2003, 2004 Free Software Foundation, Inc. # Martin Sixta <luk...@se...>, 2003, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40-beta1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-27 18:23+0200\n" "Last-Translator: Martin Sixta <luk...@se...>\n" ! "Language-Team: <cs...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" - "\n" - "\n" - "\n" - "\n" "X-Generator: KBabel 1.3\n" --- 1,20 ---- ! # Translation of krusader.pot to Czech ! # ! # This file is distributed under the same license as the Krusader package ! # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai ! # Copyright (C) 2004, Krusader Krew # Martin Sixta <luk...@se...>, 2003, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-27 18:23+0200\n" "Last-Translator: Martin Sixta <luk...@se...>\n" ! "Language-Team: Czech\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.3\n" Index: hu.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/hu.po,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** hu.po 27 Apr 2004 18:43:53 -0000 1.6 --- hu.po 22 May 2004 15:05:10 -0000 1.7 *************** *** 1,17 **** ! # translation of hu.po to Hungarian ! # This file is distributed under the same license as the PACKAGE package. ! # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Marcel Hilzinger <hi...@su...>, 2003. # Vámosi Tamás <Vam...@su...>, 2003. ! # Zoltan Kukk <kuk...@fr...>, 2004 # msgid "" msgstr "" ! "Project-Id-Version: hu_20031019\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2003-10-19 19:19+0200\n" "Last-Translator: Zoltan Kukk <kuk...@fr...>\n" ! "Language-Team: Hungarian <kde...@so...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" --- 1,19 ---- ! # Translation of hu.po to Hungarian ! # ! # This file is distributed under the same license as the Krusader package ! # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai ! # Copyright (C) 2004, Krusader Krew # Marcel Hilzinger <hi...@su...>, 2003. # Vámosi Tamás <Vam...@su...>, 2003. ! # Zoltan Kukk <kuk...@fr...>, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2003-10-19 19:19+0200\n" "Last-Translator: Zoltan Kukk <kuk...@fr...>\n" ! "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" Index: zh_CN.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/zh_CN.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** zh_CN.po 29 Apr 2004 19:17:51 -0000 1.2 --- zh_CN.po 22 May 2004 15:05:10 -0000 1.3 *************** *** 1,14 **** ! # translation of krusader.pot to zh_CN.po ! # Copyright (C) 2004 Free Software Foundation, Inc. # Jinghua Luo <luo...@ms...>, 2004. # msgid "" msgstr "" ! "Project-Id-Version: Krusader1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-29 13:04+0800\n" "Last-Translator: Jinghua Luo <luo...@ms...>\n" ! "Language-Team: <zh...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" --- 1,17 ---- ! # Translation of krusader.pot to Chinese Simplified ! # ! # This file is distributed under the same license as the Krusader package ! # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai ! # Copyright (C) 2004, Krusader Krew # Jinghua Luo <luo...@ms...>, 2004. # msgid "" msgstr "" ! "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" "PO-Revision-Date: 2004-04-29 13:04+0800\n" "Last-Translator: Jinghua Luo <luo...@ms...>\n" ! "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" |
From: Dirk E. <des...@us...> - 2004-05-22 12:58:29
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16084/po Modified Files: bg.po Log Message: krusader 1.40 Index: bg.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/bg.po,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** bg.po 9 May 2004 19:13:31 -0000 1.3 --- bg.po 22 May 2004 12:58:19 -0000 1.4 *************** *** 6,13 **** msgid "" msgstr "" ! "Project-Id-Version: Krusader1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" ! "PO-Revision-Date: 2004-05-04 13:48+0300\n" "Last-Translator: Milen Ivanov <ke...@ma...>\n" "Language-Team: bulgarian <bg...@li...>\n" --- 6,13 ---- msgid "" msgstr "" ! "Project-Id-Version: krusader1.40\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" ! "PO-Revision-Date: 2004-05-21 17:52+0300\n" "Last-Translator: Milen Ivanov <ke...@ma...>\n" "Language-Team: bulgarian <bg...@li...>\n" *************** *** 19,23 **** #: GUI/dirhistorybutton.moc.cpp:34 GUI/dirhistorybutton.moc.cpp:42 msgid "DirHistoryButton" ! msgstr "" #: GUI/dirhistorybutton.cpp:36 --- 19,23 ---- #: GUI/dirhistorybutton.moc.cpp:34 GUI/dirhistorybutton.moc.cpp:42 msgid "DirHistoryButton" ! msgstr "ÐÑÑон ÐоÑеÑени ÐиÑекÑоÑии" #: GUI/dirhistorybutton.cpp:36 *************** *** 27,31 **** #: GUI/dirhistoryqueue.moc.cpp:34 GUI/dirhistoryqueue.moc.cpp:42 msgid "DirHistoryQueue" ! msgstr "" #: GUI/kcmdline.cpp:60 --- 27,31 ---- #: GUI/dirhistoryqueue.moc.cpp:34 GUI/dirhistoryqueue.moc.cpp:42 msgid "DirHistoryQueue" ! msgstr "ÐпаÑка Ñ Ð¿Ð¾ÑеÑени диÑекÑоÑии" #: GUI/kcmdline.cpp:60 *************** *** 39,43 **** "Down> arrows.</qt>" msgstr "" ! "<qt>ÐÑÑÑноÑÑ Ðµ много пÑоÑÑо: ÐиÑеÑе командаÑа ÑÑка иKrusader Ñе подÑинÑва." "<p><Tip:>ÐÑеминеÑе в аÑÑ Ð¸Ð²Ð° на ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñед Ñ <Up> и <Down> " "ÑÑÑелкиÑе.</qt>" --- 39,43 ---- "Down> arrows.</qt>" msgstr "" ! "<qt>ÐÑÑÑноÑÑ Ðµ много пÑоÑÑо: ÐиÑеÑе командаÑа ÑÑка и Krusader Ñе подÑинÑва." "<p><Tip:>ÐÑеминеÑе в аÑÑ Ð¸Ð²Ð° на ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñед Ñ <Up> и <Down> " "ÑÑÑелкиÑе.</qt>" *************** *** 190,194 **** #: VFS/krarchandler.cpp:200 - #, fuzzy msgid "Unpacking File(s)" msgstr "РазаÑÑ Ð¸Ð²Ð¸Ñа Ñайл(ове)" --- 190,193 ---- *************** *** 199,203 **** #: VFS/krarchandler.cpp:284 - #, fuzzy msgid "Packing File(s)" msgstr "ÐÑÑ Ð¸Ð²Ð¸Ñа Ñайл(ове)" --- 198,201 ---- *************** *** 233,237 **** #: Panel/krdetailedviewitem.moc.cpp:34 Panel/krdetailedviewitem.moc.cpp:42 msgid "KrDetailedViewItem" ! msgstr "" #: Panel/listpanel.cpp:110 --- 231,235 ---- #: Panel/krdetailedviewitem.moc.cpp:34 Panel/krdetailedviewitem.moc.cpp:42 msgid "KrDetailedViewItem" ! msgstr "ÐодÑобен пÑеглед на обекÑ" #: Panel/listpanel.cpp:110 *************** *** 405,414 **** #: Panel/listpanel.cpp:721 msgid "Are you sure you want to shred " ! msgstr "СигÑÑни ли ÑÑе, Ñе иÑкаÑе да залиÑиÑе " #: Panel/listpanel.cpp:769 Panel/panelfunc.cpp:265 KViewer/krviewer.cpp:188 #: krslots.cpp:408 msgid "Can't open " ! msgstr "Ðе може да Ñе оÑвоÑи " #: Panel/krdetailedview.cpp:86 Search/krsearchdialogbase.cpp:729 --- 403,412 ---- #: Panel/listpanel.cpp:721 msgid "Are you sure you want to shred " ! msgstr "СигÑÑни ли ÑÑе, Ñе иÑкаÑе залиÑаване " #: Panel/listpanel.cpp:769 Panel/panelfunc.cpp:265 KViewer/krviewer.cpp:188 #: krslots.cpp:408 msgid "Can't open " ! msgstr "ÐевÑзможно оÑвоÑÑне " #: Panel/krdetailedview.cpp:86 Search/krsearchdialogbase.cpp:729 *************** *** 466,482 **** #: Panel/krcolorcache.moc.cpp:34 Panel/krcolorcache.moc.cpp:42 msgid "KrColorCache" ! msgstr "" #: Panel/krdetailedview.moc.cpp:34 Panel/krdetailedview.moc.cpp:42 msgid "KrDetailedView" ! msgstr "" #: Panel/krcalcspacedialog.moc.cpp:34 Panel/krcalcspacedialog.moc.cpp:42 msgid "KrCalcSpaceDialog" ! msgstr "" #: Panel/listpanel.moc.cpp:34 Panel/listpanel.moc.cpp:42 msgid "ListPanel" ! msgstr "" #: Panel/krcalcspacedialog.cpp:146 --- 464,480 ---- #: Panel/krcolorcache.moc.cpp:34 Panel/krcolorcache.moc.cpp:42 msgid "KrColorCache" ! msgstr "ЦвеÑови ÐеÑ" #: Panel/krdetailedview.moc.cpp:34 Panel/krdetailedview.moc.cpp:42 msgid "KrDetailedView" ! msgstr "ÐодÑобен ÐÑеглед" #: Panel/krcalcspacedialog.moc.cpp:34 Panel/krcalcspacedialog.moc.cpp:42 msgid "KrCalcSpaceDialog" ! msgstr "ÐзÑиÑлÑване на Ñвободно мÑÑÑо" #: Panel/listpanel.moc.cpp:34 Panel/listpanel.moc.cpp:42 msgid "ListPanel" ! msgstr "СпиÑÑк" #: Panel/krcalcspacedialog.cpp:146 *************** *** 502,506 **** #: Panel/panelfunc.cpp:167 msgid "The current file is not a link, so i can't redirect it." ! msgstr "Този Ñайл не е вÑÑзка, не може да го пÑенаÑоÑиÑе." #: Panel/panelfunc.cpp:174 --- 500,504 ---- #: Panel/panelfunc.cpp:167 msgid "The current file is not a link, so i can't redirect it." ! msgstr "Този Ñайл не е вÑÑзка, невÑзможно пÑенаÑоÑване." #: Panel/panelfunc.cpp:174 *************** *** 522,526 **** #: Panel/panelfunc.cpp:202 msgid "Create a new link to: " ! msgstr "СÑздава нова вÑÑзка кÑм: " #: Panel/panelfunc.cpp:210 Panel/panelfunc.cpp:387 --- 520,524 ---- #: Panel/panelfunc.cpp:202 msgid "Create a new link to: " ! msgstr "СÑздаване на нова вÑÑзка кÑм: " #: Panel/panelfunc.cpp:210 Panel/panelfunc.cpp:387 *************** *** 538,542 **** #: Panel/panelfunc.cpp:241 msgid "No permissions to view this file." ! msgstr "ÐÑмаÑе пÑава да видиÑе Ñайла." #: Panel/panelfunc.cpp:276 --- 536,540 ---- #: Panel/panelfunc.cpp:241 msgid "No permissions to view this file." ! msgstr "ÐÑмаÑе пÑава за пÑеглед Ñайла." #: Panel/panelfunc.cpp:276 *************** *** 549,555 **** #: Panel/panelfunc.cpp:303 - #, fuzzy msgid "Moving into archive is disabled" ! msgstr "ÐÑемеÑÑванеÑо в аÑÑ Ð¸Ð² е забÑанено в Konfigurator!" #: Panel/panelfunc.cpp:312 --- 547,552 ---- #: Panel/panelfunc.cpp:303 msgid "Moving into archive is disabled" ! msgstr "ÐÑемеÑÑванеÑо в аÑÑ Ð¸Ð² е невÑзможно" #: Panel/panelfunc.cpp:312 *************** *** 569,573 **** #: Panel/panelfunc.cpp:354 msgid "You can't move files to this file system" ! msgstr "Ðе може да пÑемеÑÑваÑе Ñайлове в Ñази Ñайлова ÑиÑÑема" #: Panel/panelfunc.cpp:379 --- 566,570 ---- #: Panel/panelfunc.cpp:354 msgid "You can't move files to this file system" ! msgstr "Ðе може да пÑемеÑÑваÑе Ñайлове вÑв ÑайловаÑа ÑиÑÑема" #: Panel/panelfunc.cpp:379 *************** *** 586,594 **** #: Panel/panelfunc.cpp:443 msgid "You can't copy files to this file system" ! msgstr "Ðе може да копиÑаÑе Ñайлове в Ñази Ñайлова ÑиÑÑема" #: Panel/panelfunc.cpp:454 msgid "You do not have write permission to this directory" ! msgstr "ÐÑмаÑе пÑава за Ð·Ð°Ð¿Ð¸Ñ Ð² Ñази диÑекÑоÑиÑ" #: Panel/panelfunc.cpp:471 --- 583,591 ---- #: Panel/panelfunc.cpp:443 msgid "You can't copy files to this file system" ! msgstr "Ðе може да копиÑаÑе Ñайлове вÑв ÑайловаÑа ÑиÑÑема" #: Panel/panelfunc.cpp:454 msgid "You do not have write permission to this directory" ! msgstr "ÐÑмаÑе пÑава за Ð·Ð°Ð¿Ð¸Ñ Ð² диÑекÑоÑиÑÑа" #: Panel/panelfunc.cpp:471 *************** *** 639,643 **** #: Panel/panelfunc.cpp:594 msgid " already exists, Do you want to overwrite the archive " ! msgstr " веÑе ÑÑÑеÑÑвÑва, иÑкаÑе ли да го пÑезапиÑа " #: Panel/panelfunc.cpp:595 --- 636,640 ---- #: Panel/panelfunc.cpp:594 msgid " already exists, Do you want to overwrite the archive " ! msgstr " веÑе ÑÑÑеÑÑвÑва, иÑкаÑе ли пÑÐµÐ·Ð°Ð¿Ð¸Ñ " #: Panel/panelfunc.cpp:595 *************** *** 679,683 **** #: panelmanager.moc.cpp:34 panelmanager.moc.cpp:42 msgid "PanelManager" ! msgstr "" #: Locate/locate.cpp:64 --- 676,680 ---- #: panelmanager.moc.cpp:34 panelmanager.moc.cpp:42 msgid "PanelManager" ! msgstr "УпÑавление на панела" #: Locate/locate.cpp:64 *************** *** 695,699 **** #: Locate/locate.cpp:74 msgid "Search for:" ! msgstr "ТÑÑÑене за:" #: Locate/locate.cpp:88 --- 692,696 ---- #: Locate/locate.cpp:74 msgid "Search for:" ! msgstr "ТÑÑÑене за: " #: Locate/locate.cpp:88 *************** *** 718,722 **** #: Locate/locate.cpp:215 msgid "Error during the start of `locate` process!" ! msgstr "ÐÑеÑка пÑи ÑÑаÑÑа на пÑоÑеÑа 'locate'!" #: Locate/locate.cpp:268 --- 715,719 ---- #: Locate/locate.cpp:215 msgid "Error during the start of `locate` process!" ! msgstr "ÐÑеÑка пÑи ÑÑаÑÑа на 'locate'!" #: Locate/locate.cpp:268 *************** *** 745,752 **** #: krusader.cpp:207 ! msgid "" ! "Status bar will show basic informations about file below mouse pointer." ! msgstr "" ! "ÐенÑаÑа за ÑÑÑÑоÑние Ñе показва оÑновна инÑоÑмаÑÐ¸Ñ Ð·Ð° Ñайла под маÑкеÑа." #: krusader.cpp:256 --- 742,747 ---- #: krusader.cpp:207 ! msgid "Status bar will show basic informations about file below mouse pointer." ! msgstr "ÐенÑаÑа за ÑÑÑÑоÑние Ñе показва оÑновна инÑоÑмаÑÐ¸Ñ Ð·Ð° Ñайла под маÑкеÑа." #: krusader.cpp:256 *************** *** 812,828 **** #: krusader.cpp:378 msgid "Show &FN Keys Bar" ! msgstr "Ðоказване ленÑа &ÑÑнкÑ. клавиÑи" #: krusader.cpp:381 msgid "Show &Command Line" ! msgstr "Ðоказване &ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¸Ñ Ñед" #: krusader.cpp:384 msgid "Show Terminal &Emulator" ! msgstr "Ðоказване ТеÑминален ем&ÑлаÑоÑ" #: krusader.cpp:387 msgid "Show &Hidden Files" ! msgstr "Ðоказване Ñк&ÑиÑи Ñайлове" #: krusader.cpp:389 --- 807,823 ---- #: krusader.cpp:378 msgid "Show &FN Keys Bar" ! msgstr "ÐенÑа &ÑÑнкÑ. клавиÑи" #: krusader.cpp:381 msgid "Show &Command Line" ! msgstr "&Ðоманден Ñед" #: krusader.cpp:384 msgid "Show Terminal &Emulator" ! msgstr "ТеÑминален ем&ÑлаÑоÑ" #: krusader.cpp:387 msgid "Show &Hidden Files" ! msgstr "Ск&ÑиÑи Ñайлове" #: krusader.cpp:389 *************** *** 904,908 **** #: krusader.cpp:430 msgid "Disconnect &From Net" ! msgstr "РазкаÑа Ð¾Ñ Ð¼Ñе&жа" #: krusader.cpp:433 krusader.cpp:438 --- 899,903 ---- #: krusader.cpp:430 msgid "Disconnect &From Net" ! msgstr "РазкаÑа Ð¾Ñ Ð¼Ñе&жаÑа" #: krusader.cpp:433 krusader.cpp:438 *************** *** 1000,1004 **** #: krusader.cpp:491 msgid "Remove selection from all highlight files" ! msgstr "ÐÑÐµÐ¼Ð°Ñ Ð²Ð° избоÑа Ð¾Ñ Ð²ÑиÑки маÑкиÑани Ñайлове" #: krusader.cpp:492 --- 995,999 ---- #: krusader.cpp:491 msgid "Remove selection from all highlight files" ! msgstr "ÐÑÐµÐ¼Ð°Ñ Ð²Ð°Ð½Ðµ избоÑа Ð¾Ñ Ð²ÑиÑки маÑкиÑани Ñайлове" #: krusader.cpp:492 *************** *** 1040,1044 **** #: KViewer/krviewer.cpp:58 msgid "&Hex viewer" ! msgstr "&Hex Ñежим" #: KViewer/krviewer.cpp:60 --- 1035,1039 ---- #: KViewer/krviewer.cpp:58 msgid "&Hex viewer" ! msgstr "&16-ен Ñежим" #: KViewer/krviewer.cpp:60 *************** *** 1051,1057 **** #: KViewer/krviewer.cpp:232 - #, fuzzy msgid "Sorry, can't find internal editor" ! msgstr "Ðе мога да оÑкÑÐ¸Ñ Ð²ÑÑÑеÑÐ½Ð¸Ñ ÑедакÑоÑ" #: KViewer/krviewer.cpp:293 --- 1046,1051 ---- #: KViewer/krviewer.cpp:232 msgid "Sorry, can't find internal editor" ! msgstr "ÐевÑзможно оÑкÑиванеÑо на вгÑÐ°Ð´ÐµÐ½Ð¸Ñ ÑедакÑоÑ" #: KViewer/krviewer.cpp:293 *************** *** 1060,1065 **** #: KViewer/krviewer.cpp:353 ! msgid "" ! "The Document has been changed. Do you want to quit loosing the modifications?" msgstr "ÐокÑменÑÑÑ Ðµ пÑоменен. ÐÑкаÑе Ð¸Ð·Ñ Ð¾Ð´ без да ÑÑÑ ÑаниÑе пÑомениÑе?" --- 1054,1058 ---- #: KViewer/krviewer.cpp:353 ! msgid "The Document has been changed. Do you want to quit loosing the modifications?" msgstr "ÐокÑменÑÑÑ Ðµ пÑоменен. ÐÑкаÑе Ð¸Ð·Ñ Ð¾Ð´ без да ÑÑÑ ÑаниÑе пÑомениÑе?" *************** *** 1115,1119 **** #: Search/krsearchdialog.cpp:340 msgid "Please specify a location to search in." ! msgstr "ÐоÑоÑеÑе Ð¼Ð¾Ð»Ñ Ð¼ÑÑÑо за ÑÑÑÑене." #: Search/krsearchdialog.cpp:369 --- 1108,1112 ---- #: Search/krsearchdialog.cpp:340 msgid "Please specify a location to search in." ! msgstr "ÐоÑоÑеÑе мÑÑÑо за ÑÑÑÑене." #: Search/krsearchdialog.cpp:369 *************** *** 1184,1188 **** #: Search/krsearchdialog.cpp:669 msgid "Edit File (F4)" ! msgstr "РедакÑиÑа Файл (F4)" #: Search/krsearchmod.cpp:98 --- 1177,1181 ---- #: Search/krsearchdialog.cpp:669 msgid "Edit File (F4)" ! msgstr "РедакÑиÑане Файл (F4)" #: Search/krsearchmod.cpp:98 *************** *** 1392,1400 **** #: panelmanager.cpp:24 msgid "Open a new tab in home" ! msgstr "ÐÑваÑÑ Ð½Ð¾Ð² Ñаб в дом.диÑекÑоÑиÑ" #: panelmanager.cpp:32 msgid "Close current tab" ! msgstr "ÐаÑваÑÑ ÑекÑÑÐ¸Ñ Ñаб" #: BookMan/bookmarksbutton.moc.cpp:34 BookMan/bookmarksbutton.moc.cpp:42 --- 1385,1393 ---- #: panelmanager.cpp:24 msgid "Open a new tab in home" ! msgstr "Ðов Ñаб Ñ Ð´Ð¾Ð¼.диÑекÑоÑиÑ" #: panelmanager.cpp:32 msgid "Close current tab" ! msgstr "ÐаÑваÑÑне на ÑекÑÑÐ¸Ñ Ñаб" #: BookMan/bookmarksbutton.moc.cpp:34 BookMan/bookmarksbutton.moc.cpp:42 *************** *** 1404,1408 **** #: BookMan/bookmarksbutton.cpp:32 msgid "Open your bookmarks" ! msgstr "ÐÑваÑÑ Ð²Ð°ÑиÑе оÑмеÑки" #: BookMan/addbookmarkdlg.cpp:29 BookMan/addbookmarkform.cpp:86 --- 1397,1401 ---- #: BookMan/bookmarksbutton.cpp:32 msgid "Open your bookmarks" ! msgstr "ÐÑваÑÑне на ваÑиÑе оÑмеÑки" #: BookMan/addbookmarkdlg.cpp:29 BookMan/addbookmarkform.cpp:86 *************** *** 1416,1424 **** #: BookMan/addbookmarkform.cpp:85 msgid "Add bookmark" ! msgstr "ÐÐ¾Ð±Ð°Ð²Ñ Ð¾ÑмеÑка" #: BookMan/kbookmarkmenu.cpp:182 msgid "Add a bookmark for the current document" ! msgstr "ÐÐ¾Ð±Ð°Ð²Ñ Ð¾ÑмеÑка за ÑекÑÑÐ¸Ñ Ð´Ð¾ÐºÑменÑ" #: BookMan/kbookmarkmenu.cpp:196 --- 1409,1417 ---- #: BookMan/addbookmarkform.cpp:85 msgid "Add bookmark" ! msgstr "ÐобавÑне на оÑмеÑка" #: BookMan/kbookmarkmenu.cpp:182 msgid "Add a bookmark for the current document" ! msgstr "ÐобавÑне оÑмеÑка за ÑекÑÑÐ¸Ñ Ð´Ð¾ÐºÑменÑ" #: BookMan/kbookmarkmenu.cpp:196 *************** *** 1592,1599 **** #: MountMan/kmountmangui.cpp:218 ! msgid "" ! "MountMan has an internal error. Please notify the developers. Thank you." ! msgstr "" ! "ÐÑÑÑеÑна гÑеÑка в ÐениджÑÑа за монÑиÑане. ÐолÑ, ÑведомеÑе ÑазÑабоÑÑиÑиÑе." #: MountMan/kmountmangui.cpp:223 --- 1585,1590 ---- #: MountMan/kmountmangui.cpp:218 ! msgid "MountMan has an internal error. Please notify the developers. Thank you." ! msgstr "ÐÑÑÑеÑна гÑеÑка в ÐениджÑÑа за монÑиÑане. ÐолÑ, ÑведомеÑе ÑазÑабоÑÑиÑиÑе." #: MountMan/kmountmangui.cpp:223 *************** *** 1619,1623 **** "_: EMAIL OF TRANSLATORS\n" "Your emails" ! msgstr "ke...@ma..." #: main.cpp:42 --- 1610,1614 ---- "_: EMAIL OF TRANSLATORS\n" "Your emails" ! msgstr "ke...@bu..." #: main.cpp:42 *************** *** 1659,1663 **** #: Dialogs/krprogress.cpp:112 msgid "Krusader Progress" ! msgstr "" #: Dialogs/krprogress.cpp:165 --- 1650,1654 ---- #: Dialogs/krprogress.cpp:112 msgid "Krusader Progress" ! msgstr "Krusader ÐапÑедÑк" #: Dialogs/krprogress.cpp:165 *************** *** 1831,1835 **** #: Dialogs/krspecialwidgets.cpp:103 msgid "Supermount device." ! msgstr "УÑÑÑойÑÑво за авÑомаÑиÑно монÑиÑане" #: Dialogs/krspecialwidgets.cpp:105 --- 1822,1826 ---- #: Dialogs/krspecialwidgets.cpp:103 msgid "Supermount device." ! msgstr "ÐвÑомаÑиÑно монÑиÑаÑо Ñе ÑÑÑÑойÑÑво." #: Dialogs/krspecialwidgets.cpp:105 *************** *** 1839,1843 **** #: Dialogs/krspecialwidgets.cpp:106 msgid "on a supermounted device." ! msgstr "Ð¾Ñ ÑÑÑÑойÑÑвоÑо за авÑомаÑиÑно монÑиÑане." #: Dialogs/krspecialwidgets.cpp:107 --- 1830,1834 ---- #: Dialogs/krspecialwidgets.cpp:106 msgid "on a supermounted device." ! msgstr "Ð¾Ñ Ð°Ð²ÑомаÑиÑно монÑиÑаÑоÑо Ñе ÑÑÑÑойÑÑвоÑо." #: Dialogs/krspecialwidgets.cpp:107 *************** *** 1995,2023 **** #: UserMenu/usermenu.cpp:56 msgid "panel's path" ! msgstr "" #: UserMenu/usermenu.cpp:57 msgid "no. of files" ! msgstr "" #: UserMenu/usermenu.cpp:58 msgid "no. of folders" ! msgstr "" #: UserMenu/usermenu.cpp:59 msgid "no. of files and folders" ! msgstr "" #: UserMenu/usermenu.cpp:60 msgid "filter mask (*.h, *.cpp ...)" ! msgstr "" #: UserMenu/usermenu.cpp:61 msgid "current file (!= selected file)" ! msgstr "" #: UserMenu/usermenu.cpp:62 msgid "selected files and folders" ! msgstr "избÑаниÑе Ñайлове и папки" #: UserMenu/usermenu.cpp:63 --- 1986,2014 ---- #: UserMenu/usermenu.cpp:56 msgid "panel's path" ! msgstr "пÑÑ Ð´Ð¾ панела" #: UserMenu/usermenu.cpp:57 msgid "no. of files" ! msgstr "бÑой Ñайлове" #: UserMenu/usermenu.cpp:58 msgid "no. of folders" ! msgstr "бÑой папки" #: UserMenu/usermenu.cpp:59 msgid "no. of files and folders" ! msgstr "бÑой Ñайлове и папки" #: UserMenu/usermenu.cpp:60 msgid "filter mask (*.h, *.cpp ...)" ! msgstr "маÑка на ÑилÑÑÑа (*.h, *.cpp...)" #: UserMenu/usermenu.cpp:61 msgid "current file (!= selected file)" ! msgstr "ÑекÑÑ Ñайл (!= избÑан Ñайл)" #: UserMenu/usermenu.cpp:62 msgid "selected files and folders" ! msgstr "избÑани Ñайлове и папки" #: UserMenu/usermenu.cpp:63 *************** *** 2055,2075 **** #: UserMenu/usermenuaddimpl.moc.cpp:34 UserMenu/usermenuaddimpl.moc.cpp:42 msgid "UserMenuAddImpl" ! msgstr "" #: UserMenu/usermenu.moc.cpp:34 UserMenu/usermenu.moc.cpp:42 msgid "UserMenuProcDlg" ! msgstr "" #: UserMenu/usermenu.moc.cpp:129 UserMenu/usermenu.moc.cpp:137 msgid "UserMenuProc" ! msgstr "" #: UserMenu/usermenu.moc.cpp:217 UserMenu/usermenu.moc.cpp:225 msgid "UserMenuGui" ! msgstr "" #: UserMenu/usermenu.moc.cpp:322 UserMenu/usermenu.moc.cpp:330 msgid "UserMenu" ! msgstr "" #: UserMenu/usermenuadd.cpp:198 --- 2046,2066 ---- #: UserMenu/usermenuaddimpl.moc.cpp:34 UserMenu/usermenuaddimpl.moc.cpp:42 msgid "UserMenuAddImpl" ! msgstr "ÐобавÑнеÐнÑÑÑÐÐоÑÑебиÑелÑкоÐенÑ" #: UserMenu/usermenu.moc.cpp:34 UserMenu/usermenu.moc.cpp:42 msgid "UserMenuProcDlg" ! msgstr "ÐоÑÑебиÑелÑкоÐенÑÐÑоÑеÑ" #: UserMenu/usermenu.moc.cpp:129 UserMenu/usermenu.moc.cpp:137 msgid "UserMenuProc" ! msgstr "ÐоÑÑебиÑелÑкоÐенÑÐÑоÑеÑ" #: UserMenu/usermenu.moc.cpp:217 UserMenu/usermenu.moc.cpp:225 msgid "UserMenuGui" ! msgstr "ÐоÑÑебиÑелÑкоÐенÑÐÐÐ" #: UserMenu/usermenu.moc.cpp:322 UserMenu/usermenu.moc.cpp:330 msgid "UserMenu" ! msgstr "ÐоÑÑебиÑелÑкоÐенÑ" #: UserMenu/usermenuadd.cpp:198 *************** *** 2095,2099 **** #: UserMenu/usermenuadd.cpp:204 msgid "Command accepts" ! msgstr "" #: UserMenu/usermenuadd.cpp:205 --- 2086,2090 ---- #: UserMenu/usermenuadd.cpp:204 msgid "Command accepts" ! msgstr "ÐÑиемани команди" #: UserMenu/usermenuadd.cpp:205 *************** *** 2321,2325 **** #: Synchronizer/synchronizergui.cpp:1114 Synchronizer/synchronizergui.cpp:1180 - #, fuzzy msgid "Deselect items" msgstr "ÐÑказ на избоÑа на обекÑи" --- 2312,2315 ---- *************** *** 2360,2366 **** #: Synchronizer/synchronizergui.moc.cpp:34 #: Synchronizer/synchronizergui.moc.cpp:42 - #, fuzzy msgid "SynchronizerGUI" ! msgstr "Ð¡Ð¸Ð½Ñ ÑонизаÑоÑ" #: Synchronizer/synchronizedialog.cpp:48 --- 2350,2355 ---- #: Synchronizer/synchronizergui.moc.cpp:34 #: Synchronizer/synchronizergui.moc.cpp:42 msgid "SynchronizerGUI" ! msgstr "Ð¡Ð¸Ð½Ñ ÑонизаÑоÑÐÐÐ" #: Synchronizer/synchronizedialog.cpp:48 *************** *** 2439,2443 **** #: Synchronizer/synchronizedialog.moc.cpp:34 #: Synchronizer/synchronizedialog.moc.cpp:42 - #, fuzzy msgid "SynchronizeDialog" msgstr "Ð¡Ð¸Ð½Ñ ÑонизиÑане" --- 2428,2431 ---- *************** *** 2984,2988 **** #: Konfigurator/kgcolors.cpp:99 Konfigurator/kgcolors.cpp:129 - #, fuzzy msgid "Same as background" msgstr "СÑÑо каÑо маÑкиÑан Ñон" --- 2972,2975 ---- *************** *** 3001,3007 **** #: Konfigurator/kgcolors.cpp:103 Konfigurator/kgcolors.cpp:133 - #, fuzzy msgid "Same as alt. background" ! msgstr "СÑÑо каÑо маÑкиÑан Ñон" #: Konfigurator/kgcolors.cpp:104 Konfigurator/kgcolors.cpp:135 --- 2988,2993 ---- #: Konfigurator/kgcolors.cpp:103 Konfigurator/kgcolors.cpp:133 msgid "Same as alt. background" ! msgstr "ÐаÑо маÑкиÑан Ñед. Ñон" #: Konfigurator/kgcolors.cpp:104 Konfigurator/kgcolors.cpp:135 *************** *** 3069,3073 **** #: Konfigurator/kgdependencies.moc.cpp:42 msgid "KgDependencies" ! msgstr "" #: Konfigurator/kgstartup.cpp:45 --- 3055,3059 ---- #: Konfigurator/kgdependencies.moc.cpp:42 msgid "KgDependencies" ! msgstr "ÐавиÑимоÑÑи" #: Konfigurator/kgstartup.cpp:45 *************** *** 3183,3188 **** #: Konfigurator/kgarchives.cpp:93 ! msgid "" ! "If checked, Krusader will test the archive's intergrity after packing it." msgstr "Ðко е оÑмеÑнаÑо, Krusader Ñе ÑеÑÑва аÑÑ Ð¸Ð²Ð° Ñлед аÑÑ Ð¸Ð²Ð¸ÑанеÑо." --- 3169,3173 ---- #: Konfigurator/kgarchives.cpp:93 ! msgid "If checked, Krusader will test the archive's intergrity after packing it." msgstr "Ðко е оÑмеÑнаÑо, Krusader Ñе ÑеÑÑва аÑÑ Ð¸Ð²Ð° Ñлед аÑÑ Ð¸Ð²Ð¸ÑанеÑо." *************** *** 3192,3197 **** #: Konfigurator/kgarchives.cpp:94 ! msgid "" ! "Some corrupted archives might cause a crash, therefore testing is suggested" msgstr "" "ÐÑкои повÑедени аÑÑ Ð¸Ð²Ð¸ Ð¼Ð¾Ð³Ð°Ñ Ð´Ð° пÑÐµÐ´Ð¸Ð·Ð²Ð¸ÐºÐ°Ñ ÑÑив, заÑова Ñакова ÑеÑÑване е " --- 3177,3181 ---- #: Konfigurator/kgarchives.cpp:94 ! msgid "Some corrupted archives might cause a crash, therefore testing is suggested" msgstr "" "ÐÑкои повÑедени аÑÑ Ð¸Ð²Ð¸ Ð¼Ð¾Ð³Ð°Ñ Ð´Ð° пÑÐµÐ´Ð¸Ð·Ð²Ð¸ÐºÐ°Ñ ÑÑив, заÑова Ñакова ÑеÑÑване е " *************** *** 3418,3423 **** #: krslots.cpp:417 msgid "Can't find \"KsysCtrl\". Please install KDE admin package" ! msgstr "" ! "Ðе намиÑам \"KsysCtrl\". ÐолÑ, инÑÑалиÑайÑе админиÑÑÑаÑоÑÑÐºÐ¸Ñ Ð¿Ð°ÐºÐµÑ Ð½Ð° KDE" #: krslots.cpp:425 --- 3402,3406 ---- #: krslots.cpp:417 msgid "Can't find \"KsysCtrl\". Please install KDE admin package" ! msgstr "Ðе намиÑам \"KsysCtrl\". ÐолÑ, инÑÑалиÑайÑе админиÑÑÑаÑоÑÑÐºÐ¸Ñ Ð¿Ð°ÐºÐµÑ Ð½Ð° KDE" #: krslots.cpp:425 *************** *** 3479,3483 **** #: Splitter/splittergui.moc.cpp:34 Splitter/splittergui.moc.cpp:42 msgid "SplitterGUI" ! msgstr "" #: Splitter/splittergui.cpp:39 --- 3462,3466 ---- #: Splitter/splittergui.moc.cpp:34 Splitter/splittergui.moc.cpp:42 msgid "SplitterGUI" ! msgstr "РазделÑнеÐÐÐ" #: Splitter/splittergui.cpp:39 *************** *** 3570,3575 **** #: Splitter/combiner.cpp:138 ! msgid "" ! "Validity checking is impossible without a good CRC file. Continue combining?" msgstr "" "ÐÑовеÑкаÑа за валидноÑÑ Ðµ невÑзможна без веÑен CRC Ñайл. Ðа пÑодÑлжи ли " --- 3553,3557 ---- #: Splitter/combiner.cpp:138 ! msgid "Validity checking is impossible without a good CRC file. Continue combining?" msgstr "" "ÐÑовеÑкаÑа за валидноÑÑ Ðµ невÑзможна без веÑен CRC Ñайл. Ðа пÑодÑлжи ли " *************** *** 3627,3628 **** --- 3609,3611 ---- #~ "ÑиÑÑемаÑа Ñе Ñкапе, ÑезÑлÑаÑа бÑде липÑваÑи Ñайлове. Ðко Ñова Ñе \n" #~ "ÑлÑÑи, Ñези Ñайлове Ñа запазени вÑв вÑеменнаÑа диÑекÑоÑÐ¸Ñ /tmp." + |
From: Karai C. <ck...@us...> - 2004-05-21 16:17:30
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22275/krusader_kde3/krusader/Dialogs Modified Files: newftpgui.cpp Log Message: FIXED: ports for fish and sftp protocols in new connection Index: newftpgui.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/newftpgui.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** newftpgui.cpp 25 Nov 2003 07:44:47 -0000 1.5 --- newftpgui.cpp 21 May 2004 16:17:19 -0000 1.6 *************** *** 807,812 **** void newFTPGUI::slotTextChanged(const QString& string){ ! if( string.startsWith("ftp") ) port->setEnabled(true); else port->setEnabled(false); --- 807,816 ---- void newFTPGUI::slotTextChanged(const QString& string){ ! if( string.startsWith("ftp") || string.startsWith("sftp") || string.startsWith("fish") ) ! { ! if( port->value() == 21 || port->value() == 22 ) ! port->setValue( string.startsWith("ftp") ? 21 : 22 ); port->setEnabled(true); + } else port->setEnabled(false); |
From: Karai C. <ck...@us...> - 2004-05-21 16:17:29
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22275/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: ports for fish and sftp protocols in new connection Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.232 retrieving revision 1.233 diff -C2 -d -r1.232 -r1.233 *** ChangeLog 19 May 2004 05:48:19 -0000 1.232 --- ChangeLog 21 May 2004 16:17:18 -0000 1.233 *************** *** 1,4 **** --- 1,5 ---- ====================== ADDED: Chinese Simplified translation + FIXED: ports cannot be added for fish, sftp in the new connection GUI FIXED: [ 943962 ] the summary status is not updated after calc space FIXED: [ 950762 ] missing pemission check on entering a folder |
From: Karai C. <ck...@us...> - 2004-05-19 05:48:29
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15659/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: calc space, status summary info is not updated Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.231 retrieving revision 1.232 diff -C2 -d -r1.231 -r1.232 *** ChangeLog 16 May 2004 16:01:42 -0000 1.231 --- ChangeLog 19 May 2004 05:48:19 -0000 1.232 *************** *** 1,8 **** ====================== ADDED: Chinese Simplified translation FIXED: [ 950762 ] missing pemission check on entering a folder ! FIXED: setting "xterm -e vim" as editor didn't work... ! FIXED: [ 953874 ] allowing editors which are not url-aware to be used as default editor ! FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 FIXED: the UI settings are not saved at exit FIXED: [ 951274 ] shift+home and shift+end does not work --- 1,9 ---- ====================== ADDED: Chinese Simplified translation + FIXED: [ 943962 ] the summary status is not updated after calc space FIXED: [ 950762 ] missing pemission check on entering a folder ! FIXED: setting "xterm -e vim" as editor didn't work... ! FIXED: [ 953874 ] allowing editors which are not url-aware to be used as default editor ! FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 FIXED: the UI settings are not saved at exit FIXED: [ 951274 ] shift+home and shift+end does not work |
From: Karai C. <ck...@us...> - 2004-05-19 05:48:29
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15659/krusader_kde3/krusader/Panel Modified Files: krdetailedview.cpp panelfunc.cpp Log Message: FIXED: calc space, status summary info is not updated Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** panelfunc.cpp 24 Apr 2004 09:33:06 -0000 1.64 --- panelfunc.cpp 19 May 2004 05:48:19 -0000 1.65 *************** *** 707,710 **** --- 707,711 ---- viewItem->repaintItem(); } + panel->slotUpdateTotals(); } Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** krdetailedview.cpp 12 May 2004 16:13:29 -0000 1.78 --- krdetailedview.cpp 19 May 2004 05:48:19 -0000 1.79 *************** *** 774,781 **** case Key_Space : { KrDetailedViewItem * viewItem = dynamic_cast<KrDetailedViewItem *> ( getCurrentKrViewItem() ); ! if ( !viewItem || !( viewItem->isDir() && viewItem->size() <= 0 ) || viewItem->name()==".." ) { KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Space, 0, 0 ) ); return ; // wrong type, just mark(unmark it) } // // NOTE: this is buggy incase somewhere down in the folder we're calculating, --- 774,785 ---- case Key_Space : { KrDetailedViewItem * viewItem = dynamic_cast<KrDetailedViewItem *> ( getCurrentKrViewItem() ); ! if ( !viewItem || viewItem->name()==".." ) { KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Space, 0, 0 ) ); return ; // wrong type, just mark(unmark it) } + if ( !( viewItem->isDir() && viewItem->size() <= 0 ) ) { + KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Insert, 0, 0 ) ); + return ; + } // // NOTE: this is buggy incase somewhere down in the folder we're calculating, *************** *** 797,801 **** viewItem->repaintItem(); } ! //KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Space, 0, 0 ) ); } break; --- 801,805 ---- viewItem->repaintItem(); } ! KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Space, 0, 0 ) ); } break; |
From: Shie E. <er...@us...> - 2004-05-16 16:01:51
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28501 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.230 retrieving revision 1.231 diff -C2 -d -r1.230 -r1.231 *** ChangeLog 16 May 2004 15:36:18 -0000 1.230 --- ChangeLog 16 May 2004 16:01:42 -0000 1.231 *************** *** 1,5 **** ====================== ADDED: Chinese Simplified translation ! FIXED: setting "xterm -e vim" as editor didn't work... FIXED: [ 953874 ] allowing editors which are not url-aware to be used as default editor FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 --- 1,6 ---- ====================== ADDED: Chinese Simplified translation ! FIXED: [ 950762 ] missing pemission check on entering a folder ! FIXED: setting "xterm -e vim" as editor didn't work... FIXED: [ 953874 ] allowing editors which are not url-aware to be used as default editor FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 |