summaryrefslogtreecommitdiffstats
path: root/kioslave/media/mounthelper
diff options
context:
space:
mode:
Diffstat (limited to 'kioslave/media/mounthelper')
-rw-r--r--kioslave/media/mounthelper/kio_media_mounthelper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kioslave/media/mounthelper/kio_media_mounthelper.cpp b/kioslave/media/mounthelper/kio_media_mounthelper.cpp
index 7a2b2b78f..32aca6f8f 100644
--- a/kioslave/media/mounthelper/kio_media_mounthelper.cpp
+++ b/kioslave/media/mounthelper/kio_media_mounthelper.cpp
@@ -44,7 +44,7 @@ const Medium MountHelper::findMedium(const KURL &url)
// Try filename first
DCOPReply reply = mediamanager.call( "properties", url.fileName() );
if ( !reply.isValid() ) {
- m_errorStr = i18n("The KDE mediamanager is not running.")+"\n";
+ m_errorStr = i18n("The TDE mediamanager is not running.")+"\n";
return Medium(TQString::null, TQString::null);
}
const Medium& medium = Medium::create(reply);
@@ -232,7 +232,7 @@ void MountHelper::slotSendPassword()
DCOPReply reply = mediamanager.call( "decrypt", m_mediumId, dialog->getPassword() );
if (!reply.isValid()) {
- m_errorStr = i18n("The KDE mediamanager is not running.");
+ m_errorStr = i18n("The TDE mediamanager is not running.");
error();
} else {
TQString errorMsg = reply;