diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:41:25 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 12:41:25 -0500 |
commit | acc29a93bbbf2fbb3ef76c8c986d1722cb200a91 (patch) | |
tree | 586a480a7bdd5a8f36fd4368bbd61ccefade8c82 | |
parent | 4195032ae499e55b604fb0d80e6b398ddc4ef1af (diff) | |
download | tdelibs-acc29a93bbbf2fbb3ef76c8c986d1722cb200a91.tar.gz tdelibs-acc29a93bbbf2fbb3ef76c8c986d1722cb200a91.zip |
Fix incorrect Download string in TDEFileSpeedBar
-rw-r--r-- | tdeio/tdefile/tdefilespeedbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeio/tdefile/tdefilespeedbar.cpp b/tdeio/tdefile/tdefilespeedbar.cpp index 6f3365a5f..3f84bbbc4 100644 --- a/tdeio/tdefile/tdefilespeedbar.cpp +++ b/tdeio/tdefile/tdefilespeedbar.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()) |