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: <ma...@us...> - 2003-10-14 23:51:01
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv31492/krusader/Panel Modified Files: krdetailedview.h Log Message: removed a stale comment Index: krdetailedview.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.h,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** krdetailedview.h 3 Oct 2003 08:03:21 -0000 1.16 --- krdetailedview.h 14 Oct 2003 23:50:58 -0000 1.17 *************** *** 81,87 **** virtual void renameCurrentItem(); - ///////////////////////// todo /////////////////////////////////// - // virtual void setFilter(FilterSpec filter) {} - signals: void executed( QString &name ); --- 81,84 ---- |
From: <ma...@us...> - 2003-10-14 23:49:23
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv31184/krusader/Panel Modified Files: krview.h Log Message: fix: all/custom filter. added methods: filterMask(), setFilterMask() Index: krview.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krview.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** krview.h 3 Oct 2003 08:03:05 -0000 1.7 --- krview.h 14 Oct 2003 23:49:18 -0000 1.8 *************** *** 119,124 **** virtual void unselect(const QString& filter = "*") { changeSelection(filter, false); } virtual void invertSelection(); ! virtual inline QString nameToMakeCurrent() const { return _nameToMakeCurrent; } ! virtual inline void setNameToMakeCurrent(const QString name) { _nameToMakeCurrent = name; } virtual QString firstUnmarkedAboveCurrent(); virtual QString statistics(); --- 119,124 ---- virtual void unselect(const QString& filter = "*") { changeSelection(filter, false); } virtual void invertSelection(); ! virtual QString nameToMakeCurrent() const { return _nameToMakeCurrent; } ! virtual void setNameToMakeCurrent(const QString name) { _nameToMakeCurrent = name; } virtual QString firstUnmarkedAboveCurrent(); virtual QString statistics(); *************** *** 132,135 **** --- 132,137 ---- virtual void setFilter(FilterSpec filter) { _filter = filter; } virtual FilterSpec filter() const { return _filter; } + virtual void setFilterMask(QString mask) { _filterMask = mask; } + virtual QString filterMask() const { return _filterMask; } inline QWidget *widget() { return _widget; } inline void setWidget(QWidget *w) { _widget = w; } |
From: <ma...@us...> - 2003-10-14 23:48:29
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv30987/krusader/Panel Modified Files: listpanel.h Log Message: fix: all/custom filter. removed ListPanel::filter property. panel uses view directly Index: listpanel.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** listpanel.h 2 Oct 2003 19:54:14 -0000 1.11 --- listpanel.h 14 Oct 2003 23:48:26 -0000 1.12 *************** *** 69,73 **** Q_OBJECT public: ! enum FilterSpec{ALL,EXEC,CUSTOM}; // constructor create the panel, but DOESN'T fill it with data, use start() --- 69,73 ---- Q_OBJECT public: ! //enum FilterSpec{ALL,EXEC,CUSTOM}; // constructor create the panel, but DOESN'T fill it with data, use start() *************** *** 90,94 **** void slotEndUpdate(); // internal void slotGetStats(QString path); // get the disk-free stats ! void setFilter(FilterSpec f); ///////////////////////// service functions - called internally //////////////////////// --- 90,94 ---- void slotEndUpdate(); // internal void slotGetStats(QString path); // get the disk-free stats ! void setFilter(KrView::FilterSpec f); ///////////////////////// service functions - called internally //////////////////////// *************** *** 118,122 **** int colorMask; bool compareMode; ! FilterSpec filter; QString filterMask; QPixmap currDragPix; --- 118,122 ---- int colorMask; bool compareMode; ! //FilterSpec filter; QString filterMask; QPixmap currDragPix; |
From: <ma...@us...> - 2003-10-14 23:47:50
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv30808/krusader/Panel Modified Files: listpanel.cpp Log Message: fix: all/custom filter. removed ListPanel::filter property. panel uses view directly Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** listpanel.cpp 3 Oct 2003 08:04:41 -0000 1.40 --- listpanel.cpp 14 Oct 2003 23:47:44 -0000 1.41 *************** *** 171,175 **** layout->addMultiCellWidget( totals, 4, 4, 0, 1 ); ! filter = ALL; } --- 171,175 ---- layout->addMultiCellWidget( totals, 4, 4, 0, 1 ); ! //filter = ALL; } *************** *** 681,702 **** } ! void ListPanel::setFilter( FilterSpec f ) { switch ( f ) { ! case ALL : ! filter = ALL; ! break; ! case EXEC: ! filter = EXEC; break; ! case CUSTOM : filterMask = KRSpWidgets::getMask( i18n( " Select Files " ) ); // if the user canceled - quit if ( filterMask == QString::null ) return ; ! filter = CUSTOM; break; default: return ; } func->refresh(); } --- 681,700 ---- } ! void ListPanel::setFilter( KrView::FilterSpec f ) { switch ( f ) { ! case KrView::All : ! //case KrView::EXEC: break; ! case KrView::Custom : filterMask = KRSpWidgets::getMask( i18n( " Select Files " ) ); // if the user canceled - quit if ( filterMask == QString::null ) return ; ! view->setFilterMask(filterMask); break; default: return ; } + view->setFilter(f); // do that in any case func->refresh(); } |
From: <ma...@us...> - 2003-10-14 23:46:45
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv30652 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.122 retrieving revision 1.123 diff -C2 -d -r1.122 -r1.123 *** ChangeLog 14 Oct 2003 22:23:08 -0000 1.122 --- ChangeLog 14 Oct 2003 23:46:41 -0000 1.123 *************** *** 1,3 **** --- 1,4 ---- ====================== + FIXED: All files / Custom files. Executable was removed. FIXED: when selecting something from the combobox in "mark files" dialog, combo doesn't close immediatly FIXED: mark files dialog added the same selection more than once |
From: <ma...@us...> - 2003-10-14 23:41:55
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1:/tmp/cvs-serv29225/krusader/Dialogs Modified Files: krmaskchoice.cpp Log Message: fixed: a type in connect() Index: krmaskchoice.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krmaskchoice.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** krmaskchoice.cpp 14 Oct 2003 22:21:51 -0000 1.3 --- krmaskchoice.cpp 14 Oct 2003 23:41:52 -0000 1.4 *************** *** 140,144 **** connect( PushButton7_2, SIGNAL( clicked() ), this, SLOT( deleteSelection() ) ); connect( PushButton7_3, SIGNAL( clicked() ), this, SLOT( clearSelections() ) ); ! connect( selection, SIGNAL( activated(const QString&) ), this, SLOT( setEditText(const QString &) ) ); connect( selection->lineEdit(), SIGNAL( returnPressed() ), this, SLOT( accept() )); connect( preSelections, SIGNAL( doubleClicked(QListBoxItem*) ), this, SLOT( acceptFromList(QListBoxItem *) ) ); --- 140,144 ---- connect( PushButton7_2, SIGNAL( clicked() ), this, SLOT( deleteSelection() ) ); connect( PushButton7_3, SIGNAL( clicked() ), this, SLOT( clearSelections() ) ); ! connect( selection, SIGNAL( activated(const QString&) ), selection, SLOT( setEditText(const QString &) ) ); connect( selection->lineEdit(), SIGNAL( returnPressed() ), this, SLOT( accept() )); connect( preSelections, SIGNAL( doubleClicked(QListBoxItem*) ), this, SLOT( acceptFromList(QListBoxItem *) ) ); |
From: <ma...@us...> - 2003-10-14 22:23:12
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv13175 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.121 retrieving revision 1.122 diff -C2 -d -r1.121 -r1.122 *** ChangeLog 14 Oct 2003 21:41:05 -0000 1.121 --- ChangeLog 14 Oct 2003 22:23:08 -0000 1.122 *************** *** 1,3 **** --- 1,5 ---- ====================== + FIXED: when selecting something from the combobox in "mark files" dialog, combo doesn't close immediatly + FIXED: mark files dialog added the same selection more than once FIXED: disabled panel-types in konfigurator FIXED: font size problems with the Select dialog, and New Net Connection |
From: <ma...@us...> - 2003-10-14 22:22:24
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1:/tmp/cvs-serv12963/krusader/Dialogs Modified Files: krspwidgets.cpp Log Message: fixed: mark files dialog - see bug 823680 Index: krspwidgets.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krspwidgets.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** krspwidgets.cpp 21 Dec 2002 19:44:21 -0000 1.5 --- krspwidgets.cpp 14 Oct 2003 22:22:21 -0000 1.6 *************** *** 57,61 **** p->setCaption(caption); p->exec(); ! if (p->selection->currentText()=="") return QString::null; else return p->selection->currentText(); } --- 57,61 ---- p->setCaption(caption); p->exec(); ! if (p->selection->currentText()=="") return QString::null; else return p->selection->currentText(); } *************** *** 171,176 **** void KRMaskChoiceSub::accept() { ! QString topItem=KRSpWidgets::maskList.getFirst(); ! if (topItem!=selection->currentText()) KRSpWidgets::maskList.insert(0,selection->currentText().local8Bit()); // write down the predefined selections list --- 171,185 ---- void KRMaskChoiceSub::accept() { ! bool add = true; ! char *tmp; ! // make sure we don't have that already ! for ( tmp = KRSpWidgets::maskList.first(); tmp ; tmp = KRSpWidgets::maskList.next() ) ! if (QString(tmp).simplifyWhiteSpace() == selection->currentText().simplifyWhiteSpace()) { ! // break if we found one such as this ! add = false; ! break; ! } ! ! if (add) KRSpWidgets::maskList.insert(0,selection->currentText().local8Bit()); // write down the predefined selections list *************** *** 193,199 **** // check if the selection already exists while (i!=0) ! if (i->text()==temp) { ! itemExists=true; ! break; } else i=i->next(); if (temp!="" && !itemExists) { --- 202,208 ---- // check if the selection already exists while (i!=0) ! if (i->text()==temp) { ! itemExists=true; ! break; } else i=i->next(); if (temp!="" && !itemExists) { |
From: <ma...@us...> - 2003-10-14 22:21:58
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1:/tmp/cvs-serv12791/krusader/Dialogs Modified Files: krmaskchoice.cpp Log Message: fixed: mark files dialog - see bug 823680 Index: krmaskchoice.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krmaskchoice.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** krmaskchoice.cpp 13 Oct 2003 17:23:00 -0000 1.2 --- krmaskchoice.cpp 14 Oct 2003 22:21:51 -0000 1.3 *************** *** 41,46 **** #include <qmessagebox.h> #include <klocale.h> ! /* * Constructs a KRMaskChoice which is a child of 'parent', with the * name 'name' and widget flags set to 'f' --- 41,47 ---- #include <qmessagebox.h> #include <klocale.h> + #include <qlineedit.h> ! /* * Constructs a KRMaskChoice which is a child of 'parent', with the * name 'name' and widget flags set to 'f' *************** *** 54,58 **** if ( !name ) setName( "KRMaskChoice" ); ! resize( 401, 314 ); setCaption( i18n( "Choose Files" ) ); setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)5, (QSizePolicy::SizeType)5 ) ); --- 55,59 ---- if ( !name ) setName( "KRMaskChoice" ); ! resize( 401, 314 ); setCaption( i18n( "Choose Files" ) ); setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)5, (QSizePolicy::SizeType)5 ) ); *************** *** 139,144 **** connect( PushButton7_2, SIGNAL( clicked() ), this, SLOT( deleteSelection() ) ); connect( PushButton7_3, SIGNAL( clicked() ), this, SLOT( clearSelections() ) ); ! connect( selection, SIGNAL( activated(const QString&) ), this, SLOT( accept() ) ); connect( preSelections, SIGNAL( doubleClicked(QListBoxItem*) ), this, SLOT( acceptFromList(QListBoxItem *) ) ); connect( preSelections, SIGNAL( returnPressed(QListBoxItem*) ), this, SLOT( acceptFromList(QListBoxItem *) ) ); } --- 140,147 ---- connect( PushButton7_2, SIGNAL( clicked() ), this, SLOT( deleteSelection() ) ); connect( PushButton7_3, SIGNAL( clicked() ), this, SLOT( clearSelections() ) ); ! connect( selection, SIGNAL( activated(const QString&) ), this, SLOT( setEditText(const QString &) ) ); ! connect( selection->lineEdit(), SIGNAL( returnPressed() ), this, SLOT( accept() )); connect( preSelections, SIGNAL( doubleClicked(QListBoxItem*) ), this, SLOT( acceptFromList(QListBoxItem *) ) ); + connect( preSelections, SIGNAL( highlighted(const QString&) ), selection, SLOT( setEditText(const QString &) ) ); connect( preSelections, SIGNAL( returnPressed(QListBoxItem*) ), this, SLOT( acceptFromList(QListBoxItem *) ) ); } |
From: <ma...@us...> - 2003-10-14 21:41:10
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv4549 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.120 retrieving revision 1.121 diff -C2 -d -r1.120 -r1.121 *** ChangeLog 13 Oct 2003 17:23:00 -0000 1.120 --- ChangeLog 14 Oct 2003 21:41:05 -0000 1.121 *************** *** 1,3 **** --- 1,4 ---- ====================== + FIXED: disabled panel-types in konfigurator FIXED: font size problems with the Select dialog, and New Net Connection FIXED: mountman detects those devices as supermount, which are mounted and missing from fstab |
From: <ma...@us...> - 2003-10-14 21:40:29
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1:/tmp/cvs-serv4401/krusader/Konfigurator Modified Files: kgstartupimpl.cpp Log Message: disabled panel-types in konfigurator Index: kgstartupimpl.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/kgstartupimpl.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** kgstartupimpl.cpp 15 Apr 2002 18:49:23 -0000 1.1.1.1 --- kgstartupimpl.cpp 14 Oct 2003 21:40:22 -0000 1.2 *************** *** 94,97 **** --- 94,100 ---- slotPanelsSave(); else slotPanelsDontSave(); + + // disable panel types - until we get a new konfigurator + panelsTypes->setEnabled(false); } *************** *** 142,146 **** // reactivate all other objects in the 'panels' group TextLabel1->setEnabled(true); ! panelsTypes->setEnabled(true); panelsLeftLabel1->setEnabled(true); panelsLeftLabel2->setEnabled(true); --- 145,149 ---- // reactivate all other objects in the 'panels' group TextLabel1->setEnabled(true); ! //panelsTypes->setEnabled(true); panelsLeftLabel1->setEnabled(true); panelsLeftLabel2->setEnabled(true); |
From: <ck...@us...> - 2003-10-13 17:23:05
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv22316/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: font problems with Selection and New Net Connection Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.119 retrieving revision 1.120 diff -C2 -d -r1.119 -r1.120 *** ChangeLog 13 Oct 2003 14:24:16 -0000 1.119 --- ChangeLog 13 Oct 2003 17:23:00 -0000 1.120 *************** *** 1,3 **** --- 1,4 ---- ====================== + FIXED: font size problems with the Select dialog, and New Net Connection FIXED: mountman detects those devices as supermount, which are mounted and missing from fstab FIXED: mountman inserts '/dev/' before NFS shares and mounted devices which are missing from fstab |
From: <ck...@us...> - 2003-10-13 17:23:05
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1:/tmp/cvs-serv22316/krusader_kde3/krusader/Dialogs Modified Files: krmaskchoice.cpp newftpgui.cpp Log Message: FIXED: font problems with Selection and New Net Connection Index: krmaskchoice.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krmaskchoice.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** krmaskchoice.cpp 15 Apr 2002 18:48:07 -0000 1.1.1.1 --- krmaskchoice.cpp 13 Oct 2003 17:23:00 -0000 1.2 *************** *** 59,63 **** selection = new QComboBox( FALSE, this, "selection" ); ! selection->setGeometry( QRect( 12, 48, 377, 22 ) ); selection->setEditable( TRUE ); selection->setInsertionPolicy( QComboBox::AtTop ); --- 59,63 ---- selection = new QComboBox( FALSE, this, "selection" ); ! selection->setGeometry( QRect( 12, 48, 377, selection->font().pointSize()*2 + 4) ); selection->setEditable( TRUE ); selection->setInsertionPolicy( QComboBox::AtTop ); *************** *** 81,85 **** GroupBox1 = new QGroupBox( this, "GroupBox1" ); ! GroupBox1->setGeometry( QRect( 11, 77, 379, 190 ) ); GroupBox1->setTitle( i18n( "Predefined Selections" ) ); --- 81,85 ---- GroupBox1 = new QGroupBox( this, "GroupBox1" ); ! GroupBox1->setGeometry( QRect( 11, 77, 379, 190 ) ); GroupBox1->setTitle( i18n( "Predefined Selections" ) ); Index: newftpgui.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/newftpgui.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** newftpgui.cpp 6 Jun 2003 13:42:43 -0000 1.3 --- newftpgui.cpp 13 Oct 2003 17:23:00 -0000 1.4 *************** *** 771,775 **** --- 771,779 ---- username->setGeometry( QRect( 10, 120, 320, 22 ) ); + QFont font; + font.setPointSize( 9 ); url = new KHistoryCombo( this, "url" ); + url->setFont( font ); + url->setMaximumHeight( 20 ); url->setGeometry( QRect( 80, 70, 200, 22 ) ); connect( url, SIGNAL( activated( const QString& )), |
From: <des...@us...> - 2003-10-13 15:16:01
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1:/tmp/cvs-serv31204/po Modified Files: nl.po Log Message: Index: nl.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/nl.po,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** nl.po 9 Oct 2003 15:46:31 -0000 1.5 --- nl.po 13 Oct 2003 15:15:55 -0000 1.6 *************** *** 8,14 **** "Project-Id-Version: nl\n" "POT-Creation-Date: 2003-10-06 21:55+0200\n" ! "PO-Revision-Date: 2003-10-07 19:37+0200\n" ! "Last-Translator: Frank Schoolmeesters <fra...@ya...>\n" ! "Language-Team: DUTCH (nl) <nl...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" --- 8,14 ---- "Project-Id-Version: nl\n" "POT-Creation-Date: 2003-10-06 21:55+0200\n" ! "PO-Revision-Date: 2003-10-12 20:02+0200\n" ! "Last-Translator: Schoolmeesters <fra...@ya...>\n" ! "Language-Team: Dutch <nl...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" *************** *** 22,38 **** #: paneltabbar.cpp:34 msgid "Close tab" ! msgstr "Sluit tab" #: paneltabbar.cpp:36 msgid "Duplicate tab" ! msgstr "Duplicaat tab" #: panelmanager.cpp:24 msgid "Open a new tab in home" ! msgstr "Open een nieuwe tab in home" #: panelmanager.cpp:32 msgid "Close current tab" ! msgstr "Sluit de huidige tab" #: main.cpp:42 main.cpp:55 --- 22,38 ---- #: paneltabbar.cpp:34 msgid "Close tab" ! msgstr "Tab sluiten" #: paneltabbar.cpp:36 msgid "Duplicate tab" ! msgstr "Tab Dupliceren" #: panelmanager.cpp:24 msgid "Open a new tab in home" ! msgstr "Een nieuwe tab maken met de home directory" #: panelmanager.cpp:32 msgid "Close current tab" ! msgstr "Huidige tab sluiten" #: main.cpp:42 main.cpp:55 *************** *** 42,50 **** #: main.cpp:47 msgid "Start left panel at <path>" ! msgstr "Start links venster met <path>" #: main.cpp:48 msgid "Start right panel at <path>" ! msgstr "Start rechts venster met <path>" #: main.cpp:56 --- 42,50 ---- #: main.cpp:47 msgid "Start left panel at <path>" ! msgstr "Links venster met <path> starten" #: main.cpp:48 msgid "Start right panel at <path>" ! msgstr "Rechts venster met <path> starten" #: main.cpp:56 *************** *** 54,62 **** #: krusaderview.cpp:79 msgid "Function keys allow to perform fast operations on files." ! msgstr "Functie toetsen laten snelle bewerkingen op bestanden toe." #: krusader.cpp:176 msgid "Status bar will show basic informations about file below mouse pointer." ! msgstr "De statusbar geeft algemene info over het bestand onder de muispijl." #: krusader.cpp:225 --- 54,62 ---- #: krusaderview.cpp:79 msgid "Function keys allow to perform fast operations on files." ! msgstr "Functie toetsen laten snelle bestandsbewerkingen toe." #: krusader.cpp:176 msgid "Status bar will show basic informations about file below mouse pointer." ! msgstr "De statusbalk geeft algemene informatie over het bestand onder de muispijl." #: krusader.cpp:225 *************** *** 66,70 **** msgstr "" "Er is een oudere configuratie dan v0.90 gedetecteerd Krusader moet moet uw " ! "configuratieresetten naar de standaardinstellingen Krusader zal nu " "Konfigurator opstarten." --- 66,70 ---- msgstr "" "Er is een oudere configuratie dan v0.90 gedetecteerd Krusader moet moet uw " ! "configuratie resetten naar de standaardinstellingen. Krusader zal nu " "Konfigurator opstarten." *************** *** 95,99 **** #: krusader.cpp:271 msgid "F3 View Dialog" ! msgstr "F3 Bekijken " #: krusader.cpp:274 --- 95,99 ---- #: krusader.cpp:271 msgid "F3 View Dialog" ! msgstr "F3 Bekijken" #: krusader.cpp:274 *************** *** 135,163 **** #: krusader.cpp:326 msgid "Show &FN Keys Bar" ! msgstr "Toon &FN toetsen" #: krusader.cpp:329 msgid "Show &Command Line" ! msgstr "Toon &Commandoregel" #: krusader.cpp:332 msgid "Show &Terminal Emulator" ! msgstr "Toon &Terminal emulator" #: krusader.cpp:335 msgid "Show &Hidden Files" ! msgstr "Toon verborgen &bestanden " #: krusader.cpp:337 msgid "S&wap Panels" ! msgstr "Vensters &Swappen" #: krusader.cpp:339 msgid "Sort By E&xtention" ! msgstr "Sorteren op e&xtensie" #: krusader.cpp:347 msgid "popup cmdline" ! msgstr "Popup commandoregel" #: krusader.cpp:350 --- 135,163 ---- #: krusader.cpp:326 msgid "Show &FN Keys Bar" ! msgstr "&FN toetsen tonen" #: krusader.cpp:329 msgid "Show &Command Line" ! msgstr "&Commandoregel tonen" #: krusader.cpp:332 msgid "Show &Terminal Emulator" ! msgstr "&Terminal emulator tonen" #: krusader.cpp:335 msgid "Show &Hidden Files" ! msgstr "Verborgen &bestanden tonen" #: krusader.cpp:337 msgid "S&wap Panels" ! msgstr "Vensters v&erwisselen" #: krusader.cpp:339 msgid "Sort By E&xtention" ! msgstr "Op e&xtensie sorteren" #: krusader.cpp:347 msgid "popup cmdline" ! msgstr "commandoregel popup" #: krusader.cpp:350 *************** *** 167,191 **** #: krusader.cpp:351 msgid "&Edit new file" ! msgstr "Nieuw bestand &bewerken" #: krusader.cpp:352 msgid "Start &Root Mode Krusader" ! msgstr "Start &Root Mode Krusader" #: krusader.cpp:354 msgid "Co&nfigure compare-mode" ! msgstr "Vergelijk mode c&onfigureren" #: krusader.cpp:356 msgid "&Test Archive(s)" ! msgstr "&Test Archief(ven)" #: krusader.cpp:360 msgid "New Net &Connection" ! msgstr "Nieuwe Net ver&binding" #: krusader.cpp:362 msgid "Calculate &Occupied Space" ! msgstr "&Bereken benodigde ruimte" #: krusader.cpp:364 --- 167,191 ---- #: krusader.cpp:351 msgid "&Edit new file" ! msgstr "&Nieuw bestand bewerken" #: krusader.cpp:352 msgid "Start &Root Mode Krusader" ! msgstr "&Root Mode Krusader Starten" #: krusader.cpp:354 msgid "Co&nfigure compare-mode" ! msgstr "Vergelijk modus c&onfigureren" #: krusader.cpp:356 msgid "&Test Archive(s)" ! msgstr "Archief(ven) &Testen" #: krusader.cpp:360 msgid "New Net &Connection" ! msgstr "Nieuwe Net &verbinding" #: krusader.cpp:362 msgid "Calculate &Occupied Space" ! msgstr "Benodigde &ruimte berekenen" #: krusader.cpp:364 *************** *** 203,215 **** #: krusader.cpp:370 msgid "Select &Group" ! msgstr "&Selecteer Groep" #: krusader.cpp:372 msgid "&Select All" ! msgstr "Selecteer &Alles" #: krusader.cpp:374 msgid "U&nselect All" ! msgstr "De-selecteer A&lles" #: krusader.cpp:376 --- 203,215 ---- #: krusader.cpp:370 msgid "Select &Group" ! msgstr "Groep &Selecteren" #: krusader.cpp:372 msgid "&Select All" ! msgstr "&Alles Selecteren" #: krusader.cpp:374 msgid "U&nselect All" ! msgstr "A&lles De-selecteren" #: krusader.cpp:376 *************** *** 219,223 **** #: krusader.cpp:378 msgid "Disconnect &From Net" ! msgstr "De-connecteer van &Net" #: krusader.cpp:380 --- 219,223 ---- #: krusader.cpp:378 msgid "Disconnect &From Net" ! msgstr "Van het &Net De-connecteren" #: krusader.cpp:380 *************** *** 235,239 **** #: krusader.cpp:386 msgid "&Unselect Group" ! msgstr "&De-selecteer Groep" #: krusader.cpp:388 --- 235,239 ---- #: krusader.cpp:386 msgid "&Unselect Group" ! msgstr "Groep &De-selecteren" #: krusader.cpp:388 *************** *** 247,251 **** #: krusader.cpp:394 msgid "Save &Position" ! msgstr "Bewaar &Positie" #: krusader.cpp:396 --- 247,251 ---- #: krusader.cpp:394 msgid "Save &Position" ! msgstr "&Positie bewaren" #: krusader.cpp:396 *************** *** 299,307 **** #: krusader.cpp:418 msgid "Setup Krusader the way you like it" ! msgstr "Stel Krusader in zoals u het leuk vindt" #: krusader.cpp:419 msgid "Back to the place you came from" ! msgstr "Terug naar de plaats van waar u komt" #: krusader.cpp:420 --- 299,307 ---- #: krusader.cpp:418 msgid "Setup Krusader the way you like it" ! msgstr "Krusader instellen zoals u het leuk vindt" #: krusader.cpp:419 msgid "Back to the place you came from" ! msgstr "Terugkeren naar de plaats van waar u komt" #: krusader.cpp:420 *************** *** 311,315 **** #: krusader.cpp:421 msgid "Search for files" ! msgstr "Zoeken naar bestanden" #: krusader.cpp:450 krusader.cpp:453 Konfigurator/kgstartupimpl.cpp:167 --- 311,315 ---- #: krusader.cpp:421 msgid "Search for files" ! msgstr "Naar bestanden zoeken" #: krusader.cpp:450 krusader.cpp:453 Konfigurator/kgstartupimpl.cpp:167 *************** *** 366,371 **** msgstr "" "Om de inhoud van 2 bestanden te vergelijken, selecteer (oplichten) een " ! "bestand in het\n" ! "linker venster, en selecteer het ander bestand in het rechter venster." #: krslots.cpp:165 krslots.cpp:171 --- 366,370 ---- msgstr "" "Om de inhoud van 2 bestanden te vergelijken, selecteer (oplichten) een " ! "bestand in het linker venster, en selecteer een ander bestand in het rechter venster." #: krslots.cpp:165 krslots.cpp:171 *************** *** 380,385 **** msgstr "" "Om tijd te winnen om een archief te openen zal, Krusader geen bladwijzers " ! "toelaten die naar een archief verwijzen, en het is meestal een fout " ! "om dit wel te doen!" #: krslots.cpp:336 krslots.cpp:467 Panel/panelfunc.cpp:418 --- 379,384 ---- msgstr "" "Om tijd te winnen om een archief te openen zal, Krusader geen bladwijzers " ! "toelaten die naar een archief verwijzen, en het is meestal fout om dit" ! "wel te doen!" #: krslots.cpp:336 krslots.cpp:467 Panel/panelfunc.cpp:418 *************** *** 398,410 **** msgstr "" "Kan geen batch hernoem tool vinden.\n" ! "U kan Krename verkrijgen bij http://krename.sf.net" #: krslots.cpp:432 msgid "Enter a URL to view:" ! msgstr "Voer een URL in om te zien:" #: krslots.cpp:449 msgid "Enter the filename to edit:" ! msgstr "Nieuw bestand aanmaken om te bewerken:" #: resources.h:38 --- 397,409 ---- msgstr "" "Kan geen batch hernoem tool vinden.\n" ! "U kan Krename vinden op http://www.krename.net" #: krslots.cpp:432 msgid "Enter a URL to view:" ! msgstr "Geef een URL in om te zien:" #: krslots.cpp:449 msgid "Enter the filename to edit:" ! msgstr "Geef de bestandsnaam om te bewerken:" #: resources.h:38 *************** *** 414,422 **** #: BookMan/kbookmarkmenu.cpp:182 msgid "Add a bookmark for the current document" ! msgstr "Een bladwijzer toevoegen voor de huidige document." #: BookMan/kbookmarkmenu.cpp:196 msgid "Edit your bookmark collection in a separate window" ! msgstr "Bewerk uw bladwijzers-lijst in een apart venster." #: BookMan/kbookmarkmenu.cpp:205 --- 413,421 ---- #: BookMan/kbookmarkmenu.cpp:182 msgid "Add a bookmark for the current document" ! msgstr "Een bladwijzer toevoegen voor de huidige document" #: BookMan/kbookmarkmenu.cpp:196 msgid "Edit your bookmark collection in a separate window" ! msgstr "Uw bladwijzers collectie bewerken in een apart venster" #: BookMan/kbookmarkmenu.cpp:205 *************** *** 434,438 **** #: BookMan/bookmarksbutton.cpp:32 msgid "Open your bookmarks" ! msgstr "Open uw bladwijzers" #: BookMan/bookmarksbutton.cpp:36 --- 433,437 ---- #: BookMan/bookmarksbutton.cpp:32 msgid "Open your bookmarks" ! msgstr "Uw bladwijzers openen" #: BookMan/bookmarksbutton.cpp:36 *************** *** 686,690 **** #: Dialogs/colormaskdialogbase.cpp:147 msgid "Select Compare Mode" ! msgstr "Selecteer vergelijk modus" #: Dialogs/colormaskdialogbase.cpp:154 --- 685,689 ---- #: Dialogs/colormaskdialogbase.cpp:147 msgid "Select Compare Mode" ! msgstr "Vergelijk modus selecteren" #: Dialogs/colormaskdialogbase.cpp:154 *************** *** 694,710 **** #: Dialogs/colormaskdialogbase.cpp:178 Dialogs/colormaskdialogbase.cpp:257 msgid "Show identical files" ! msgstr "Toon identieke bestanden" #: Dialogs/colormaskdialogbase.cpp:183 Dialogs/colormaskdialogbase.cpp:252 msgid "Show older files" ! msgstr "Toon oudere bestanden" #: Dialogs/colormaskdialogbase.cpp:188 Dialogs/colormaskdialogbase.cpp:247 msgid "Show newer files" ! msgstr "Toon nieuwere bestanden" #: Dialogs/colormaskdialogbase.cpp:193 Dialogs/colormaskdialogbase.cpp:262 msgid "Show exclusive files" ! msgstr "Toon exclusieve bestanden" #: Dialogs/colormaskdialogbase.cpp:223 --- 693,709 ---- #: Dialogs/colormaskdialogbase.cpp:178 Dialogs/colormaskdialogbase.cpp:257 msgid "Show identical files" ! msgstr "Identieke bestanden tonen" #: Dialogs/colormaskdialogbase.cpp:183 Dialogs/colormaskdialogbase.cpp:252 msgid "Show older files" ! msgstr "Oudere bestanden tonen" #: Dialogs/colormaskdialogbase.cpp:188 Dialogs/colormaskdialogbase.cpp:247 msgid "Show newer files" ! msgstr "Nieuwere bestanden tonen" #: Dialogs/colormaskdialogbase.cpp:193 Dialogs/colormaskdialogbase.cpp:262 msgid "Show exclusive files" ! msgstr "Exclusieve bestanden tonen" #: Dialogs/colormaskdialogbase.cpp:223 *************** *** 750,754 **** msgstr "" "<qt>Bestand bewerken.<p>De Editor is instelbaar in Konfigurator, " ! "standaard de 'interne editor'.</qt>" #: GUI/kfnkeys.cpp:62 --- 749,753 ---- msgstr "" "<qt>Bestand bewerken.<p>De Editor is instelbaar in Konfigurator, " ! "de standaard editor is de 'interne editor'.</qt>" #: GUI/kfnkeys.cpp:62 *************** *** 758,766 **** #: GUI/kfnkeys.cpp:63 msgid "Copy file from one panel to the other." ! msgstr "Kopieer bestand van het ene venster naar het andere." #: GUI/kfnkeys.cpp:67 msgid "Move file from one panel to the other." ! msgstr "Verplaats bestand van het ene venster naar het andere." #: GUI/kfnkeys.cpp:70 --- 757,765 ---- #: GUI/kfnkeys.cpp:63 msgid "Copy file from one panel to the other." ! msgstr "Bestand kopiëren van het ene venster naar het andere." #: GUI/kfnkeys.cpp:67 msgid "Move file from one panel to the other." ! msgstr "Bestand verplaatsen van het ene venster naar het andere." #: GUI/kfnkeys.cpp:70 *************** *** 770,774 **** #: GUI/kfnkeys.cpp:71 msgid "Create directory in current panel." ! msgstr "Maak een directory aan in het huidige venster." #: GUI/kfnkeys.cpp:75 --- 769,773 ---- #: GUI/kfnkeys.cpp:71 msgid "Create directory in current panel." ! msgstr "Directory aanmaken in het huidige venster." #: GUI/kfnkeys.cpp:75 *************** *** 896,900 **** #: Panel/listpanel.cpp:252 Panel/listpanel.cpp:259 msgid "homepage" ! msgstr "homepagina" #: Konfigurator/kgstartupimpl.cpp:206 --- 895,899 ---- #: Panel/listpanel.cpp:252 Panel/listpanel.cpp:259 msgid "homepage" ! msgstr "de homepagina" #: Konfigurator/kgstartupimpl.cpp:206 *************** *** 916,920 **** #: Konfigurator/kgstartup.cpp:137 msgid "Start with the following settings:" ! msgstr "Starten met de volgende instellingen:" #: Konfigurator/kgstartup.cpp:141 Konfigurator/kgstartup.cpp:226 --- 915,919 ---- #: Konfigurator/kgstartup.cpp:137 msgid "Start with the following settings:" ! msgstr "Met volgende instellingen starten:" #: Konfigurator/kgstartup.cpp:141 Konfigurator/kgstartup.cpp:226 *************** *** 944,948 **** #: Konfigurator/kgstartup.cpp:156 Konfigurator/kgstartup.cpp:178 msgid "work dir" ! msgstr "werk dir" #: Konfigurator/kgstartup.cpp:162 --- 943,947 ---- #: Konfigurator/kgstartup.cpp:156 Konfigurator/kgstartup.cpp:178 msgid "work dir" ! msgstr "de werk directory" #: Konfigurator/kgstartup.cpp:162 *************** *** 952,960 **** #: Konfigurator/kgstartup.cpp:167 msgid "Left panel starts at" ! msgstr "Links venster start met" #: Konfigurator/kgstartup.cpp:172 msgid "Right panel starts at" ! msgstr "Rechts venster start met" #: Konfigurator/kgstartup.cpp:192 Konfigurator/kgstartup.cpp:197 --- 951,959 ---- #: Konfigurator/kgstartup.cpp:167 msgid "Left panel starts at" ! msgstr "Links venster starten met" #: Konfigurator/kgstartup.cpp:172 msgid "Right panel starts at" ! msgstr "Rechts venster starten met" #: Konfigurator/kgstartup.cpp:192 Konfigurator/kgstartup.cpp:197 *************** *** 992,996 **** #: Konfigurator/kglookfeelimpl.cpp:51 msgid "Show a tray icon " ! msgstr "Toon een taakbalk icoon " #: Konfigurator/kglookfeel.cpp:142 --- 991,995 ---- #: Konfigurator/kglookfeelimpl.cpp:51 msgid "Show a tray icon " ! msgstr "Taakbalk icoon tonen" #: Konfigurator/kglookfeel.cpp:142 *************** *** 1036,1040 **** #: Konfigurator/kglookfeel.cpp:194 msgid "Show hidden files" ! msgstr "Toon verborgen bestanden" #: Konfigurator/kglookfeel.cpp:199 --- 1035,1039 ---- #: Konfigurator/kglookfeel.cpp:194 msgid "Show hidden files" ! msgstr "Verborgen bestanden tonen" #: Konfigurator/kglookfeel.cpp:199 *************** *** 1200,1204 **** #: Konfigurator/kggeneral.cpp:209 msgid "Move to trash" ! msgstr "Verplaats naar de prullenbak" #: Konfigurator/kggeneral.cpp:214 --- 1199,1203 ---- #: Konfigurator/kggeneral.cpp:209 msgid "Move to trash" ! msgstr "Naar de prullenbak verplaatsen" #: Konfigurator/kggeneral.cpp:214 *************** *** 1208,1212 **** #: Konfigurator/kggeneral.cpp:226 msgid "Use mimetype magic" ! msgstr "Gebruik mimetype magic" #: Konfigurator/kggeneral.cpp:227 --- 1207,1211 ---- #: Konfigurator/kggeneral.cpp:226 msgid "Use mimetype magic" ! msgstr "Mimetype magic gebruiken" #: Konfigurator/kggeneral.cpp:227 *************** *** 1400,1404 **** #: Konfigurator/kgarchives.cpp:97 msgid "Krusader transparently handles the following types of archives:" ! msgstr "Krusader behandeld de volgende types van archieven transparant:" #: Konfigurator/kgarchives.cpp:102 --- 1399,1403 ---- #: Konfigurator/kgarchives.cpp:97 msgid "Krusader transparently handles the following types of archives:" ! msgstr "Krusader zal de volgende archieftypes transparant behandelen:" #: Konfigurator/kgarchives.cpp:102 *************** *** 1423,1427 **** #: Konfigurator/kgarchives.cpp:123 Konfigurator/kgadvanced.cpp:71 msgid "Fine-Tuning" ! msgstr "Fijn instelling" #: Konfigurator/kgarchives.cpp:132 --- 1422,1426 ---- #: Konfigurator/kgarchives.cpp:123 Konfigurator/kgadvanced.cpp:71 msgid "Fine-Tuning" ! msgstr "Fijn instellingen" #: Konfigurator/kgarchives.cpp:132 *************** *** 1443,1447 **** #: Konfigurator/kgarchives.cpp:137 msgid "Test archive when finished packing " ! msgstr "Test het archief wanneer het ingepakt is " #: Konfigurator/kgarchives.cpp:138 --- 1442,1446 ---- #: Konfigurator/kgarchives.cpp:137 msgid "Test archive when finished packing " ! msgstr "Het archief testen wanneer het ingepakt is " #: Konfigurator/kgarchives.cpp:138 *************** *** 1465,1469 **** #: Konfigurator/kgadvanced.cpp:57 msgid "Deleting file(s)" ! msgstr "Wis bestand(en)" #: Konfigurator/kgadvanced.cpp:61 --- 1464,1468 ---- #: Konfigurator/kgadvanced.cpp:57 msgid "Deleting file(s)" ! msgstr "Bestand(en) wissen" #: Konfigurator/kgadvanced.cpp:61 *************** *** 1473,1477 **** #: Konfigurator/kgadvanced.cpp:65 msgid "Moving file(s)" ! msgstr "Verplaats bestand(en)" #: Konfigurator/kgadvanced.cpp:80 --- 1472,1476 ---- #: Konfigurator/kgadvanced.cpp:65 msgid "Moving file(s)" ! msgstr "Bestand(en) verplaatsen" #: Konfigurator/kgadvanced.cpp:80 *************** *** 1505,1509 **** msgstr "" "Root schakelaar: indien aangevinkt zal Krusader zich proberen als root te " ! "gedragen dus alle acties ondernemen ZONDER de permissies te controleren !!!" #: Konfigurator/kgadvanced.cpp:109 --- 1504,1508 ---- msgstr "" "Root schakelaar: indien aangevinkt zal Krusader zich proberen als root te " ! "gedragen en alle acties ondernemen ZONDER de permissies te controleren !!!" #: Konfigurator/kgadvanced.cpp:109 *************** *** 1938,1942 **** #: Panel/panelfunc.cpp:815 msgid "When Packing into archive - you must use the active directory" ! msgstr "Wanneer u inpakken naar een archief - moet u de actieve directory gebruiken" #: Panel/panelfunc.cpp:824 --- 1937,1941 ---- #: Panel/panelfunc.cpp:815 msgid "When Packing into archive - you must use the active directory" ! msgstr "Wanneer u een archief inpakt - moet u de actieve directory gebruiken" #: Panel/panelfunc.cpp:824 *************** *** 2377,2381 **** #: Search/krsearchdialogbase.cpp:195 msgid "Krusader::Search" ! msgstr "Krusader::Zoek" #: Search/krsearchdialogbase.cpp:211 --- 2376,2380 ---- #: Search/krsearchdialogbase.cpp:195 msgid "Krusader::Search" ! msgstr "Krusader::Zoeken" #: Search/krsearchdialogbase.cpp:211 *************** *** 2417,2429 **** #: Search/krsearchdialogbase.cpp:392 msgid "Search in subdirectories" ! msgstr "Zoeken in subdirectories" #: Search/krsearchdialogbase.cpp:398 msgid "Search in archives" ! msgstr "Zoeken in archieven" #: Search/krsearchdialogbase.cpp:402 msgid "Follow links" ! msgstr "Zoeken in de link bestemmingen" #: Search/krsearchdialogbase.cpp:419 --- 2416,2428 ---- #: Search/krsearchdialogbase.cpp:392 msgid "Search in subdirectories" ! msgstr "In subdirectories zoeken" #: Search/krsearchdialogbase.cpp:398 msgid "Search in archives" ! msgstr "In archieven zoeken" #: Search/krsearchdialogbase.cpp:402 msgid "Follow links" ! msgstr "In link bestemmingen zoeken" #: Search/krsearchdialogbase.cpp:419 |
From: <ck...@us...> - 2003-10-13 14:24:27
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1:/tmp/cvs-serv20786/krusader_kde3/krusader/Dialogs Modified Files: packguibase.cpp Log Message: REMOVED: KrSearch-Help + Pack-Move Into Archive (did nothing) Index: packguibase.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/packguibase.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** packguibase.cpp 15 Apr 2002 18:48:28 -0000 1.1.1.1 --- packguibase.cpp 13 Oct 2003 14:24:16 -0000 1.2 *************** *** 498,504 **** hbox_5->setMargin( 0 ); ! moveCheckbox = new QCheckBox( this, "moveCheckbox" ); moveCheckbox->setText( i18n( "Move into archive" ) ); ! hbox_5->addWidget( moveCheckbox ); QSpacerItem* spacer_3 = new QSpacerItem( 20, 26, QSizePolicy::Fixed, QSizePolicy::Expanding ); hbox_5->addItem( spacer_3 ); --- 498,504 ---- hbox_5->setMargin( 0 ); ! /* moveCheckbox = new QCheckBox( this, "moveCheckbox" ); moveCheckbox->setText( i18n( "Move into archive" ) ); ! hbox_5->addWidget( moveCheckbox );*/ QSpacerItem* spacer_3 = new QSpacerItem( 20, 26, QSizePolicy::Fixed, QSizePolicy::Expanding ); hbox_5->addItem( spacer_3 ); |
From: <ck...@us...> - 2003-10-13 14:24:21
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv20786/krusader_kde3 Modified Files: ChangeLog Log Message: REMOVED: KrSearch-Help + Pack-Move Into Archive (did nothing) Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.118 retrieving revision 1.119 diff -C2 -d -r1.118 -r1.119 *** ChangeLog 10 Oct 2003 18:44:34 -0000 1.118 --- ChangeLog 13 Oct 2003 14:24:16 -0000 1.119 *************** *** 8,11 **** --- 8,12 ---- FIXED: FTP proxy bug (more than one @ characters in the URL) REMOVED: SortByExtention menu item (which did nothing) + REMOVED: KrSearch-Help + Pack-Move into archive (did nothing) UPDATED: Dutch translation |
From: <ck...@us...> - 2003-10-13 14:24:21
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Search In directory sc8-pr-cvs1:/tmp/cvs-serv20786/krusader_kde3/krusader/Search Modified Files: krsearchdialogbase.cpp Log Message: REMOVED: KrSearch-Help + Pack-Move Into Archive (did nothing) Index: krsearchdialogbase.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Search/krsearchdialogbase.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** krsearchdialogbase.cpp 1 Oct 2003 13:17:50 -0000 1.4 --- krsearchdialogbase.cpp 13 Oct 2003 14:24:16 -0000 1.5 *************** *** 202,208 **** Layout9->setMargin( 0 ); ! mainHelpBtn = new QPushButton( this, "mainHelpBtn" ); mainHelpBtn->setText( i18n( "Help" ) ); ! Layout9->addWidget( mainHelpBtn ); QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum ); Layout9->addItem( spacer ); --- 202,208 ---- Layout9->setMargin( 0 ); ! /* mainHelpBtn = new QPushButton( this, "mainHelpBtn" ); mainHelpBtn->setText( i18n( "Help" ) ); ! Layout9->addWidget( mainHelpBtn );*/ QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum ); Layout9->addItem( spacer ); |
From: <ck...@us...> - 2003-10-10 18:46:48
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1:/tmp/cvs-serv12821/krusader_kde3/krusader/MountMan Modified Files: kmountman.cpp Log Message: FIXED: mountman supermount bug + '/dev/' inserting bug Index: kmountman.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountman.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** kmountman.cpp 8 Oct 2003 15:54:28 -0000 1.11 --- kmountman.cpp 10 Oct 2003 18:44:34 -0000 1.12 *************** *** 411,416 **** kdWarning() << "Mt.Man: filesystem [" << temp << "] found by DF is unlisted in /etc/fstab." << endl; loc=new fsData(); filesystems.append(loc); ! if (temp.contains("//")>0) // if it contains '//', it's a smb share loc->setName(temp); // <patch> thanks to Cristi Dumitrescu else loc->setName("/dev/"+temp); --- 411,419 ---- kdWarning() << "Mt.Man: filesystem [" << temp << "] found by DF is unlisted in /etc/fstab." << endl; loc=new fsData(); + loc->supermount = false; filesystems.append(loc); ! if (temp.contains("//")>0 || // if it contains '//', it's a smb share ! temp.contains(":")>0 || // if it contains ':' , it's an nfs share ! temp.startsWith("/") ) // if it is a fullpath device name loc->setName(temp); // <patch> thanks to Cristi Dumitrescu else loc->setName("/dev/"+temp); |
From: <ck...@us...> - 2003-10-10 18:46:22
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv12821/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: mountman supermount bug + '/dev/' inserting bug Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.117 retrieving revision 1.118 diff -C2 -d -r1.117 -r1.118 *** ChangeLog 9 Oct 2003 22:10:50 -0000 1.117 --- ChangeLog 10 Oct 2003 18:44:34 -0000 1.118 *************** *** 1,3 **** --- 1,5 ---- ====================== + FIXED: mountman detects those devices as supermount, which are mounted and missing from fstab + FIXED: mountman inserts '/dev/' before NFS shares and mounted devices which are missing from fstab FIXED: mountman does not watch readonly directories (mount can change its permissions!) FIXED: mountman does not stop dirwatch after close + memory leak |
From: <ma...@us...> - 2003-10-10 11:00:20
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv28898 Modified Files: configure.in.in Log Message: add: _LARGEFILE64_SOURCE Index: configure.in.in =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/configure.in.in,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** configure.in.in 8 Oct 2003 21:59:33 -0000 1.14 --- configure.in.in 10 Oct 2003 11:00:13 -0000 1.15 *************** *** 10,11 **** --- 10,14 ---- dnl AC_PROG_YACC dnl __kdevelop__ + + CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE -DKDE_NO_COMPAT -DQT_NO_ASCII_CAST" + |
From: <ma...@us...> - 2003-10-09 23:39:53
|
Update of /cvsroot/krusader/krusader_kde3/doc In directory sc8-pr-cvs1:/tmp/cvs-serv18322/doc Modified Files: Makefile.am Log Message: manpage path was hardcoded - fixed Index: Makefile.am =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile.am 29 Sep 2003 19:34:44 -0000 1.4 --- Makefile.am 9 Oct 2003 23:39:50 -0000 1.5 *************** *** 6,14 **** install-data-local: ! $(mkinstalldirs) /usr/share/man/man1/ ! $(INSTALL_DATA) $(srcdir)/krusader.1 /usr/share/man/man1/krusader.1 uninstall-local: ! -rm -f /usr/share/man/man1/krusader.1 ####### kdevelop will overwrite this part!!! (end)############ --- 6,14 ---- install-data-local: ! $(mkinstalldirs) $(mandir)/man1/ ! $(INSTALL_DATA) $(srcdir)/krusader.1 $(mandir)/man1/krusader.1 uninstall-local: ! -rm -f $(mandir)/man1/krusader.1 ####### kdevelop will overwrite this part!!! (end)############ |
From: <ma...@us...> - 2003-10-09 23:39:53
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv18322 Modified Files: krusader.kdevprj Log Message: manpage path was hardcoded - fixed Index: krusader.kdevprj =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader.kdevprj,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** krusader.kdevprj 8 Oct 2003 21:59:33 -0000 1.32 --- krusader.kdevprj 9 Oct 2003 23:39:50 -0000 1.33 *************** *** 151,155 **** dist=true install=true ! install_location=/usr/share/man/man1/krusader.1 type=DATA --- 151,155 ---- dist=true install=true ! install_location=$$(mandir)/man1/krusader.1 type=DATA |
From: <ma...@us...> - 2003-10-09 23:25:48
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv16633/krusader Modified Files: krslots.cpp Log Message: fix: remoteMan returned, with a warning message Index: krslots.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** krslots.cpp 7 Oct 2003 15:32:00 -0000 1.23 --- krslots.cpp 9 Oct 2003 23:25:44 -0000 1.24 *************** *** 304,308 **** void KRslots::runRemoteMan() { ! QString host=remoteMan::getHost(); if (host==QString::null) return; // otherwise, attempt a connection --- 304,317 ---- void KRslots::runRemoteMan() { ! // display outage information ! KMessageBox::information(krApp, i18n( "Important: RemoteMan has been replaced by our new bookmark manager." ! "The new manager handles local files and remote url the same way." ! "RemoteMan is being left around to allow an easier transition and" ! "give you a chance to move your bookmarks. IT WILL BE REMOVED SOON!" ! "\n" ! "Try the new bookmark-manager: open a new remote connection. once" ! "done, press the bookmark button, select 'Add bookmark' and that's it!")); ! ! QString host=remoteMan::getHost(); if (host==QString::null) return; // otherwise, attempt a connection |
From: <ma...@us...> - 2003-10-09 23:25:34
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv16598/krusader Modified Files: krusader.cpp Log Message: fix: remoteMan returned, with a warning message Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** krusader.cpp 3 Oct 2003 18:10:39 -0000 1.40 --- krusader.cpp 9 Oct 2003 23:25:30 -0000 1.41 *************** *** 353,358 **** actTest = new KAction( i18n( "&Test Archive(s)" ), "kr_arc_test", ALT + Key_T, SLOTS, SLOT( testArchive() ), actionCollection(), "test archives" ); ! // actFTPConnect = new KAction( i18n( "&Net Connections" ), "socket", CTRL + Key_C, ! // SLOTS, SLOT( runRemoteMan() ), actionCollection(), "ftp connect" ); actFTPNewConnect = new KAction( i18n( "New Net &Connection" ), "ftp", CTRL + Key_N, SLOTS, SLOT( newFTPconnection() ), actionCollection(), "ftp new connection" ); --- 353,358 ---- actTest = new KAction( i18n( "&Test Archive(s)" ), "kr_arc_test", ALT + Key_T, SLOTS, SLOT( testArchive() ), actionCollection(), "test archives" ); ! actFTPConnect = new KAction( i18n( "&Net Connections" ), "socket", CTRL + Key_C, ! SLOTS, SLOT( runRemoteMan() ), actionCollection(), "ftp connect" ); actFTPNewConnect = new KAction( i18n( "New Net &Connection" ), "ftp", CTRL + Key_N, SLOTS, SLOT( newFTPconnection() ), actionCollection(), "ftp new connection" ); |
From: <ma...@us...> - 2003-10-09 23:02:35
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv12970/krusader/Panel Modified Files: panelfunc.cpp Log Message: fix: most of the 'test\' folder name bug is fixed (thanks to heiner) Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** panelfunc.cpp 7 Oct 2003 14:35:54 -0000 1.40 --- panelfunc.cpp 9 Oct 2003 23:02:32 -0000 1.41 *************** *** 719,723 **** // Do we need to change vfs ? bool changeVFS = files()->vfs_error(); ! if ( origin.right( 1 ) == "\\" ) { // leaving arc_vfs changeVFS = true; // make the current archive the current item on the new list --- 719,723 ---- // Do we need to change vfs ? bool changeVFS = files()->vfs_error(); ! if ( origin.right( 1 ) == "\\" && dynamic_cast<arc_vfs *>(files()) ) { // leaving arc_vfs changeVFS = true; // make the current archive the current item on the new list |