Bug 53842

Summary: Checkbox talks about "downloading" when saving to FTP
Product: [Frameworks and Libraries] kio Reporter: Daan Goedkoop <dgoedkoop>
Component: uiserverAssignee: David Faure <faure>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Debian testing   
OS: Linux   
Latest Commit: Version Fixed In:

Description Daan Goedkoop 2003-02-01 17:34:47 UTC
Version:            (using KDE KDE 3.1)
Installed from:    Debian testing/unstable Packages (3.0)
Compiler:          gcc version 2.95.4 20011002 (Debian prerelease)
OS:          Linux (i686) release 2.2.20

When I save a file in Kate, KDE displays a standard download window to show the save process. Besides I guess all those new KDE 3.1 buttons are not that usefull when just opening or saving files in my text editor, it says something like "Keep window open after downloading has finished", while I am rather uploading.
Daan.
Comment 1 David Faure 2003-02-01 18:12:08 UTC
Subject: kdelibs/kio/kio

CVS commit by faure: 

GUI: not all network operations are "downloads", indeed. When saving it's an upload.
In the general case it's a "transfer" -> fixed label for checkbox in progress dialog.
CCMAIL: 53842-done@bugs.kde.org


  M +1 -1      defaultprogress.cpp   1.54


--- kdelibs/kio/kio/defaultprogress.cpp  #1.53:1.54
@@ -133,5 +133,5 @@ void DefaultProgress::init()
   topLayout->addWidget( line );
 
-  d->keepOpen = new QCheckBox( i18n("&Keep this window open after download is complete"), this);
+  d->keepOpen = new QCheckBox( i18n("&Keep this window open after transfer is complete"), this);
   connect( d->keepOpen, SIGNAL( toggled(bool) ), SLOT( slotKeepOpenToggled(bool) ) );
   topLayout->addWidget(d->keepOpen);