diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:41:25 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-12-23 02:22:55 +0100 |
commit | 7e2cf4a9d5bde04415c9b5d27c64b590d9797ece (patch) | |
tree | de7366b77eae5af286f81709e384c10d18955334 /kio | |
parent | 5a0bc6283339027712036807df45451135898d2d (diff) | |
download | tdelibs-7e2cf4a9d5bde04415c9b5d27c64b590d9797ece.tar.gz tdelibs-7e2cf4a9d5bde04415c9b5d27c64b590d9797ece.zip |
Fix incorrect Download string in TDEFileSpeedBar
(cherry picked from commit acc29a93bbbf2fbb3ef76c8c986d1722cb200a91)
Diffstat (limited to 'kio')
-rw-r--r-- | kio/kfile/kfilespeedbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kio/kfile/kfilespeedbar.cpp b/kio/kfile/kfilespeedbar.cpp index 154009625..8551812a9 100644 --- a/kio/kfile/kfilespeedbar.cpp +++ b/kio/kfile/kfilespeedbar.cpp @@ -97,7 +97,7 @@ KFileSpeedBar::KFileSpeedBar( TQWidget *parent, const char *name ) } // now add in the speedbar if (!download.isEmpty()) - insertItem( download, i18n( "Download" ), false, "folder_html" ); + insertItem( download, i18n( "Downloads" ), false, "folder_html" ); if (!music.isEmpty()) insertItem( music, i18n( "Music" ), false, "folder_sound" ); if (!pictures.isEmpty()) |