summaryrefslogtreecommitdiffstats
path: root/kioslave
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-05-26 19:14:07 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-05-26 19:14:07 -0500
commite37899bcc3f75c9e314df74fee7cd92167f1c4d8 (patch)
treea9ddccfd5aa44b1975e0bafd0254d9c00780ac96 /kioslave
parentcfd4a7e4ea2276df469207aa5041cec412861493 (diff)
downloadtdebase-e37899bcc3f75c9e314df74fee7cd92167f1c4d8.tar.gz
tdebase-e37899bcc3f75c9e314df74fee7cd92167f1c4d8.zip
Branding cleanup: KDE -> TDE
Diffstat (limited to 'kioslave')
-rw-r--r--kioslave/man/kio_man.cpp4
-rw-r--r--kioslave/media/mediaimpl.cpp12
-rw-r--r--kioslave/media/mounthelper/kio_media_mounthelper.cpp4
3 files changed, 10 insertions, 10 deletions
diff --git a/kioslave/man/kio_man.cpp b/kioslave/man/kio_man.cpp
index 4f796c6f9..12c13d601 100644
--- a/kioslave/man/kio_man.cpp
+++ b/kioslave/man/kio_man.cpp
@@ -602,7 +602,7 @@ void MANProtocol::outputError(const TQString& errmsg)
if ( !m_manCSSFile.isEmpty() )
os << "<link href=\"file:///" << m_manCSSFile << "\" type=\"text/css\" rel=\"stylesheet\">" << endl;
os << "</head>" << endl;
- os << i18n("<body><h1>KDE Man Viewer Error</h1>") << errmsg << "</body>" << endl;
+ os << i18n("<body><h1>TDE Man Viewer Error</h1>") << errmsg << "</body>" << endl;
os << "</html>" << endl;
data(array);
@@ -1527,7 +1527,7 @@ void MANProtocol::getProgramPath()
return;
/* Cannot find sgml2roff programm: */
- outputError(i18n("Could not find the sgml2roff program on your system. Please install it, if necessary, and extend the search path by adjusting the environment variable PATH before starting KDE."));
+ outputError(i18n("Could not find the sgml2roff program on your system. Please install it, if necessary, and extend the search path by adjusting the environment variable PATH before starting TDE."));
finished();
exit();
}
diff --git a/kioslave/media/mediaimpl.cpp b/kioslave/media/mediaimpl.cpp
index 97db08041..8729c832d 100644
--- a/kioslave/media/mediaimpl.cpp
+++ b/kioslave/media/mediaimpl.cpp
@@ -85,7 +85,7 @@ bool MediaImpl::statMedium(const TQString &name, KIO::UDSEntry &entry)
if ( !reply.isValid() )
{
m_lastErrorCode = KIO::ERR_SLAVE_DEFINED;
- m_lastErrorMessage = i18n("The KDE mediamanager is not running.");
+ m_lastErrorMessage = i18n("The TDE mediamanager is not running.");
return false;
}
@@ -112,7 +112,7 @@ bool MediaImpl::statMediumByLabel(const TQString &label, KIO::UDSEntry &entry)
if ( !reply.isValid() )
{
m_lastErrorCode = KIO::ERR_SLAVE_DEFINED;
- m_lastErrorMessage = i18n("The KDE mediamanager is not running.");
+ m_lastErrorMessage = i18n("The TDE mediamanager is not running.");
return false;
}
@@ -138,7 +138,7 @@ bool MediaImpl::listMedia(TQValueList<KIO::UDSEntry> &list)
if ( !reply.isValid() )
{
m_lastErrorCode = KIO::ERR_SLAVE_DEFINED;
- m_lastErrorMessage = i18n("The KDE mediamanager is not running.");
+ m_lastErrorMessage = i18n("The TDE mediamanager is not running.");
return false;
}
@@ -174,7 +174,7 @@ bool MediaImpl::setUserLabel(const TQString &name, const TQString &label)
if ( !reply.isValid() )
{
m_lastErrorCode = KIO::ERR_SLAVE_DEFINED;
- m_lastErrorMessage = i18n("The KDE mediamanager is not running.");
+ m_lastErrorMessage = i18n("The TDE mediamanager is not running.");
return false;
}
else
@@ -194,7 +194,7 @@ bool MediaImpl::setUserLabel(const TQString &name, const TQString &label)
if ( !reply.isValid() )
{
m_lastErrorCode = KIO::ERR_SLAVE_DEFINED;
- m_lastErrorMessage = i18n("The KDE mediamanager is not running.");
+ m_lastErrorMessage = i18n("The TDE mediamanager is not running.");
return false;
}
else
@@ -215,7 +215,7 @@ const Medium MediaImpl::findMediumByName(const TQString &name, bool &ok)
else
{
m_lastErrorCode = KIO::ERR_SLAVE_DEFINED;
- m_lastErrorMessage = i18n("The KDE mediamanager is not running.");
+ m_lastErrorMessage = i18n("The TDE mediamanager is not running.");
ok = false;
}
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;