summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kfloppy/floppy.cpp6
-rw-r--r--klaptopdaemon/sony.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/kfloppy/floppy.cpp b/kfloppy/floppy.cpp
index f749a70..821bc18 100644
--- a/kfloppy/floppy.cpp
+++ b/kfloppy/floppy.cpp
@@ -247,7 +247,7 @@ FloppyData::FloppyData(TQWidget * parent, const char * name)
lineedit = new KLineEdit( this, "Lineedit" );
// ### TODO ext2 supports 16 characters. Minix has not any label. UFS?
- lineedit->setText(i18n( "Volume label, maximal 11 characters", "KDE Floppy" ) );
+ lineedit->setText(i18n( "Volume label, maximal 11 characters", "TDE Floppy" ) );
lineedit->setMaxLength(11);
h2->addWidget( lineedit, AlignRight );
TQWhatsThis::add( lineedit,
@@ -344,7 +344,7 @@ void FloppyData::keyPressEvent(TQKeyEvent *e)
}
void FloppyData::show() {
- setCaption(i18n("KDE Floppy Formatter"));
+ setCaption(i18n("TDE Floppy Formatter"));
KDialog::show();
}
@@ -699,7 +699,7 @@ void FloppyData::readSettings(){
verifyconfig = config->readNumEntry("Verify", 1);
labelconfig = config->readNumEntry("CreateLabel",1);
- labelnameconfig = config->readEntry( "Label", i18n("Volume label, maximal 11 characters", "KDE Floppy") );
+ labelnameconfig = config->readEntry( "Label", i18n("Volume label, maximal 11 characters", "TDE Floppy") );
quickformatconfig = config->readNumEntry("QuickFormat",0);
driveconfig = config->readEntry( "FloppyDrive", i18n("Primary") );
#if defined(ANY_LINUX)
diff --git a/klaptopdaemon/sony.cpp b/klaptopdaemon/sony.cpp
index 74a9353..7bc7175 100644
--- a/klaptopdaemon/sony.cpp
+++ b/klaptopdaemon/sony.cpp
@@ -71,7 +71,7 @@ SonyConfig::SonyConfig(TQWidget * parent, const char *name)
"use the 'sonypid' program in your system").replace("\n", " "), this));
enableScrollBar = new TQCheckBox( i18n("Enable &scroll bar"), this );
- TQToolTip::add( enableScrollBar, i18n( "When checked this box enables the scrollbar so that it works under KDE" ) );
+ TQToolTip::add( enableScrollBar, i18n( "When checked this box enables the scrollbar so that it works under TDE" ) );
top_layout->addWidget( enableScrollBar );
connect( enableScrollBar, TQT_SIGNAL(clicked()), this, TQT_SLOT(configChanged()) );