diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-07 18:00:13 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-07 18:00:13 -0600 |
commit | 376712d203ede915fa89ace2148313f920d42ce2 (patch) | |
tree | a186ebfd4aec8b818fd23c3f5f5cdf486e8e3ec4 /kappfinder | |
parent | 83bab09437cba8ddb8767f304d950dc8981d2054 (diff) | |
download | tdebase-376712d203ede915fa89ace2148313f920d42ce2.tar.gz tdebase-376712d203ede915fa89ace2148313f920d42ce2.zip |
Fix K Menu -> TDE Menu branding issues.
Diffstat (limited to 'kappfinder')
-rw-r--r-- | kappfinder/toplevel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kappfinder/toplevel.cpp b/kappfinder/toplevel.cpp index 415cdbb65..9f67b6ede 100644 --- a/kappfinder/toplevel.cpp +++ b/kappfinder/toplevel.cpp @@ -50,9 +50,9 @@ TopLevel::TopLevel( const TQString &destDir, TQWidget *parent, const char *name setCaption( i18n( "KAppfinder" ) ); TQVBoxLayout *layout = new TQVBoxLayout( this, marginHint() ); - TQLabel *label = new TQLabel( i18n( "The application finder looks for non-KDE " + TQLabel *label = new TQLabel( i18n( "The application finder looks for non-TDE " "applications on your system and adds " - "them to the KDE menu system. " + "them to the TDE menu system. " "Click 'Scan' to begin, select the desired applications and then click 'Apply'."), this); label->setAlignment( AlignAuto | WordBreak ); layout->addWidget( label ); @@ -284,8 +284,8 @@ void TopLevel::slotCreate() KService::rebuildKSycoca(this); - TQString message( i18n( "%n application was added to the KDE menu system.", - "%n applications were added to the KDE menu system.", mAdded ) ); + TQString message( i18n( "%n application was added to the TDE menu system.", + "%n applications were added to the TDE menu system.", mAdded ) ); KMessageBox::information( this, message, TQString::null, "ShowInformation" ); } |