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: Shie E. <er...@us...> - 2004-07-07 14:22:24
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10576 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.246 retrieving revision 1.247 diff -C2 -d -r1.246 -r1.247 *** ChangeLog 6 Jul 2004 12:12:24 -0000 1.246 --- ChangeLog 7 Jul 2004 14:22:14 -0000 1.247 *************** *** 1,2 **** --- 1,5 ---- + ADDED: when searching in files (grep), push the string we're searching for into + the clipboard when pressing F3 or F4. this saves an extra copy when searching + inside the file ADDED: Catalan translation FIXED: username and group information are wrong for ftp_vfs |
From: Shie E. <er...@us...> - 2004-07-07 14:19:55
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9827/krusader/Search Modified Files: krsearchdialog.cpp Log Message: when grepping, push the string we're searching for to the clipboard when pressing f3 or f4 Index: krsearchdialog.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Search/krsearchdialog.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** krsearchdialog.cpp 10 Feb 2004 18:36:54 -0000 1.16 --- krsearchdialog.cpp 7 Jul 2004 14:19:47 -0000 1.17 *************** *** 70,73 **** --- 70,74 ---- #include <kpopupmenu.h> #include <qcursor.h> + #include <qclipboard.h> // private functions - used as services ///////////////////// *************** *** 618,621 **** --- 619,624 ---- if( e->key() == Key_F4 ) { + if (!containsText->currentText().isEmpty() && QApplication::clipboard()->text() != containsText->currentText()) + QApplication::clipboard()->setText(containsText->currentText()); editCurrent(); return; *************** *** 623,626 **** --- 626,631 ---- else if( e->key() == Key_F3 ) { + if (!containsText->currentText().isEmpty() && QApplication::clipboard()->text() != containsText->currentText()) + QApplication::clipboard()->setText(containsText->currentText()); viewCurrent(); return; |
From: Dirk E. <des...@us...> - 2004-07-06 12:15:01
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23912/krusader Modified Files: main.cpp Log Message: Added "Catalan translation" credit Index: main.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/main.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** main.cpp 29 Apr 2004 19:20:07 -0000 1.28 --- main.cpp 6 Jul 2004 12:14:50 -0000 1.29 *************** *** 91,94 **** --- 91,95 ---- aboutData.addCredit("Milen Ivanov","Bulgarian translation","mil...@ab...",0); aboutData.addCredit("Jinghua Luo","Chinese Simplified translation","luo...@ms...",0); + aboutData.addCredit("Quim Perez","Catalan translation","no...@os...",0); aboutData.addCredit("Milan Brabec","the first patch ever !","mb...@vo...",0); |
From: Dirk E. <des...@us...> - 2004-07-06 12:12:33
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23544 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.245 retrieving revision 1.246 diff -C2 -d -r1.245 -r1.246 *** ChangeLog 5 Jul 2004 15:04:39 -0000 1.245 --- ChangeLog 6 Jul 2004 12:12:24 -0000 1.246 *************** *** 1,2 **** --- 1,3 ---- + ADDED: Catalan translation FIXED: username and group information are wrong for ftp_vfs FIXED: UMR (uninitialized memory read) in vfs::fromPathOrURL |
From: Dirk E. <des...@us...> - 2004-07-06 12:11:02
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22991/po Added Files: ca.po Log Message: krusader-1.40 (needs update) --- NEW FILE: ca.po --- # Translation of krusader.pot to Catalan # # 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 # Rafael Munoz Rodriguez <raf...@ne...>, 2003. # Quim Perez <no...@os...>, 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-07-03 13:54+0200\n" "Last-Translator: Quim Perez <no...@os...>\n" "Language-Team: Catalan\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" [...3879 lines suppressed...] #~ msgid "Quickview, List" #~ msgstr "Previsualitzar, Llista" #~ msgid "Panel types (left,right):" #~ msgstr "Tipus de plafons (esquerra, dreta):" #~ 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 "" #~ "Aquesta acció pot ser delicada, si l'equip falla mentre dura el procés\n" #~ "es podrien perdre els fitxers. Si passa això els fitxers\n" #~ "quederan al directori temporal /tmp." #~ msgid "Choose an editor" #~ msgstr "Escull un editor" #~ msgid "Choose a temporary directory" #~ msgstr "Escull un directori temporal" |
From: Shie E. <er...@us...> - 2004-07-06 07:13:22
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2457 Modified Files: kmountman.cpp Log Message: sorry, broke it by accident ;-) Index: kmountman.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountman.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** kmountman.cpp 5 Jul 2004 16:09:30 -0000 1.25 --- kmountman.cpp 6 Jul 2004 07:13:12 -0000 1.26 *************** *** 72,81 **** KMountMan::KMountMan() : QObject(), Ready( false ), Operational( false ), outputBuffer( 0 ), tempFile( 0 ), mountManGui( 0 ), mtab( "" ) { ! //#ifdef _OS_SOLARIS_ // disable mountman on solaris because of df issues. // at least until we find a solaris box to test on Operational = Ready = false; return; ! //#endif #if KDE_IS_VERSION(3,2,0) _actions = 0L; --- 72,81 ---- KMountMan::KMountMan() : QObject(), Ready( false ), Operational( false ), outputBuffer( 0 ), tempFile( 0 ), mountManGui( 0 ), mtab( "" ) { ! #ifdef _OS_SOLARIS_ // disable mountman on solaris because of df issues. // at least until we find a solaris box to test on Operational = Ready = false; return; ! #endif #if KDE_IS_VERSION(3,2,0) _actions = 0L; |
From: Dirk E. <des...@us...> - 2004-07-05 21:13:27
|
Update of /cvsroot/krusader/krusader_kde3/pics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5585/pics Modified Files: mountman16x16.png mountman22x22.png mountman32x32.png Log Message: UPDATED: New mountman icons (fixes the last remaining blurry toolbar icon) Index: mountman22x22.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/pics/mountman22x22.png,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvswRajOO and /tmp/cvsjqToQ2 differ Index: mountman32x32.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/pics/mountman32x32.png,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvskTGnCT and /tmp/cvsBRuAH7 differ Index: mountman16x16.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/pics/mountman16x16.png,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsmQNS01 and /tmp/cvst6729f differ |
From: Dirk E. <des...@us...> - 2004-07-05 21:13:27
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5585/krusader Modified Files: krusader.cpp Log Message: UPDATED: New mountman icons (fixes the last remaining blurry toolbar icon) Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** krusader.cpp 14 May 2004 20:13:46 -0000 1.69 --- krusader.cpp 5 Jul 2004 21:13:14 -0000 1.70 *************** *** 431,440 **** SLOTS, SLOT( FTPDisconnect() ), actionCollection(), "ftp disconnect" ); #if KDE_IS_VERSION(3,2,0) /* new mountman feature is available in kde 3.2 only! */ ! actMountMan = new KToolBarPopupAction( i18n( "&MountMan" ), "kcmpartitions", ALT + Key_Slash, SLOTS, SLOT( runMountMan() ), actionCollection(), "mountman" ); connect( ( ( KToolBarPopupAction* ) actMountMan ) ->popupMenu(), SIGNAL( aboutToShow() ), mountMan, SLOT( quickList() ) ); #else ! actMountMan = new KAction( i18n( "&MountMan" ), "kcmpartitions", ALT + Key_Slash, SLOTS, SLOT( runMountMan() ), actionCollection(), "mountman" ); #endif /* KDE 3.2 */ --- 431,440 ---- SLOTS, SLOT( FTPDisconnect() ), actionCollection(), "ftp disconnect" ); #if KDE_IS_VERSION(3,2,0) /* new mountman feature is available in kde 3.2 only! */ ! actMountMan = new KToolBarPopupAction( i18n( "&MountMan" ), "kr_mountman", ALT + Key_Slash, SLOTS, SLOT( runMountMan() ), actionCollection(), "mountman" ); connect( ( ( KToolBarPopupAction* ) actMountMan ) ->popupMenu(), SIGNAL( aboutToShow() ), mountMan, SLOT( quickList() ) ); #else ! actMountMan = new KAction( i18n( "&MountMan" ), "kr_mountman", ALT + Key_Slash, SLOTS, SLOT( runMountMan() ), actionCollection(), "mountman" ); #endif /* KDE 3.2 */ |
From: Shie E. <er...@us...> - 2004-07-05 16:09:40
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14669/krusader/MountMan Modified Files: kmountman.cpp Log Message: 1) disabled MtMan for solaris (until we get access to a solaris box) since it dies 2) fixed 2 buges in mtman Index: kmountman.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountman.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** kmountman.cpp 5 Jul 2004 15:49:34 -0000 1.24 --- kmountman.cpp 5 Jul 2004 16:09:30 -0000 1.25 *************** *** 72,75 **** --- 72,81 ---- KMountMan::KMountMan() : QObject(), Ready( false ), Operational( false ), outputBuffer( 0 ), tempFile( 0 ), mountManGui( 0 ), mtab( "" ) { + //#ifdef _OS_SOLARIS_ + // disable mountman on solaris because of df issues. + // at least until we find a solaris box to test on + Operational = Ready = false; + return; + //#endif #if KDE_IS_VERSION(3,2,0) _actions = 0L; *************** *** 683,686 **** --- 689,699 ---- QString stats; connect( this, SIGNAL( gotStats( QString ) ), caller, SLOT( gotStats( QString ) ) ); + + // is mountman even alive? + if (!krMtMan.operational()) { + stats = i18n("MountMan is not operational. Sorry"); + emit gotStats(stats); + return; + } #ifdef BSD if ( path.left( 5 ) == "/procfs" ) { // /procfs is a special case - no volume information *************** *** 806,809 **** --- 819,826 ---- // populate the pop-up menu of the mountman tool-button with actions void KMountMan::quickList() { + if (!Operational) { + KMessageBox::error(0, i18n("MountMan is not operational. Sorry")); + return; + } #if KDE_IS_VERSION(3,2,0) |
From: Shie E. <er...@us...> - 2004-07-05 15:49:43
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10835 Modified Files: kmountman.cpp Log Message: fix for BSD wasn't right for SOLARIS after all Index: kmountman.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountman.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** kmountman.cpp 4 Jul 2004 12:16:21 -0000 1.23 --- kmountman.cpp 5 Jul 2004 15:49:34 -0000 1.24 *************** *** 195,199 **** for ( j = 0; j <= i; ++j ) { if ( temp[ 0 ][ j ] == "" || temp[ 0 ][ j ] == "tmpfs" || temp[ 0 ][ j ] == "none" || temp[ 0 ][ j ] == "proc" || ! #if defined(BSD) || defined(_OS_SOLARIS_) temp[ 0 ][ j ] == "swap" || temp[ 1 ][ j ] == "procfs" || temp[ 1 ][ j ] == "/dev/pts" || // FreeBSD: procfs instead of proc #else --- 195,199 ---- for ( j = 0; j <= i; ++j ) { if ( temp[ 0 ][ j ] == "" || temp[ 0 ][ j ] == "tmpfs" || temp[ 0 ][ j ] == "none" || temp[ 0 ][ j ] == "proc" || ! #ifdef BSD temp[ 0 ][ j ] == "swap" || temp[ 1 ][ j ] == "procfs" || temp[ 1 ][ j ] == "/dev/pts" || // FreeBSD: procfs instead of proc #else *************** *** 230,234 **** kdDebug() << "Mt.Man: found the following:\n" << forDebugOnly << "Trying DF..." << endl; ! #if defined(BSD) || defined(_OS_SOLARIS_) // FreeBSD problem: df does not retrive fs type. // Workaround: execute mount -p and merge result. --- 230,234 ---- kdDebug() << "Mt.Man: found the following:\n" << forDebugOnly << "Trying DF..." << endl; ! #ifdef BSD // FreeBSD problem: df does not retrive fs type. // Workaround: execute mount -p and merge result. *************** *** 293,297 **** dfProc.clearArguments(); dfProc.setExecutable( KrServices::fullPathName( "df" ) ); ! #if defined(BSD) || defined(_OS_SOLARIS_) dfProc << ">" << tempFile->name(); // FreeBSD: df instead of df -T -P #else --- 293,297 ---- dfProc.clearArguments(); dfProc.setExecutable( KrServices::fullPathName( "df" ) ); ! #ifdef BSD dfProc << ">" << tempFile->name(); // FreeBSD: df instead of df -T -P #else *************** *** 329,333 **** for ( it = filesystems.first() ; ( it != 0 ) ; it = filesystems.next() ) { if ( followLink( it->name() ) == followLink( name ) ) break; ! #if defined(BSD) || defined(_OS_SOLARIS_) if ( name.left( 2 ) == "//" && !strcasecmp( followLink( it->name() ).latin1(), followLink( name ).latin1() ) ) break; // FreeBSD: ignore case due to smbfs mounts #endif --- 329,333 ---- for ( it = filesystems.first() ; ( it != 0 ) ; it = filesystems.next() ) { if ( followLink( it->name() ) == followLink( name ) ) break; ! #ifdef BSD if ( name.left( 2 ) == "//" && !strcasecmp( followLink( it->name() ).latin1(), followLink( name ).latin1() ) ) break; // FreeBSD: ignore case due to smbfs mounts #endif *************** *** 442,446 **** // avoid adding unwanted filesystems to the list if ( temp == "tmpfs" ) continue; ! #if defined (BSD) || defined(_OS_SOLARIS_) if ( temp == "procfs" ) continue; // FreeBSD: ignore procfs too #endif --- 442,446 ---- // avoid adding unwanted filesystems to the list if ( temp == "tmpfs" ) continue; ! #ifdef BSD if ( temp == "procfs" ) continue; // FreeBSD: ignore procfs too #endif *************** *** 459,463 **** newFS = true; } ! #if !defined(BSD) && !defined(_OS_SOLARIS_) temp = nextWord( s, ' ' ); // catch the TYPE // is it supermounted ? --- 459,463 ---- newFS = true; } ! #ifndef BSD temp = nextWord( s, ' ' ); // catch the TYPE // is it supermounted ? *************** *** 668,672 **** // returns true if the path is an ejectable mount point (at the moment CDROM) bool KMountMan::ejectable( QString path ) { ! #if !defined(BSD) && !defined(_OS_SOLARIS_) fsData * it; for ( it = filesystems.first() ; ( it != 0 ) ; it = filesystems.next() ) --- 668,672 ---- // returns true if the path is an ejectable mount point (at the moment CDROM) bool KMountMan::ejectable( QString path ) { ! #ifndef BSD fsData * it; for ( it = filesystems.first() ; ( it != 0 ) ; it = filesystems.next() ) *************** *** 683,687 **** QString stats; connect( this, SIGNAL( gotStats( QString ) ), caller, SLOT( gotStats( QString ) ) ); ! #if defined(BSD) || defined(_OS_SOLARIS_) if ( path.left( 5 ) == "/procfs" ) { // /procfs is a special case - no volume information stats = i18n( "No space information on a [procfs]" ); --- 683,687 ---- QString stats; connect( this, SIGNAL( gotStats( QString ) ), caller, SLOT( gotStats( QString ) ) ); ! #ifdef BSD if ( path.left( 5 ) == "/procfs" ) { // /procfs is a special case - no volume information stats = i18n( "No space information on a [procfs]" ); *************** *** 722,726 **** s = t.readLine(); // read the 1st line - it's trash for us s = t.readLine(); // this is the important one! ! #if !defined(BSD) && !defined(_OS_SOLARIS_) data->setName( KMountMan::nextWord( s, ' ' ) ); #endif --- 722,726 ---- s = t.readLine(); // read the 1st line - it's trash for us s = t.readLine(); // this is the important one! ! #ifndef BSD data->setName( KMountMan::nextWord( s, ' ' ) ); #endif *************** *** 746,750 **** QString tmpFile = krApp->getTempFile(); ! #if defined(BSD) || defined(_OS_SOLARIS_) dfProc << KrServices::fullPathName ( "df" ) << "\"" + path + "\"" << ">" << tmpFile; // FreeBSD: df instead of df -T -P #else --- 746,750 ---- QString tmpFile = krApp->getTempFile(); ! #ifdef BSD dfProc << KrServices::fullPathName ( "df" ) << "\"" + path + "\"" << ">" << tmpFile; // FreeBSD: df instead of df -T -P #else |
From: Karai C. <ck...@us...> - 2004-07-05 15:05:19
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3148/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: owner and group information is wrong for FTP_VFS Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.244 retrieving revision 1.245 diff -C2 -d -r1.244 -r1.245 *** ChangeLog 30 Jun 2004 19:11:33 -0000 1.244 --- ChangeLog 5 Jul 2004 15:04:39 -0000 1.245 *************** *** 1,2 **** --- 1,3 ---- + FIXED: username and group information are wrong for ftp_vfs FIXED: UMR (uninitialized memory read) in vfs::fromPathOrURL UPDATED: Polish translation |
From: Karai C. <ck...@us...> - 2004-07-05 15:04:57
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3148/krusader_kde3/krusader/Panel Modified Files: krdetailedviewitem.cpp Log Message: FIXED: owner and group information is wrong for FTP_VFS Index: krdetailedviewitem.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** krdetailedviewitem.cpp 1 Apr 2004 22:07:40 -0000 1.26 --- krdetailedviewitem.cpp 5 Jul 2004 15:04:40 -0000 1.27 *************** *** 91,106 **** setText(id, _vf->vfile_getPerm()); if ((id = _view->column(KrDetailedView::Owner)) != -1) { ! uid_t uid = _vf->vfile_getUid(); ! QString username = QString("%1").arg((int)uid); ! struct passwd *p = getpwuid(uid); ! if (p!=NULL) username = QString(p->pw_name); ! setText(id, username); } if ((id = _view->column(KrDetailedView::Group)) != -1) { ! gid_t gid = _vf->vfile_getGid(); ! QString grpname = QString("%1").arg((int)gid); ! struct group *g = getgrgid(gid); ! if (g!=NULL) grpname = QString(g->gr_name); ! setText(id, grpname); } // if we've got an extention column, clip the name accordingly --- 91,98 ---- setText(id, _vf->vfile_getPerm()); if ((id = _view->column(KrDetailedView::Owner)) != -1) { ! setText(id, _vf->vfile_getOwner()); } if ((id = _view->column(KrDetailedView::Group)) != -1) { ! setText(id, _vf->vfile_getGroup()); } // if we've got an extention column, clip the name accordingly |
From: Karai C. <ck...@us...> - 2004-07-05 15:04:56
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3148/krusader_kde3/krusader/VFS Modified Files: vfile.cpp Log Message: FIXED: owner and group information is wrong for FTP_VFS Index: vfile.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/vfile.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** vfile.cpp 16 Mar 2004 08:23:17 -0000 1.10 --- vfile.cpp 5 Jul 2004 15:04:48 -0000 1.11 *************** *** 125,129 **** QString vfile::vfile_getGroup(){ if( vfile_group.isEmpty() ) ! vfile_group=KRpermHandler::uid2user(vfile_getGid()); return vfile_group; } --- 125,129 ---- QString vfile::vfile_getGroup(){ if( vfile_group.isEmpty() ) ! vfile_group=KRpermHandler::gid2group(vfile_getGid()); return vfile_group; } |
From: Shie E. <er...@us...> - 2004-07-04 12:16:32
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17369/krusader/MountMan Modified Files: kmountman.cpp Log Message: applied the BSD patch also to SOLARIS Index: kmountman.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountman.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** kmountman.cpp 4 Apr 2004 22:05:30 -0000 1.22 --- kmountman.cpp 4 Jul 2004 12:16:21 -0000 1.23 *************** *** 195,199 **** for ( j = 0; j <= i; ++j ) { if ( temp[ 0 ][ j ] == "" || temp[ 0 ][ j ] == "tmpfs" || temp[ 0 ][ j ] == "none" || temp[ 0 ][ j ] == "proc" || ! #ifdef BSD temp[ 0 ][ j ] == "swap" || temp[ 1 ][ j ] == "procfs" || temp[ 1 ][ j ] == "/dev/pts" || // FreeBSD: procfs instead of proc #else --- 195,199 ---- for ( j = 0; j <= i; ++j ) { if ( temp[ 0 ][ j ] == "" || temp[ 0 ][ j ] == "tmpfs" || temp[ 0 ][ j ] == "none" || temp[ 0 ][ j ] == "proc" || ! #if defined(BSD) || defined(_OS_SOLARIS_) temp[ 0 ][ j ] == "swap" || temp[ 1 ][ j ] == "procfs" || temp[ 1 ][ j ] == "/dev/pts" || // FreeBSD: procfs instead of proc #else *************** *** 230,234 **** kdDebug() << "Mt.Man: found the following:\n" << forDebugOnly << "Trying DF..." << endl; ! #ifdef BSD // FreeBSD problem: df does not retrive fs type. // Workaround: execute mount -p and merge result. --- 230,234 ---- kdDebug() << "Mt.Man: found the following:\n" << forDebugOnly << "Trying DF..." << endl; ! #if defined(BSD) || defined(_OS_SOLARIS_) // FreeBSD problem: df does not retrive fs type. // Workaround: execute mount -p and merge result. *************** *** 293,297 **** dfProc.clearArguments(); dfProc.setExecutable( KrServices::fullPathName( "df" ) ); ! #ifdef BSD dfProc << ">" << tempFile->name(); // FreeBSD: df instead of df -T -P #else --- 293,297 ---- dfProc.clearArguments(); dfProc.setExecutable( KrServices::fullPathName( "df" ) ); ! #if defined(BSD) || defined(_OS_SOLARIS_) dfProc << ">" << tempFile->name(); // FreeBSD: df instead of df -T -P #else *************** *** 329,333 **** for ( it = filesystems.first() ; ( it != 0 ) ; it = filesystems.next() ) { if ( followLink( it->name() ) == followLink( name ) ) break; ! #ifdef BSD if ( name.left( 2 ) == "//" && !strcasecmp( followLink( it->name() ).latin1(), followLink( name ).latin1() ) ) break; // FreeBSD: ignore case due to smbfs mounts #endif --- 329,333 ---- for ( it = filesystems.first() ; ( it != 0 ) ; it = filesystems.next() ) { if ( followLink( it->name() ) == followLink( name ) ) break; ! #if defined(BSD) || defined(_OS_SOLARIS_) if ( name.left( 2 ) == "//" && !strcasecmp( followLink( it->name() ).latin1(), followLink( name ).latin1() ) ) break; // FreeBSD: ignore case due to smbfs mounts #endif *************** *** 442,446 **** // avoid adding unwanted filesystems to the list if ( temp == "tmpfs" ) continue; ! #ifdef BSD if ( temp == "procfs" ) continue; // FreeBSD: ignore procfs too #endif --- 442,446 ---- // avoid adding unwanted filesystems to the list if ( temp == "tmpfs" ) continue; ! #if defined (BSD) || defined(_OS_SOLARIS_) if ( temp == "procfs" ) continue; // FreeBSD: ignore procfs too #endif *************** *** 459,463 **** newFS = true; } ! #ifndef BSD temp = nextWord( s, ' ' ); // catch the TYPE // is it supermounted ? --- 459,463 ---- newFS = true; } ! #if !defined(BSD) && !defined(_OS_SOLARIS_) temp = nextWord( s, ' ' ); // catch the TYPE // is it supermounted ? *************** *** 668,672 **** // returns true if the path is an ejectable mount point (at the moment CDROM) bool KMountMan::ejectable( QString path ) { ! #ifndef BSD fsData * it; for ( it = filesystems.first() ; ( it != 0 ) ; it = filesystems.next() ) --- 668,672 ---- // returns true if the path is an ejectable mount point (at the moment CDROM) bool KMountMan::ejectable( QString path ) { ! #if !defined(BSD) && !defined(_OS_SOLARIS_) fsData * it; for ( it = filesystems.first() ; ( it != 0 ) ; it = filesystems.next() ) *************** *** 683,687 **** QString stats; connect( this, SIGNAL( gotStats( QString ) ), caller, SLOT( gotStats( QString ) ) ); ! #ifdef BSD if ( path.left( 5 ) == "/procfs" ) { // /procfs is a special case - no volume information stats = i18n( "No space information on a [procfs]" ); --- 683,687 ---- QString stats; connect( this, SIGNAL( gotStats( QString ) ), caller, SLOT( gotStats( QString ) ) ); ! #if defined(BSD) || defined(_OS_SOLARIS_) if ( path.left( 5 ) == "/procfs" ) { // /procfs is a special case - no volume information stats = i18n( "No space information on a [procfs]" ); *************** *** 722,726 **** s = t.readLine(); // read the 1st line - it's trash for us s = t.readLine(); // this is the important one! ! #ifndef BSD data->setName( KMountMan::nextWord( s, ' ' ) ); #endif --- 722,726 ---- s = t.readLine(); // read the 1st line - it's trash for us s = t.readLine(); // this is the important one! ! #if !defined(BSD) && !defined(_OS_SOLARIS_) data->setName( KMountMan::nextWord( s, ' ' ) ); #endif *************** *** 746,750 **** QString tmpFile = krApp->getTempFile(); ! #ifdef BSD dfProc << KrServices::fullPathName ( "df" ) << "\"" + path + "\"" << ">" << tmpFile; // FreeBSD: df instead of df -T -P #else --- 746,750 ---- QString tmpFile = krApp->getTempFile(); ! #if defined(BSD) || defined(_OS_SOLARIS_) dfProc << KrServices::fullPathName ( "df" ) << "\"" + path + "\"" << ">" << tmpFile; // FreeBSD: df instead of df -T -P #else |
From: Frank S. <cod...@us...> - 2004-07-02 19:33:08
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15203 Modified Files: krusader.spec Log Message: krusader-1.40-beta2 on Mandrake 9.2 Index: krusader.spec =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader.spec,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** krusader.spec 15 May 2004 19:26:35 -0000 1.5 --- krusader.spec 2 Jul 2004 19:32:57 -0000 1.6 *************** *** 1,6 **** # krusader.spec use rpmbuild to build a Krusader RPM package ! # Derived from spec file by Laurent MONTEL <lm...@ma...> ! ! # this spec file works on Mandrake 9.2 for krusader 1.40 beta1 # other distributions may need todo some modifications # If you have comments or suggestions about this spec file please send it to --- 1,4 ---- # krusader.spec use rpmbuild to build a Krusader RPM package ! # this spec file works on Mandrake 9.2 for krusader 1.40 # other distributions may need todo some modifications # If you have comments or suggestions about this spec file please send it to *************** *** 8,33 **** # Thanks for your cooperation! ! # RPM package name ! %define name krusader ! %define version 1.40 ! %define release beta1.mdk92 ! # Name of the packager: please replace the following text with ! # your name and e-mail adress ! %define packager your name <your e-...@ad...o> ! # Package information Summary: advanced twin-panel file-manager for KDE 3.x ! Name: %{name} ! Version: %{version} ! Release: %{release} ! Source0: %name-%{version}-beta1.tar.gz #Source0: %{name}-%{version}.tar.gz - #not used Patch0: foo.patch.gz License: GPL Group: File tools ! # requirements for building the software package, these are not the PRM requirements ! # e.g. for installing the RPM you will not need a C-compiler BuildRequires: automake autoconf diffutils file m4 texinfo gettext zlib1 BuildRequires: kdelibs kdelibs-devel >= 3 libqt3 >= 3 libqt-devel --- 6,24 ---- # Thanks for your cooperation! ! %define beta beta2 # Package information Summary: advanced twin-panel file-manager for KDE 3.x ! Name: krusader ! Version: 1.40 ! Release: %{beta}.mdk92 ! Distribution: Mandrake Linux 9.2 ! Source0: %{name}-%{version}-%{beta}.tar.gz #Source0: %{name}-%{version}.tar.gz License: GPL Group: File tools ! # requirements for building the software package, these are not the binary PRM requirements ! # e.g. for installing the binary RPM you don't need a C-compiler BuildRequires: automake autoconf diffutils file m4 texinfo gettext zlib1 BuildRequires: kdelibs kdelibs-devel >= 3 libqt3 >= 3 libqt-devel *************** *** 38,51 **** # BuildRoot: dir who acts as a staging area that looks like the final install dir ! # tipicaly(for Mandrake): /var/tmp/krusader-buildroot # this will become the %%RPM_BUILD_ROOT enviroment variable BuildRoot: %{_tmppath}/%{name}-buildroot URL: http://krusader.sourceforge.net ! #not used Epoch: 1 ! Vendor: Shie Erlich, Rafi Yanai, Krusader Krew <kru...@us...> ! Packager: %{packager} ! # dependencies requirements for the RPM package Requires: kdelibs --- 29,45 ---- # BuildRoot: dir who acts as a staging area that looks like the final install dir ! # tipicaly (for Mandrake): /var/tmp/krusader-buildroot # this will become the %%RPM_BUILD_ROOT enviroment variable BuildRoot: %{_tmppath}/%{name}-buildroot URL: http://krusader.sourceforge.net ! Vendor: Krusader Krew <kru...@us...> ! Packager: Frank Schoolmeesters <fra...@fa...> + # makes binary rpm relocatable e.g. + # rpm -Uvh --relocate /usr=/opt krusader-1.40.mdk92.i586.rpm + # rpm -Uvh --relocate /usr=/usr/local krusader-1.40.mdk92.i586.rpm + Prefix: /usr ! # dependencies requirements for the binary RPM package Requires: kdelibs *************** *** 66,75 **** # in /usr/src/RPM/BUILD/krusader-%version on Mandrake %prep - rm -rf $RPM_BUILD_ROOT # changes to the build dir /usr/src/RPM/BUILD/krusader-%version on Mandrake # -q: run quitely ! %setup -q -n %name-%version-beta1 ! #%setup -q -n %name-%version ! #%%patch1 -p1 -b .foo --- 60,66 ---- # in /usr/src/RPM/BUILD/krusader-%version on Mandrake %prep # changes to the build dir /usr/src/RPM/BUILD/krusader-%version on Mandrake # -q: run quitely ! %setup -q -n %{name}-%{version}-%{beta} *************** *** 77,82 **** %build # set enviroment variables ! export QTDIR=%_libdir/qt3 ! export KDEDIR=%_prefix export LD_LIBRARY_PATH=$QTDIR/lib:$KDEDIR/lib:$LD_LIBRARY_PATH --- 68,73 ---- %build # set enviroment variables ! export QTDIR=%{_libdir}/qt3 ! export KDEDIR=%{_prefix} export LD_LIBRARY_PATH=$QTDIR/lib:$KDEDIR/lib:$LD_LIBRARY_PATH *************** *** 90,96 **** # bindir = /usr/bin on Mandrake # datadir = /usr/share on Mandrake ! ./configure --prefix=%_prefix \ ! --bindir=%_bindir \ ! --datadir=%_datadir \ --disable-rpath \ --disable-debug --- 81,87 ---- # bindir = /usr/bin on Mandrake # datadir = /usr/share on Mandrake ! ./configure --prefix=%{_prefix} \ ! --bindir=%{_bindir} \ ! --datadir=%{_datadir} \ --disable-rpath \ --disable-debug *************** *** 107,116 **** # menu mkdir -p $RPM_BUILD_ROOT%{_menudir} ! # adds krusader in the KDE menu at "Applications/File tools" ! kdedesktop2mdkmenu.pl krusader "Applications/File tools" %buildroot/%_datadir/applnk/Applications/krusader.desktop %buildroot/%_menudir/krusader # removes /usr/share/mimelnk/application/x-ace.desktop on Mandrake ! rm -rf $RPM_BUILD_ROOT/%_datadir/mimelnk/application/*.desktop %find_lang %{name} --- 98,113 ---- # menu mkdir -p $RPM_BUILD_ROOT%{_menudir} ! # adds krusader in the KDE menu with the file /usr/lib/menu/krusader on Mandrake ! # Kmenu -> "Applications/File tools" -> krusader ! # /usr/bin/kdedesktop2mdkmenu.pl is a Mandrake Perl script to generate the Kmenu entry ! kdedesktop2mdkmenu.pl krusader "Applications/File tools" %{buildroot}/%{_datadir}/applnk/Applications/krusader.desktop %{buildroot}/%{_menudir}/krusader ! ! # removes /usr/share/mimelnk/application/x-ace.desktop on Mandrake ! # because x-ace.desktop is now provided by KDE ! # rm -rf $RPM_BUILD_ROOT/%{_datadir}/mimelnk/application/*.desktop + # find the installed languages e.g. French (fr), Dutch (nl), ... %find_lang %{name} *************** *** 137,209 **** # all the files that the RPM package should install, this list must be exhausitive # i18n /usr/share/locale/foo/LC_MESSAGES/krusader.mo on mandrake %files -f %name.lang ! # set default attributes for all files in the package (-, user, group) # - = leave the permissions like the are in the source tarball e.g. 644 %defattr(-,root,root) # documentation files (docdir name does not need to be included) ! %doc README AUTHORS ChangeLog TODO COPYING krusader.lsm INSTALL # Docbook documentation %doc %{_datadir}/doc/HTML/en/* # bindir = /usr/bin, krusader binary: /usr/bin/krusader on Mandrake ! %_bindir/* ! # datadir = /usr/lib, usr/lib/kde3, usr/lib/menu on Mandrake ! %_libdir/* # datadir = /usr/share on Mandrake ! %_datadir/applnk/Applications/krusader.desktop # /usr/share/apps/krusader/ on Mandrake # dir = inlude empty dir but not the files ! %dir %_datadir/apps/krusader/ ! %_datadir/apps/krusader/*.rc ! %_datadir/apps/krusader/*.png ! %_datadir/apps/krusader/*.jpg # /usr/share/apps/krusader/icons/ on Mandrake ! %dir %_datadir/apps/krusader/icons/ ! %dir %_datadir/apps/krusader/icons/hicolor/ # /usr/share/apps/krusader/icons/hicolor/16x16/actions/*.png on Mandrake ! %dir %_datadir/apps/krusader/icons/hicolor/16x16/ ! %dir %_datadir/apps/krusader/icons/hicolor/16x16/actions/ ! %_datadir/apps/krusader/icons/hicolor/16x16/actions/*.png # /usr/share/apps/krusader/icons/hicolor/22x22/actions/*.png on Mandrake ! %dir %_datadir/apps/krusader/icons/hicolor/22x22/ ! %dir %_datadir/apps/krusader/icons/hicolor/22x22/actions/ ! %_datadir/apps/krusader/icons/hicolor/22x22/actions/*.png # /usr/share/apps/krusader/icons/hicolor/32x32/actions/*.png on Mandrake ! %dir %_datadir/apps/krusader/icons/hicolor/32x32/ ! %dir %_datadir/apps/krusader/icons/hicolor/32x32/actions/ ! %_datadir/apps/krusader/icons/hicolor/32x32/actions/*.png # /usr/share/icons/hicolor/16x16/apps/ on Mandrake ! %dir %_datadir/icons/hicolor/16x16/apps/ ! %_datadir/icons/hicolor/16x16/apps/*.png ! %dir %_datadir/icons/hicolor/22x22/apps/ ! %_datadir/icons/hicolor/22x22/apps/*.png ! %dir %_datadir/icons/hicolor/32x32/apps/ ! %_datadir/icons/hicolor/32x32/apps/*.png ! %dir %_datadir/icons/hicolor/48x48/apps/ ! %_datadir/icons/hicolor/48x48/apps/*.png ! %dir %_datadir/icons/hicolor/64x64/apps/ ! %_datadir/icons/hicolor/64x64/apps/*.png # manpage usr/share/man/man1/krusader.1.bz2 on mandrake ! %_mandir/man1/* # /usr/share/services/krarc.protocol on Mandrake ! %_datadir/services/* # /usr/share/mimelnk/application/x-ace.desktop on Mandrake ! #%_datadir/mimelnk/application/*.desktop --- 134,220 ---- # all the files that the RPM package should install, this list must be exhausitive # i18n /usr/share/locale/foo/LC_MESSAGES/krusader.mo on mandrake + # installs language file(s) if the language(s) is(are) installed on the target computer %files -f %name.lang ! # default attributes for all files in the package (-, user, group) # - = leave the permissions like the are in the source tarball e.g. 644 %defattr(-,root,root) # documentation files (docdir name does not need to be included) ! %doc README AUTHORS ChangeLog TODO COPYING krusader.lsm INSTALL krusader.spec # Docbook documentation %doc %{_datadir}/doc/HTML/en/* # bindir = /usr/bin, krusader binary: /usr/bin/krusader on Mandrake ! %{_bindir}/* ! # libdir = /usr/lib, usr/lib/kde3, usr/lib/menu on Mandrake ! %{_libdir}/* # datadir = /usr/share on Mandrake ! %{_datadir}/applnk/Applications/krusader.desktop # /usr/share/apps/krusader/ on Mandrake # dir = inlude empty dir but not the files ! %dir %{_datadir}/apps/krusader/ ! %{_datadir}/apps/krusader/*.rc ! %{_datadir}/apps/krusader/*.png ! %{_datadir}/apps/krusader/*.jpg # /usr/share/apps/krusader/icons/ on Mandrake ! %dir %{_datadir}/apps/krusader/icons/ ! %dir %{_datadir}/apps/krusader/icons/hicolor/ # /usr/share/apps/krusader/icons/hicolor/16x16/actions/*.png on Mandrake ! %dir %{_datadir}/apps/krusader/icons/hicolor/16x16/ ! %dir %{_datadir}/apps/krusader/icons/hicolor/16x16/actions/ ! %{_datadir}/apps/krusader/icons/hicolor/16x16/actions/*.png # /usr/share/apps/krusader/icons/hicolor/22x22/actions/*.png on Mandrake ! %dir %{_datadir}/apps/krusader/icons/hicolor/22x22/ ! %dir %{_datadir}/apps/krusader/icons/hicolor/22x22/actions/ ! %{_datadir}/apps/krusader/icons/hicolor/22x22/actions/*.png # /usr/share/apps/krusader/icons/hicolor/32x32/actions/*.png on Mandrake ! %dir %{_datadir}/apps/krusader/icons/hicolor/32x32/ ! %dir %{_datadir}/apps/krusader/icons/hicolor/32x32/actions/ ! %{_datadir}/apps/krusader/icons/hicolor/32x32/actions/*.png # /usr/share/icons/hicolor/16x16/apps/ on Mandrake ! %dir %{_datadir}/icons/hicolor/16x16/apps/ ! %{_datadir}/icons/hicolor/16x16/apps/*.png ! %dir %{_datadir}/icons/hicolor/22x22/apps/ ! %{_datadir}/icons/hicolor/22x22/apps/*.png ! %dir %{_datadir}/icons/hicolor/32x32/apps/ ! %{_datadir}/icons/hicolor/32x32/apps/*.png ! %dir %{_datadir}/icons/hicolor/48x48/apps/ ! %{_datadir}/icons/hicolor/48x48/apps/*.png ! %dir %{_datadir}/icons/hicolor/64x64/apps/ ! %{_datadir}/icons/hicolor/64x64/apps/*.png # manpage usr/share/man/man1/krusader.1.bz2 on mandrake ! %{_mandir}/man1/* # /usr/share/services/krarc.protocol on Mandrake ! %{_datadir}/services/* # /usr/share/mimelnk/application/x-ace.desktop on Mandrake ! #%{_datadir}/mimelnk/application/*.desktop ! ! %changelog ! * Fri Jun 25 2004 Frank Schoolmeesters <fra...@fa...> ! - 1.40-beta2.mdk92 ! - x-ace.desktop is removed in krusader-1.40-beta2/krusader/Makefile.am ! x-ace.desktop is now supllied by KDE ! - binary rpm is now relocatable, default is /usr ! you can relocate it to e.g. /usr/local or /opt ! then run $ rpm -Uvh --relocate /usr=/opt krusader-1.40.mdk92.i586.rpm ! ! * Wed May 12 2003 Frank Schoolmeesters <fra...@fa...> ! - 1.40-beta1.mdk92 ! - Initial specfile derived from spec file by Laurent MONTEL <lm...@ma...> |
From: Frank S. <cod...@us...> - 2004-07-02 19:32:35
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15118 Modified Files: dist2rpm Log Message: "rpm -ba" is dead since RMP 4.1 -> rpmbuild Index: dist2rpm =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/dist2rpm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** dist2rpm 15 Apr 2002 18:39:31 -0000 1.1.1.1 --- dist2rpm 2 Jul 2004 19:32:25 -0000 1.2 *************** *** 3,6 **** export RPM_BUILD_ROOT=/usr/tmp/rpms mv krusader*.tar.gz /usr/src/RPM/SOURCES ! rpm -ba krusader.spec --- 3,6 ---- export RPM_BUILD_ROOT=/usr/tmp/rpms mv krusader*.tar.gz /usr/src/RPM/SOURCES ! rpmbuild -ba krusader.spec |
From: Karai C. <ck...@us...> - 2004-06-30 19:11:42
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30674/krusader_kde3/krusader/VFS Modified Files: vfs.cpp Log Message: FIXED: UMR (uninitialized memory read) in vfs::fromPathOrURL Index: vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/vfs.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** vfs.cpp 26 May 2004 16:33:40 -0000 1.9 --- vfs.cpp 30 Jun 2004 19:11:34 -0000 1.10 *************** *** 77,81 **** { QString password, loginName, origin = originIn; ! bool bugfix; if ( originIn.contains( ":/" ) && !originIn.startsWith( "/" ) ) --- 77,81 ---- { QString password, loginName, origin = originIn; ! bool bugfix = false; if ( originIn.contains( ":/" ) && !originIn.startsWith( "/" ) ) |
From: Karai C. <ck...@us...> - 2004-06-30 19:11:42
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30674/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: UMR (uninitialized memory read) in vfs::fromPathOrURL Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.243 retrieving revision 1.244 diff -C2 -d -r1.243 -r1.244 *** ChangeLog 25 Jun 2004 13:53:27 -0000 1.243 --- ChangeLog 30 Jun 2004 19:11:33 -0000 1.244 *************** *** 1,2 **** --- 1,3 ---- + FIXED: UMR (uninitialized memory read) in vfs::fromPathOrURL UPDATED: Polish translation |
From: Dirk E. <des...@us...> - 2004-06-25 13:53:36
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27130 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.242 retrieving revision 1.243 diff -C2 -d -r1.242 -r1.243 *** ChangeLog 23 Jun 2004 11:46:09 -0000 1.242 --- ChangeLog 25 Jun 2004 13:53:27 -0000 1.243 *************** *** 1,2 **** --- 1,4 ---- + UPDATED: Polish translation + 1.40-beta2 ====================== |
From: Dirk E. <des...@us...> - 2004-06-25 13:51:30
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26668/po Modified Files: pl.po Log Message: krusader-1.40 (needs update) Index: pl.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/pl.po,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** pl.po 22 May 2004 15:09:43 -0000 1.6 --- pl.po 25 Jun 2004 13:51:21 -0000 1.7 *************** *** 4,8 **** # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai # Copyright (C) 2004, Krusader Krew ! # Lukasz Janyst <lj...@wp...>, 2003. # msgid "" --- 4,10 ---- # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai # Copyright (C) 2004, Krusader Krew ! # Marcin Szafran <jm...@po...>, 2002, 2003. ! # Lukasz Janyst <lj...@wp...>, 2002, 2003. [...3571 lines suppressed...] #: Splitter/combiner.moc.cpp:34 Splitter/combiner.moc.cpp:42 msgid "Combiner" ! msgstr "Combiner" #: Splitter/splitter.cpp:71 msgid "Krusader::Splitting..." ! msgstr "Krusader::Dzielenie..." #: Splitter/splitter.cpp:72 msgid "Splitting the file %1..." ! msgstr "Dzielenie pliku %1..." #: Splitter/splitter.cpp:76 msgid "Can't split a directory!" ! msgstr "Nie można dzieliÄ katalogu." #: Splitter/splitter.cpp:127 msgid "Error at reading file %1!" ! msgstr "BÅÄ d podczas odczytu pliku %1!" |
From: Dirk E. <des...@us...> - 2004-06-23 13:53:05
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4252 Modified Files: README Log Message: Index: README =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/README,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** README 17 Jun 2004 15:20:26 -0000 1.21 --- README 23 Jun 2004 13:52:55 -0000 1.22 *************** *** 1,45 **** ! Krusader 1.40-beta1 =================== ! Finally, it's here. This beta is the first in the 1.40 series. A lot has ! happened since 1.30, and we're quite execited over 1.40, and hope you are too. ! Some of the big changes are: ! * new icons for krusader (thanks to adios for providing them) ! * configuring the colors of the panel ! * quickmode for mountman. press and HOLD the mountman icon for new ! functionality ! * ability to enable/disable icons in the views (filelists) ! * Konfigurator was re-written by Csaba, and has lots of new things in it. ! * Ability to configure the fields of the panel (Ext, Size, Perm, ...) ! * Single click selection mode ! * Panel level toolbar ('..', '/', '~', '=' buttons), thanks to David Harel ! * A Locate frontend (integrating the findutils-locate package of GNU into ! Krusader). TEST IT ! * A Quicksearch a-la totalCommander. Thanks to heiner. ! * Ability to edit/view file in the search result window (F3, F4, right click) ! * A folder-history button, a-la-total commander. thanks to Hans Loffler! ! * A directory synchronizer (thanks to Csaba). TEST IT ! * A file splitter module ! Also, many bugs have been fixed, including: ! * internal editor quits without notification even if the edited file was not ! saved ! * KDE 3.2 terminal exit at Ctrl+C ! * bug [ 906386 ] regarding refreshes of dirwatch with fam enabled ! * bug [ 906538 ] which now makes a faster unpacking process ! * bug [ 894771 ] regarding over-expanding window due to long command line ! * permission handling for FTP URL-s ! * no restart at changing the icon tray's state in konfigurator ! * krusader freezes if the `df` process does not terminate (at network errors, ! IO wait) ! * increased speed of search, by emitting lesssignals (thanks to Lars) ! * statusbar updated only on mouse clicks, not on keyboard ! * crash at rename if the directory is refreshed by the watcher ! * crash at ftp://user@server@proxy:port FTP URL-s ! * no parent directory at tar://... and zip://... URL-s ! Read the ChangeLog file to see more changes. ! ! As you can see, a lot has happened, and we need help to test it. ! Notice: if you've got bugs to report, please do it using krusader's website, and ! not using KDE's bugzilla (bugs.kde.org). as always, enjoy --- 1,9 ---- ! Krusader 1.40-beta2 =================== ! This second beta in the 1.40 series is focussed on bugfixes and translation ! updates. ! Notice: if you've got bugs to report, please do it using krusader's website, ! and not using KDE's bugzilla (bugs.kde.org). as always, enjoy |
From: Shie E. <er...@us...> - 2004-06-23 11:46:18
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11571 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.241 retrieving revision 1.242 diff -C2 -d -r1.241 -r1.242 *** ChangeLog 8 Jun 2004 21:17:14 -0000 1.241 --- ChangeLog 23 Jun 2004 11:46:09 -0000 1.242 *************** *** 1,2 **** --- 1,3 ---- + 1.40-beta2 ====================== ADDED: Chinese Simplified translation |
From: Shie E. <er...@us...> - 2004-06-23 11:44:23
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11198 Modified Files: configure.in.in Log Message: Index: configure.in.in =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/configure.in.in,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** configure.in.in 12 Apr 2004 11:37:52 -0000 1.17 --- configure.in.in 23 Jun 2004 11:44:03 -0000 1.18 *************** *** 1,5 **** #MIN_CONFIG(3) ! AM_INIT_AUTOMAKE(krusader,1.40-beta1) dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__ --- 1,5 ---- #MIN_CONFIG(3) ! AM_INIT_AUTOMAKE(krusader,1.40-beta2) dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__ |
From: Dirk E. <des...@us...> - 2004-06-20 14:00:45
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30760/po Modified Files: de.po Log Message: Index: de.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/de.po,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** de.po 22 May 2004 15:05:09 -0000 1.13 --- de.po 20 Jun 2004 14:00:32 -0000 1.14 *************** *** 12,16 **** "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" --- 12,16 ---- "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" ! "PO-Revision-Date: 2004-06-20 15:56+0200\n" "Last-Translator: Dirk Eschler <des...@us...>\n" "Language-Team: German\n" *************** *** 593,597 **** #: Panel/panelfunc.cpp:476 msgid "&Trash" ! msgstr "Mülleimer" #: Panel/panelfunc.cpp:478 --- 593,597 ---- #: Panel/panelfunc.cpp:476 msgid "&Trash" ! msgstr "&Mülleimer" #: Panel/panelfunc.cpp:478 *************** *** 617,625 **** #: Panel/panelfunc.cpp:503 msgid "&Skip" ! msgstr "Ãberspringen" #: Panel/panelfunc.cpp:503 msgid "&Delete All" ! msgstr "Alle löschen" #: Panel/panelfunc.cpp:593 --- 617,625 ---- #: Panel/panelfunc.cpp:503 msgid "&Skip" ! msgstr "Ãber&springen" #: Panel/panelfunc.cpp:503 msgid "&Delete All" ! msgstr "Alle l&öschen" #: Panel/panelfunc.cpp:593 *************** *** 637,641 **** #: Panel/panelfunc.cpp:595 msgid "&Overwite" ! msgstr "Ãberschreiben" #: Panel/panelfunc.cpp:600 --- 637,641 ---- #: Panel/panelfunc.cpp:595 msgid "&Overwite" ! msgstr "&Ãberschreiben" #: Panel/panelfunc.cpp:600 *************** *** 788,812 **** #: krusader.cpp:375 msgid "Com&pare Mode" ! msgstr "Vergleichs-Modus" #: krusader.cpp:378 msgid "Show &FN Keys Bar" ! msgstr "Funktionstastenleiste anzeigen" #: krusader.cpp:381 msgid "Show &Command Line" ! msgstr "Befehlszeile anzeigen" #: krusader.cpp:384 msgid "Show Terminal &Emulator" ! msgstr "Terminal-Emulator anzeigen" #: krusader.cpp:387 msgid "Show &Hidden Files" ! msgstr "Versteckte Dateien anzeigen" #: krusader.cpp:389 msgid "S&wap Panels" ! msgstr "Dateifenster vertauschen" #: krusader.cpp:395 --- 788,812 ---- #: krusader.cpp:375 msgid "Com&pare Mode" ! msgstr "Ver&gleichs-Modus" #: krusader.cpp:378 msgid "Show &FN Keys Bar" ! msgstr "&Funktionstastenleiste anzeigen" #: krusader.cpp:381 msgid "Show &Command Line" ! msgstr "&Befehlszeile anzeigen" #: krusader.cpp:384 msgid "Show Terminal &Emulator" ! msgstr "Terminal-&Emulator anzeigen" #: krusader.cpp:387 msgid "Show &Hidden Files" ! msgstr "&Versteckte Dateien anzeigen" #: krusader.cpp:389 msgid "S&wap Panels" ! msgstr "Dateifenster ver&tauschen" #: krusader.cpp:395 *************** *** 820,916 **** #: krusader.cpp:399 msgid "&Edit new file" ! msgstr "Neue Datei editieren" #: krusader.cpp:400 msgid "Start &Root Mode Krusader" ! msgstr "Krusader im Systemverwaltungs-Modus starten" #: krusader.cpp:402 msgid "Co&nfigure compare-mode" ! msgstr "Vergleichs-Modus einrichten" #: krusader.cpp:404 msgid "&Test Archive(s)" ! msgstr "Archiv(e) testen" #: krusader.cpp:406 msgid "&Net Connections" ! msgstr "Netzwerkverbindungen" #: krusader.cpp:408 msgid "New Net &Connection" ! msgstr "Neue Netzwerkverbindung" #: krusader.cpp:410 msgid "Calculate &Occupied Space" ! msgstr "Belegten Speicherplatz berechnen" #: krusader.cpp:412 msgid "&Properties" ! msgstr "Eigenschaften" #: krusader.cpp:414 msgid "Pac&k" ! msgstr "Packen" #: krusader.cpp:416 msgid "&Unpack" ! msgstr "Entpacken" #: krusader.cpp:418 msgid "Sp&lit file" ! msgstr "Datei aufteilen" #: krusader.cpp:420 msgid "Com&bine files" ! msgstr "Dateien zusammenfügen" #: krusader.cpp:422 msgid "Select &Group" ! msgstr "Gruppe auswählen" #: krusader.cpp:424 msgid "&Select All" ! msgstr "Alle auswählen" #: krusader.cpp:426 msgid "U&nselect All" ! msgstr "Auswahl aufheben" #: krusader.cpp:428 msgid "&Terminal" ! msgstr "Terminal" #: krusader.cpp:430 msgid "Disconnect &From Net" ! msgstr "Netzwerkverbindung trennen" #: krusader.cpp:433 krusader.cpp:438 msgid "&MountMan" ! msgstr "MountMan" #: krusader.cpp:442 msgid "&Search" ! msgstr "Suchen" #: krusader.cpp:444 msgid "&Locate" ! msgstr "Lokalisieren" #: krusader.cpp:446 msgid "Synchronize &Directories" ! msgstr "Verzeichnisse synchronisieren" #: krusader.cpp:448 msgid "&Invert Selection" ! msgstr "Auswahl umkehren" #: krusader.cpp:450 msgid "&Unselect Group" ! msgstr "Gruppenauswahl aufheben" #: krusader.cpp:452 msgid "&Konfigurator" ! msgstr "Konfigurator" #: krusader.cpp:456 --- 820,916 ---- #: krusader.cpp:399 msgid "&Edit new file" ! msgstr "&Neue Datei editieren" #: krusader.cpp:400 msgid "Start &Root Mode Krusader" ! msgstr "K&rusader im Systemverwaltungs-Modus starten" #: krusader.cpp:402 msgid "Co&nfigure compare-mode" ! msgstr "Vergleichs-Modus ei&nrichten" #: krusader.cpp:404 msgid "&Test Archive(s)" ! msgstr "Archiv(e) &testen" #: krusader.cpp:406 msgid "&Net Connections" ! msgstr "&Netzwerkverbindungen" #: krusader.cpp:408 msgid "New Net &Connection" ! msgstr "Neue Netzwerk&verbindung" #: krusader.cpp:410 msgid "Calculate &Occupied Space" ! msgstr "&Belegten Speicherplatz berechnen" #: krusader.cpp:412 msgid "&Properties" ! msgstr "&Eigenschaften" #: krusader.cpp:414 msgid "Pac&k" ! msgstr "Pac&ken" #: krusader.cpp:416 msgid "&Unpack" ! msgstr "Entpa&cken" #: krusader.cpp:418 msgid "Sp&lit file" ! msgstr "Datei auftei&len" #: krusader.cpp:420 msgid "Com&bine files" ! msgstr "Dateien &zusammenfügen" #: krusader.cpp:422 msgid "Select &Group" ! msgstr "&Gruppe auswählen" #: krusader.cpp:424 msgid "&Select All" ! msgstr "Alle au&swählen" #: krusader.cpp:426 msgid "U&nselect All" ! msgstr "Auswahl aufhebe&n" #: krusader.cpp:428 msgid "&Terminal" ! msgstr "&Terminal" #: krusader.cpp:430 msgid "Disconnect &From Net" ! msgstr "Netzwerkverbindung &trennen" #: krusader.cpp:433 krusader.cpp:438 msgid "&MountMan" ! msgstr "&MountMan" #: krusader.cpp:442 msgid "&Search" ! msgstr "&Suchen" #: krusader.cpp:444 msgid "&Locate" ! msgstr "&Lokalisieren" #: krusader.cpp:446 msgid "Synchronize &Directories" ! msgstr "&Verzeichnisse synchronisieren" #: krusader.cpp:448 msgid "&Invert Selection" ! msgstr "Aus&wahl umkehren" #: krusader.cpp:450 msgid "&Unselect Group" ! msgstr "Gr&uppenauswahl aufheben" #: krusader.cpp:452 msgid "&Konfigurator" ! msgstr "&Konfigurator" #: krusader.cpp:456 *************** *** 920,940 **** #: krusader.cpp:458 msgid "Save &Position" ! msgstr "Position speichern" #: krusader.cpp:460 msgid "&All Files" ! msgstr "Alle Dateien" #: krusader.cpp:464 msgid "&Custom" ! msgstr "Benutzerdefiniert" #: krusader.cpp:466 msgid "Compare b&y content" ! msgstr "Nach Inhalt vergleichen" #: krusader.cpp:468 msgid "Multi &Rename" ! msgstr "Mehrfachumbennenung" #: krusader.cpp:470 --- 920,940 ---- #: krusader.cpp:458 msgid "Save &Position" ! msgstr "&Position speichern" #: krusader.cpp:460 msgid "&All Files" ! msgstr "&Alle Dateien" #: krusader.cpp:464 msgid "&Custom" ! msgstr "&Benutzerdefiniert" #: krusader.cpp:466 msgid "Compare b&y content" ! msgstr "Nach Inhalt ver&gleichen" #: krusader.cpp:468 msgid "Multi &Rename" ! msgstr "Meh&rfachumbennenung" #: krusader.cpp:470 *************** *** 1012,1032 **** #: KViewer/krviewer.cpp:56 msgid "&Generic viewer" ! msgstr "Generischer Anzeiger" #: KViewer/krviewer.cpp:57 msgid "&Text viewer" ! msgstr "Text-Anzeiger" #: KViewer/krviewer.cpp:58 msgid "&Hex viewer" ! msgstr "Hex-Anzeiger" #: KViewer/krviewer.cpp:60 msgid "Text &editor" ! msgstr "Text-Editor" #: KViewer/krviewer.cpp:147 msgid "&KrViewer" ! msgstr "KrViewer" #: KViewer/krviewer.cpp:232 --- 1012,1032 ---- #: KViewer/krviewer.cpp:56 msgid "&Generic viewer" ! msgstr "&Generischer Anzeiger" #: KViewer/krviewer.cpp:57 msgid "&Text viewer" ! msgstr "&Text-Anzeiger" #: KViewer/krviewer.cpp:58 msgid "&Hex viewer" ! msgstr "&Hex-Anzeiger" #: KViewer/krviewer.cpp:60 msgid "Text &editor" ! msgstr "Text-&Editor" #: KViewer/krviewer.cpp:147 msgid "&KrViewer" ! msgstr "&KrViewer" #: KViewer/krviewer.cpp:232 *************** *** 1139,1143 **** "archives." msgstr "" ! "Da Sie ausgewählt haben, daà Sie auch in Archiven suchen möchten, beachten Sie folgende Einschränkungen:\n" "1. Krusader sucht in allen unterstützen Archiven, ausgenommen arj und ace.\n" "2. Sie können nicht in einem Text suchen (grep), während eine Suche läuft, die Archive beinhaltet." --- 1139,1143 ---- "archives." msgstr "" ! "Da Sie ausgewählt haben, dass Sie auch in Archiven suchen möchten, beachten Sie folgende Einschränkungen:\n" "1. Krusader sucht in allen unterstützen Archiven, ausgenommen arj und ace.\n" "2. Sie können nicht in einem Text suchen (grep), während eine Suche läuft, die Archive beinhaltet." *************** *** 1177,1185 **** #: Search/krsearchdialogbase.cpp:236 msgid "&Don't search in" ! msgstr "Nicht suchen in" #: Search/krsearchdialogbase.cpp:268 msgid "&Search in" ! msgstr "Suchen in" #: Search/krsearchdialogbase.cpp:301 --- 1177,1185 ---- #: Search/krsearchdialogbase.cpp:236 msgid "&Don't search in" ! msgstr "&Nicht suchen in" #: Search/krsearchdialogbase.cpp:268 msgid "&Search in" ! msgstr "&Suchen in" #: Search/krsearchdialogbase.cpp:301 *************** *** 1189,1233 **** #: Search/krsearchdialogbase.cpp:318 msgid "&Match whole word only" ! msgstr "Nur ganze Wörter" #: Search/krsearchdialogbase.cpp:324 msgid "Cas&e sensetive" ! msgstr "GroÃ-/Kleinschreibung beachten" #: Search/krsearchdialogbase.cpp:336 msgid "&Text:" ! msgstr "Text:" #: Search/krsearchdialogbase.cpp:359 msgid "&Case sensetive" ! msgstr "GroÃ-/Kleinschreibung beachten" #: Search/krsearchdialogbase.cpp:365 msgid "Search &for:" ! msgstr "Suche nach:" #: Search/krsearchdialogbase.cpp:370 msgid "&Of type:" ! msgstr "Vom Typ:" #: Search/krsearchdialogbase.cpp:397 msgid "Search in s&ubdirectories" ! msgstr "In Unterverzeichnissen suchen" #: Search/krsearchdialogbase.cpp:403 msgid "Search in arch&ives" ! msgstr "In Archiven suchen" #: Search/krsearchdialogbase.cpp:407 msgid "Follow &links" ! msgstr "Verknüpfungen folgen" #: Search/krsearchdialogbase.cpp:411 msgid "&General" ! msgstr "Allgemein" #: Search/krsearchdialogbase.cpp:424 msgid "&Smaller than" ! msgstr "Kleiner als" #: Search/krsearchdialogbase.cpp:432 Search/krsearchdialogbase.cpp:443 --- 1189,1233 ---- #: Search/krsearchdialogbase.cpp:318 msgid "&Match whole word only" ! msgstr "Nur ganze &Wörter" #: Search/krsearchdialogbase.cpp:324 msgid "Cas&e sensetive" ! msgstr "GroÃ-/&Kleinschreibung beachten" #: Search/krsearchdialogbase.cpp:336 msgid "&Text:" ! msgstr "&Text:" #: Search/krsearchdialogbase.cpp:359 msgid "&Case sensetive" ! msgstr "&GroÃ-/Kleinschreibung beachten" #: Search/krsearchdialogbase.cpp:365 msgid "Search &for:" ! msgstr "Su&che nach:" #: Search/krsearchdialogbase.cpp:370 msgid "&Of type:" ! msgstr "&Vom Typ:" #: Search/krsearchdialogbase.cpp:397 msgid "Search in s&ubdirectories" ! msgstr "In &Unterverzeichnissen suchen" #: Search/krsearchdialogbase.cpp:403 msgid "Search in arch&ives" ! msgstr "&In Archiven suchen" #: Search/krsearchdialogbase.cpp:407 msgid "Follow &links" ! msgstr "Verknüpfungen fo&lgen" #: Search/krsearchdialogbase.cpp:411 msgid "&General" ! msgstr "&Allgemein" #: Search/krsearchdialogbase.cpp:424 msgid "&Smaller than" ! msgstr "Kleiner al&s" #: Search/krsearchdialogbase.cpp:432 Search/krsearchdialogbase.cpp:443 *************** *** 1245,1249 **** #: Search/krsearchdialogbase.cpp:440 msgid "&Bigger than" ! msgstr "GröÃer als" #: Search/krsearchdialogbase.cpp:457 Search/krsearchdialogbase.cpp:732 --- 1245,1249 ---- #: Search/krsearchdialogbase.cpp:440 msgid "&Bigger than" ! msgstr "&GröÃer als" #: Search/krsearchdialogbase.cpp:457 Search/krsearchdialogbase.cpp:732 *************** *** 1254,1262 **** #: Search/krsearchdialogbase.cpp:481 msgid "an&d" ! msgstr "und" #: Search/krsearchdialogbase.cpp:513 msgid "Mod&ified in the last" ! msgstr "Geändert in den letzten" #: Search/krsearchdialogbase.cpp:525 Search/krsearchdialogbase.cpp:534 --- 1254,1262 ---- #: Search/krsearchdialogbase.cpp:481 msgid "an&d" ! msgstr "un&d" #: Search/krsearchdialogbase.cpp:513 msgid "Mod&ified in the last" ! msgstr "Geändert &in den letzten" #: Search/krsearchdialogbase.cpp:525 Search/krsearchdialogbase.cpp:534 *************** *** 1278,1290 **** #: Search/krsearchdialogbase.cpp:549 msgid "No&t modified in the last" ! msgstr "Nicht geändert in den letzten" #: Search/krsearchdialogbase.cpp:555 msgid "&Not modified after" ! msgstr "Nicht geändert nach dem" #: Search/krsearchdialogbase.cpp:566 msgid "&Modified between" ! msgstr "Geändert während" #: Search/krsearchdialogbase.cpp:575 --- 1278,1290 ---- #: Search/krsearchdialogbase.cpp:549 msgid "No&t modified in the last" ! msgstr "Nich&t geändert in den letzten" #: Search/krsearchdialogbase.cpp:555 msgid "&Not modified after" ! msgstr "&Nicht geändert nach dem" #: Search/krsearchdialogbase.cpp:566 msgid "&Modified between" ! msgstr "Geändert &während" #: Search/krsearchdialogbase.cpp:575 *************** *** 1294,1306 **** #: Search/krsearchdialogbase.cpp:589 msgid "Belongs to &user" ! msgstr "Gehört Benutzer" #: Search/krsearchdialogbase.cpp:598 msgid "Belongs to gr&oup" ! msgstr "Gehört Gruppe" #: Search/krsearchdialogbase.cpp:609 msgid "O&wner" ! msgstr "Eigentümer" #: Search/krsearchdialogbase.cpp:612 Search/krsearchdialogbase.cpp:619 --- 1294,1306 ---- #: Search/krsearchdialogbase.cpp:589 msgid "Belongs to &user" ! msgstr "Gehört Ben&utzer" #: Search/krsearchdialogbase.cpp:598 msgid "Belongs to gr&oup" ! msgstr "Gehört Gru&ppe" #: Search/krsearchdialogbase.cpp:609 msgid "O&wner" ! msgstr "E&igentümer" #: Search/krsearchdialogbase.cpp:612 Search/krsearchdialogbase.cpp:619 *************** *** 1337,1349 **** #: Search/krsearchdialogbase.cpp:635 msgid "P&ermissions" ! msgstr "Berechtigungen" #: Search/krsearchdialogbase.cpp:640 msgid "Grou&p" ! msgstr "Gruppe" #: Search/krsearchdialogbase.cpp:666 msgid "A&ll" ! msgstr "Alle" #: Search/krsearchdialogbase.cpp:696 --- 1337,1349 ---- #: Search/krsearchdialogbase.cpp:635 msgid "P&ermissions" ! msgstr "B&erechtigungen" #: Search/krsearchdialogbase.cpp:640 msgid "Grou&p" ! msgstr "Gru&ppe" #: Search/krsearchdialogbase.cpp:666 msgid "A&ll" ! msgstr "A&lle" #: Search/krsearchdialogbase.cpp:696 *************** *** 1353,1357 **** #: Search/krsearchdialogbase.cpp:701 msgid "&Advanced" ! msgstr "Erweitert" #: Search/krsearchdialogbase.cpp:730 --- 1353,1357 ---- #: Search/krsearchdialogbase.cpp:701 msgid "&Advanced" ! msgstr "&Erweitert" #: Search/krsearchdialogbase.cpp:730 *************** *** 1365,1369 **** #: Search/krsearchdialogbase.cpp:736 msgid "&Results" ! msgstr "Ergebnisse" #: panelmanager.cpp:24 --- 1365,1369 ---- #: Search/krsearchdialogbase.cpp:736 msgid "&Results" ! msgstr "E&rgebnisse" #: panelmanager.cpp:24 *************** *** 1405,1409 **** #: BookMan/kbookmarkmenu.cpp:205 msgid "&New Bookmark Folder..." ! msgstr "Neues Lesezeichen-Verzeichnis..." #: BookMan/kbookmarkmenu.cpp:217 --- 1405,1409 ---- #: BookMan/kbookmarkmenu.cpp:205 msgid "&New Bookmark Folder..." ! msgstr "&Neues Lesezeichen-Verzeichnis..." #: BookMan/kbookmarkmenu.cpp:217 *************** *** 1431,1435 **** msgstr "" "Konnte 'mount' nicht ausführen!\n" ! "Stellen Sie sicher, daà /bin/mount oder /sbin/mount verfügbar ist" #: MountMan/kmountman.cpp:550 MountMan/kmountman.cpp:596 --- 1431,1435 ---- msgstr "" "Konnte 'mount' nicht ausführen!\n" ! "Stellen Sie sicher, dass /bin/mount oder /sbin/mount verfügbar ist" #: MountMan/kmountman.cpp:550 MountMan/kmountman.cpp:596 *************** *** 1464,1468 **** msgstr "" "Konnte 'mount' nicht ausführen!\n" ! "Stellen Sie sicher, daà /bin/mount oder /sbin/mount verfügbar ist" #: MountMan/kmountman.cpp:615 --- 1464,1468 ---- msgstr "" "Konnte 'mount' nicht ausführen!\n" ! "Stellen Sie sicher, dass /bin/mount oder /sbin/mount verfügbar ist" #: MountMan/kmountman.cpp:615 *************** *** 1494,1498 **** msgstr "" "Konnte 'mount' nicht ausführen!\n" ! "Stellen Sie sicher, daà /bin/mount oder /sbin/mount verfügbar ist" #: MountMan/kmountman.cpp:644 --- 1494,1498 ---- msgstr "" "Konnte 'mount' nicht ausführen!\n" ! "Stellen Sie sicher, dass /bin/mount oder /sbin/mount verfügbar ist" #: MountMan/kmountman.cpp:644 *************** *** 1763,1767 **** #: Dialogs/newftpgui.cpp:743 msgid "&Connect" ! msgstr "Verbinden" #: Dialogs/newftpgui.cpp:765 --- 1763,1767 ---- #: Dialogs/newftpgui.cpp:743 msgid "&Connect" ! msgstr "&Verbinden" #: Dialogs/newftpgui.cpp:765 *************** *** 1899,1903 **** #: RemoteMan/remoteman.cpp:360 msgid "Are you sure you want to delete this item ???" ! msgstr "Sind Sie sicher, daà Sie dieses Element löschen möchten?" #: RemoteMan/remotemanbase.cpp:41 --- 1899,1903 ---- #: RemoteMan/remoteman.cpp:360 msgid "Are you sure you want to delete this item ???" ! msgstr "Sind Sie sicher, dass Sie dieses Element löschen möchten?" #: RemoteMan/remotemanbase.cpp:41 *************** *** 1911,1915 **** #: RemoteMan/remotemanbase.cpp:67 msgid "&More" ! msgstr "Mehr" #: RemoteMan/remotemanbase.cpp:109 --- 1911,1915 ---- #: RemoteMan/remotemanbase.cpp:67 msgid "&More" ! msgstr "&Mehr" #: RemoteMan/remotemanbase.cpp:109 *************** *** 1931,1943 **** #: RemoteMan/remotemanbase.cpp:162 msgid "Co&nnect" ! msgstr "Verbinden" #: RemoteMan/remotemanbase.cpp:170 msgid "New &Group" ! msgstr "Neue Gruppe" #: RemoteMan/remotemanbase.cpp:179 msgid "New Connec&tion" ! msgstr "Neue Verbindung" #: RemoteMan/remotemanbase.cpp:225 --- 1931,1943 ---- #: RemoteMan/remotemanbase.cpp:162 msgid "Co&nnect" ! msgstr "Verbi&nden" #: RemoteMan/remotemanbase.cpp:170 msgid "New &Group" ! msgstr "Neue &Gruppe" #: RemoteMan/remotemanbase.cpp:179 msgid "New Connec&tion" ! msgstr "Neue Verbin&dung" #: RemoteMan/remotemanbase.cpp:225 *************** *** 2426,2434 **** #: rc.cpp:2 msgid "&Mark" ! msgstr "Auswahl" #: rc.cpp:3 msgid "&Commands" ! msgstr "Befehle" #: Konfigurator/kgdependencies.cpp:50 Konfigurator/kggeneral.cpp:51 --- 2426,2434 ---- #: rc.cpp:2 msgid "&Mark" ! msgstr "Au&swahl" #: rc.cpp:3 msgid "&Commands" ! msgstr "&Befehle" #: Konfigurator/kgdependencies.cpp:50 Konfigurator/kggeneral.cpp:51 *************** *** 2573,2577 **** msgstr "" "\n" ! "in Ihrem Pfad (z.B. /usr/bin, /usr/local/bin, etc.)" #: Konfigurator/konfigurator.cpp:58 --- 2573,2577 ---- msgstr "" "\n" ! "in Ihrem Pfad. (z.B. /usr/bin, /usr/local/bin, etc.)" #: Konfigurator/konfigurator.cpp:58 *************** *** 3145,3150 **** "search again, click the 'Auto Configure' button." msgstr "" ! "Die Archive, die \"ausgegraut\" sind, waren nicht auf Ihrem System verfügbar\n" ! "als Krusader es das letzte Mal geprüft hat. Wenn Sie möchten, daà Krusader\n" "erneut sucht, klicken Sie den 'Automatische Konfiguration'-Knopf." --- 3145,3150 ---- "search again, click the 'Auto Configure' button." msgstr "" ! "Die \"ausgegrauten\" Archive waren nicht auf Ihrem System verfügbar als\n" ! "Krusader es das letzte Mal geprüft hat. Wenn Sie möchten, dass Krusader\n" "erneut sucht, klicken Sie den 'Automatische Konfiguration'-Knopf." *************** *** 3155,3159 **** #: Konfigurator/kgarchives.cpp:93 msgid "Test archive when finished packing" ! msgstr "Archiv testen wenn das Packen abgeschlossen ist" #: Konfigurator/kgarchives.cpp:93 --- 3155,3159 ---- #: Konfigurator/kgarchives.cpp:93 msgid "Test archive when finished packing" ! msgstr "Archiv nach dem Packen testen" #: Konfigurator/kgarchives.cpp:93 *************** *** 3321,3325 **** msgstr "" "\n" ! "Danke das Sie mit Krusader geflogen sind :-)" #: krslots.cpp:105 --- 3321,3325 ---- msgstr "" "\n" ! "Danke, dass Sie mit Krusader geflogen sind :-)" #: krslots.cpp:105 *************** *** 3494,3498 **** #: Splitter/splittergui.cpp:107 msgid "&Split" ! msgstr "Aufteilen" #: Splitter/splittergui.cpp:116 --- 3494,3498 ---- #: Splitter/splittergui.cpp:107 msgid "&Split" ! msgstr "Auftei&len" #: Splitter/splittergui.cpp:116 |
From: Dirk E. <des...@us...> - 2004-06-17 15:20:46
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6911 Modified Files: README Log Message: General updates: translators, help, some reformating (line wraps after 80 characters).. Index: README =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/README,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** README 25 May 2004 20:16:41 -0000 1.20 --- README 17 Jun 2004 15:20:26 -0000 1.21 *************** *** 1,10 **** Krusader 1.40-beta1 =================== ! Finally, it's here. This beta is the first in the 1.40 series. A lot has happened ! since 1.30, and we're quite execited over 1.40, and hope you are too. Some of the big changes are: * new icons for krusader (thanks to adios for providing them) * configuring the colors of the panel ! * quickmode for mountman. press and HOLD the mountman icon for new functionality * ability to enable/disable icons in the views (filelists) * Konfigurator was re-written by Csaba, and has lots of new things in it. --- 1,11 ---- Krusader 1.40-beta1 =================== ! Finally, it's here. This beta is the first in the 1.40 series. A lot has ! happened since 1.30, and we're quite execited over 1.40, and hope you are too. Some of the big changes are: * new icons for krusader (thanks to adios for providing them) * configuring the colors of the panel ! * quickmode for mountman. press and HOLD the mountman icon for new ! functionality * ability to enable/disable icons in the views (filelists) * Konfigurator was re-written by Csaba, and has lots of new things in it. *************** *** 12,16 **** * Single click selection mode * Panel level toolbar ('..', '/', '~', '=' buttons), thanks to David Harel ! * A Locate frontend (integrating the findutils-locate package of GNU into Krusader). TEST IT * A Quicksearch a-la totalCommander. Thanks to heiner. * Ability to edit/view file in the search result window (F3, F4, right click) --- 13,18 ---- * Single click selection mode * Panel level toolbar ('..', '/', '~', '=' buttons), thanks to David Harel ! * A Locate frontend (integrating the findutils-locate package of GNU into ! Krusader). TEST IT * A Quicksearch a-la totalCommander. Thanks to heiner. * Ability to edit/view file in the search result window (F3, F4, right click) *************** *** 19,23 **** * A file splitter module Also, many bugs have been fixed, including: ! * internal editor quits without notification even if the edited file was not saved * KDE 3.2 terminal exit at Ctrl+C * bug [ 906386 ] regarding refreshes of dirwatch with fam enabled --- 21,26 ---- * A file splitter module Also, many bugs have been fixed, including: ! * internal editor quits without notification even if the edited file was not ! saved * KDE 3.2 terminal exit at Ctrl+C * bug [ 906386 ] regarding refreshes of dirwatch with fam enabled *************** *** 26,30 **** * permission handling for FTP URL-s * no restart at changing the icon tray's state in konfigurator ! * krusader freezes if the `df` process does not terminate (at network errors, IO wait) * increased speed of search, by emitting lesssignals (thanks to Lars) * statusbar updated only on mouse clicks, not on keyboard --- 29,34 ---- * permission handling for FTP URL-s * no restart at changing the icon tray's state in konfigurator ! * krusader freezes if the `df` process does not terminate (at network errors, ! IO wait) * increased speed of search, by emitting lesssignals (thanks to Lars) * statusbar updated only on mouse clicks, not on keyboard *************** *** 46,56 **** ! +--------------------------------------------------------------------------------+ ! | To learn what's new, read the Changelog file. | ! | For bug reports, fixes, patches and comments: please read first the | ! | FAQ section of the Krusader Handbook. | ! | You can reach us by mail kru...@us... or drop us a note in | ! | our Krusader forum. | ! +--------------------------------------------------------------------------------+ --- 50,60 ---- ! +------------------------------------------------------------------------------+ ! | To learn what's new, read the Changelog file. | ! | For bug reports, fixes, patches and comments: please read the FAQ section of | ! | the Krusader Handbook. | ! | You can reach us by mail kru...@us... or drop us a note in | ! | our Krusader forum. | ! +------------------------------------------------------------------------------+ *************** *** 61,66 **** Unpack the tarball and go to the Krusader source directory. ! If you have done a download from CVS you will have to run the following command to ! create the "./configure" script: $ make -f Makefile.cvs --- 65,70 ---- Unpack the tarball and go to the Krusader source directory. ! If you have done a download from CVS you will have to run the following command ! to create the "./configure" script: $ make -f Makefile.cvs *************** *** 77,82 **** Need more help? 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 --- 81,89 ---- Need more help? For detailed installation instructions, please read the INSTALL file. ! ! Or read it online at: ! http://krusader.sourceforge.net/handbook/installation.html ! The FAQ are available at: ! http://krusader.sourceforge.net/handbook/faq.html *************** *** 85,91 **** =============================================== $ cvs -d:pserver:ano...@cv...:/cvsroot/krusader login ! $ cvs -z3 -d:pserver:ano...@cv...:/cvsroot/krusader co krusader_kde3 (note: updates from within the modules directory do not need the -d parameter) - Or download the nightly tarball from: http://krusader.sourceforge.net/cvs.php --- 92,98 ---- =============================================== $ cvs -d:pserver:ano...@cv...:/cvsroot/krusader login ! $ cvs -z3 -d:pserver:ano...@cv...:/cvsroot/krusader co \ ! krusader_kde3 (note: updates from within the modules directory do not need the -d parameter) Or download the nightly tarball from: http://krusader.sourceforge.net/cvs.php *************** *** 95,100 **** ================= 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 --- 102,107 ---- ================= Documentation, detailed install procedure, FAQ, ... ! The Krusader Handbook is available in the Help menu of Krusader. ! Or read it online at: http://krusader.sourceforge.net/handbook/index.html *************** *** 103,208 **** ============= Here you get a chance to contribute to the Krusader project. ! From time to time we'll post things that need to be done, but can't be done by us. ! If you feel you can help, click the appropriate link on the website. All help is welcome. Thanks! ! or read it on-line at: http://krusader.sourceforge.net/help.php ! ! - Developers Are you able to write code with Kdevelop? ! Maybe you like to write code or a patch for Krusader. ! There are many things need to be done, please read the TODO file. ! If you like to write code at a regular base, maybe you like to ! join the Krusader Krew. ! - Translators Krusader is currently available in 16 languages: ! English (done by the Krusader Krew), ! Bulgarian, Chinese, Czech, Danish, Dutch, French, German, Hungarian, ! Italian, Japanese, Polish, Russian, Slovak, Spanish, Swedish. ! Some of these translations can use an update, please read the ! "Krusader translation howto" for the latest information. ! If you have a new or updated translation, please send it to Dirk. ! Please read "For Translators" section further below in this file. ! - Documentation Krusader is in need of documentation. ! Help is always welcome. ! 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. For Translators =============== ! DETAILED PROCEDURE We have a very detailed "Krusader translation howto" if you need some help. ! Also the latest news about the Krusader translations can be found here. ! This allows that even beginners or non-programmers can translate Krusader to ! their native language. Please look at http://krusader.sourceforge.net/phpBB/viewtopic.php?t=389 ! ! QUICKSTART PROCEDURE 1. ! Run your Linux distribution in your native language 2. ! Download the latest available version of Krusader with a checkout from CVS. ! Or if you are not familiar with CVS, download the latest Krusader CVS ! sourcecode snapshot (nightly tarball) from ! http://krusader.sourceforge.net/cvs.php ! and run $ make -f Makefile.cvs $ ./configure $ make ! $ make -f admin/Makefile.common package-messages ! $ su -c 'make install' ! ! NOTE: The command "make -f admin/Makefile.common package-messages" ! will update krusader.pot = the translation template file ! (extracting all the English text from the sourcecode). ! Please don't forget to do this step, otherwise you will translate obsolete messages. ! It is important that this command is used AFTER the "make" command, ! otherwise not everything is extracted from the sourcecode. 3. ! - Existing translation: ! Update foo.po (in the po directory) ! ./po/$ msgmerge foo.po krusader.pot --output-file=foo.po ! ! - New translation: ! To know your language abreviation foo run: $ echo $LANG ! (ex.: nl = Dutch, fr = French, it = Italian, ...) ! Or look at the KDE language abreviation list at http://i18n.kde.org/teams/ ! Open krusader.pot with Kbabel and "save as" foo.po 4. ! translate foo.po with Kbabel (Kbabel is easy to use, please read its manual) ! ! 5. ! compile foo.po, for error checking (in the po directory) ! ./po/$ msgfmt foo.po --statistics -c -v --output-file=foo.gmo If it reports "xx fuzzy translations" or "xx untranslated messages", ! please return to nr. 3 ! ! 6. ! Run the commands of nr. 2 to reinstall the new or updated translation ! btw. If you have a new translation: "make -f Makefile.cvs" will modify ! the Makefiles in the krusader_kde3/po directory. ! From now on your new translation will be compiled and installed :) Run Krusader and test your native translations. ! If necessary fix the foo.po file (redo nr. 4,5,6), and test again. ! 7. ! If everything is ok, send the new or updated translation to Dirk. --- 110,221 ---- ============= Here you get a chance to contribute to the Krusader project. ! From time to time we'll post things that need to be done, but can't be done by ! us. If you feel you can help, click the appropriate link on the website. All help is welcome. Thanks! ! Or read it online at: http://krusader.sourceforge.net/help.php ! Translators ! ----------- ! Krusader is currently available in 16 languages: ! English (done by the Krusader Krew), Bulgarian, Chinese, Czech, Danish, Dutch, ! French, German, Hungarian, Italian, Japanese, Polish, Russian, Slovak, Spanish, ! Swedish. Some of these translations can use an update, please read the ! "Krusader translation howto" for the latest information and have a look at the ! "For Translators" section further below in this file. ! Documentation ! ------------- ! Krusader is in need of documentation. Help is always welcome. ! 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 contact Dirk Eschler. ! RPM Questions ! ------------- ! 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. + For Translators =============== ! Translation procedure ! --------------------- ! Before we release a stable version of Krusader, we bring out at least one beta ! version. From that moment on there is a feature freeze and only bugs will be ! fixed. This means that translators can update their translations, for the ! comming stable. Normally all the Krusader translators will receive an e-mail ! from Dirk Eschler, to invite you for translating Krusader. We will update all ! foo.po files against krusader.pot just before the beta will be released, so that ! you will only have to edit the new foo.po file with Kbabel. This way you don't ! have to worry anymore about how foo.po must be updated. In the past some ! translators updated foo.po in a wrong way, so they translated obsolete messages, ! we want to prevent this of cource. ! ! With VIEWCVS you get a LIVE translation status with your browser at ! http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/krusader/krusader_kde3/po/ ! Look at the "Last log entry" column to see the translation status (don't look at ! the age column). The latest news about the Krusader translations can be in the ! LATEST NEWS section of the "Krusader translation howto". ! ! New translations ! ---------------- ! If your native language is not listed in VIEWCVS, you will have to translate ! Krusader to your native language. Dirk Eschler is the Krusader i18n coordinator, ! please contact him if you intend to translate Krusader to your native language. ! ! Krusader translation howto ! -------------------------- We have a very detailed "Krusader translation howto" if you need some help. ! The latest news about the Krusader translations can be in the LATEST NEWS ! section. This allows that even beginners or non-programmers can translate ! Krusader to their native language. Please have a look at http://krusader.sourceforge.net/phpBB/viewtopic.php?t=389 ! Quickstart procedure for advanced translators who update an existing translation ! -------------------------------------------------------------------------------- 1. ! Run KDE in your native language. 2. ! Checkout the latest available version of Krusader from CVS. Or if you are not ! familiar with CVS, download the latest Krusader CVS snapshot (nightly tarball) ! from http://krusader.sourceforge.net/cvs.php, and run: $ make -f Makefile.cvs $ ./configure $ make ! $ su -c "make install" 3. ! Translate your foo.po with Kbabel. ! Note: We will update all foo.po files just before the beta will be released. 4. ! Compile foo.po, for error checking (from the po directory): ! $ msgfmt foo.po --statistics -c -v --output-file=foo.gmo If it reports "xx fuzzy translations" or "xx untranslated messages", ! please return to step 3. + 5. + Run the commands of step 2 to reinstall the new or updated translation. Run Krusader and test your native translations. ! If necessary fix the foo.po file (redo steps 3-5). ! 6. ! If everything is ok, send the updated translation to Dirk Eschler. *************** *** 210,235 **** URL's ===== ! 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 ! Buglist http://sourceforge.net/tracker/?atid=106488&group_id=6488&func=browse ! Forum http://krusader.sourceforge.net/phpBB/index.php ! ChangeLog http://krusader.sourceforge.net/text.php?note=cvs.changelog&path=dev ! Download pages http://krusader.sourceforge.net/down.php ! http://sourceforge.net/project/showfiles.php?group_id=6488 The Krusader Krew ================== ! Krusader is developed by a dedicated team of individuals, known as the Krusader Krew. ! - Shie Erlich, author <er...@us...> ! - Rafi Yanai, author <ya...@us...> ! - Dirk Eschler, webmaster and i18n coordinator <des...@us...> ! - Csaba Karai, developer <ck...@us...> ! - Heiner Eichmann, developer <h.e...@gm...> ! - Frank Schoolmeesters, documentation coordinator <cod...@us...> ! - Mark Eatough, Krusader handbook proof reader <mar...@ya...> --- 223,266 ---- URL's ===== ! - 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 ! - Buglist ! http://sourceforge.net/tracker/?atid=106488&group_id=6488&func=browse ! - Forum ! http://krusader.sourceforge.net/phpBB/index.php ! - ChangeLog ! http://krusader.sourceforge.net/text.php?note=cvs.changelog&path=dev ! - Download pages ! http://krusader.sourceforge.net/down.php ! http://sourceforge.net/project/showfiles.php?group_id=6488 ! The Krusader Krew ================== ! Krusader is developed by a dedicated team of individuals, ! known as the Krusader Krew: ! - Shie Erlich, author ! <er...@us...> ! - Rafi Yanai, author ! <ya...@us...> ! - Dirk Eschler, webmaster and i18n coordinator ! <des...@us...> ! - Csaba Karai, developer ! <ck...@us...> ! - Heiner Eichmann, developer ! <h.e...@gm...> ! - Frank Schoolmeesters, documentation coordinator ! <cod...@us...> ! - Mark Eatough, krusader handbook proof reader ! <mar...@ya...> *************** *** 240,250 **** (similar to Midnight or Total Commander) but with many extras. It provides all the file-management features you could possibly want. ! Plus: extensive archive handling, mounted filesystem support, FTP, advanced search module, ! viewer/editor, directory synchronisation, file content comparisons, powerful batch renaming and ! much much more. ! It supports the following archive formats: tar, zip, bzip2, gzip, rar, ace, arj and rpm ! and can handle other KIOSlaves such as smb:// or fish:// ! It is (almost) completely customizable, very user friendly, ! fast and looks great on your desktop! :-) You should give it a try. --- 271,281 ---- (similar to Midnight or Total Commander) but with many extras. It provides all the file-management features you could possibly want. ! Plus: extensive archive handling, mounted filesystem support, FTP, advanced ! search module, viewer/editor, directory synchronisation, file content ! comparisons, powerful batch renaming and much much more. ! It supports the following archive formats: tar, zip, bzip2, gzip, rar, ace, arj ! and rpm and can handle other KIOSlaves such as smb:// or fish:// ! It is (almost) completely customizable, very user friendly, fast and looks great ! on your desktop! :-) You should give it a try. |