Bug 53842 - Checkbox talks about "downloading" when saving to FTP
Summary: Checkbox talks about "downloading" when saving to FTP
Status: RESOLVED FIXED
Alias: None
Product: kio
Classification: Frameworks and Libraries
Component: uiserver (show other bugs)
Version: unspecified
Platform: Debian testing Linux
: NOR normal
Target Milestone: ---
Assignee: David Faure
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-02-01 17:34 UTC by Daan Goedkoop
Modified: 2003-02-01 18:12 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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);