From 02a5c6530219e30774793437eb9d0b6d96f2b9e8 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sat, 26 May 2012 19:15:39 -0500 Subject: [PATCH] Branding cleanup: KDE -> TDE --- kate/part/katedialogs.cpp | 2 +- khtml/misc/knsplugininstaller.cpp | 2 +- kio/kio/global.cpp | 32 ++++++++++++++--------------- kio/kssl/ksslinfodlg.cc | 4 ++-- tdecore/klibloader.cpp | 2 +- tdeprint/kprintpreview.cpp | 4 ++-- tdeprint/management/kmdbcreator.cpp | 2 +- 7 files changed, 24 insertions(+), 24 deletions(-) diff --git a/kate/part/katedialogs.cpp b/kate/part/katedialogs.cpp index c4157e2e7..5a5a73b70 100644 --- a/kate/part/katedialogs.cpp +++ b/kate/part/katedialogs.cpp @@ -1011,7 +1011,7 @@ void KateSaveConfigTab::reload() { // encoding m_encoding->clear (); - m_encoding->insertItem (i18n("KDE Default")); + m_encoding->insertItem (i18n("TDE Default")); m_encoding->setCurrentItem(0); TQStringList encodings (KGlobal::charsets()->descriptiveEncodingNames()); int insert = 1; diff --git a/khtml/misc/knsplugininstaller.cpp b/khtml/misc/knsplugininstaller.cpp index 09de5a149..f155008ee 100644 --- a/khtml/misc/knsplugininstaller.cpp +++ b/khtml/misc/knsplugininstaller.cpp @@ -345,7 +345,7 @@ KNSPluginWizard::KNSPluginWizard(TQWidget *parent, const char *name, KMimeType:: : KWizard(parent, name, true) , m_installEngine(mime) { - setCaption(i18n("KDE plugin wizard")); + setCaption(i18n("TDE plugin wizard")); setModal(true); // read the plugin installer configuration diff --git a/kio/kio/global.cpp b/kio/kio/global.cpp index f99219524..1ad304a41 100644 --- a/kio/kio/global.cpp +++ b/kio/kio/global.cpp @@ -587,11 +587,11 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT TQString sUpdate = i18n( "Update your software to the latest version. " "Your distribution should provide tools to update your software." ); TQString sBugreport = i18n( "When all else fails, please consider helping the " - "KDE team or the third party maintainer of this software by submitting a " + "TDE team or the third party maintainer of this software by submitting a " "high quality bug report. If the software is provided by a third party, " "please contact them directly. Otherwise, first look to see if " "the same bug has been submitted by someone else by searching at the " - "KDE bug reporting website. If not, take " + "TDE bug reporting website. If not, take " "note of the details given above, and include them in your bug report, along " "with as many other details as you think might help." ); TQString cNetwork = i18n( "There may have been a problem with your network " @@ -638,7 +638,7 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT "to the %1 protocol could not be started. This is " "usually due to technical reasons." ).arg( protocol ); causes << i18n( "The program which provides compatibility with this " - "protocol may not have been updated with your last update of KDE. " + "protocol may not have been updated with your last update of TDE. " "This can cause the program to be incompatible with the current version " "and thus not start." ) << cBug; solutions << sUpdate << sSysadmin; @@ -666,12 +666,12 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT case KIO::ERR_UNSUPPORTED_PROTOCOL: errorName = i18n( "Unsupported Protocol %1" ).arg( protocol ); description = i18n( "The protocol %1 is not supported " - "by the KDE programs currently installed on this computer." ) + "by the TDE programs currently installed on this computer." ) .arg( protocol ); causes << i18n( "The requested protocol may not be supported." ) << i18n( "The versions of the %1 protocol supported by this computer and " "the server may be incompatible." ).arg( protocol ); - solutions << i18n( "You may perform a search on the Internet for a KDE " + solutions << i18n( "You may perform a search on the Internet for a TDE " "program (called a kioslave or ioslave) which supports this protocol. " "Places to search include " "http://kde-apps.org/ and " @@ -685,7 +685,7 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT description = i18n( "The Uniform Resource " "Locator (URL) that you entered did not refer to a " "specific resource." ); - causes << i18n( "KDE is able to communicate through a protocol within a " + causes << i18n( "TDE is able to communicate through a protocol within a " "protocol; the protocol specified is only for use in such situations, " "however this is not one of these situations. This is a rare event, and " "is likely to indicate a programming error." ); @@ -694,12 +694,12 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT case KIO::ERR_UNSUPPORTED_ACTION: errorName = i18n( "Unsupported Action: %1" ).arg( errorText ); - description = i18n( "The requested action is not supported by the KDE " + description = i18n( "The requested action is not supported by the TDE " "program which is implementing the %1 protocol." ) .arg( protocol ); - causes << i18n( "This error is very much dependent on the KDE program. The " + causes << i18n( "This error is very much dependent on the TDE program. The " "additional information should give you more information than is available " - "to the KDE input/output architecture." ); + "to the TDE input/output architecture." ); solutions << i18n( "Attempt to find another way to accomplish the same " "outcome." ); break; @@ -793,7 +793,7 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT errorName = i18n( "Folder Listing Unavailable" ); techName = i18n( "Protocol %1 is not a Filesystem" ).arg( protocol ); description = i18n( "This means that a request was made which requires " - "determining the contents of the folder, and the KDE program supporting " + "determining the contents of the folder, and the TDE program supporting " "this protocol is unable to do so." ); causes << cBug; solutions << sUpdate << sBugreport; @@ -802,7 +802,7 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT case KIO::ERR_CYCLIC_LINK: errorName = i18n( "Cyclic Link Detected" ); description = i18n( "UNIX environments are commonly able to link a file or " - "folder to a separate name and/or location. KDE detected a link or " + "folder to a separate name and/or location. TDE detected a link or " "series of links that results in an infinite loop - i.e. the file was " "(perhaps in a roundabout way) linked to itself." ); solutions << i18n( "Delete one part of the loop in order that it does not " @@ -824,7 +824,7 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT errorName = i18n( "Cyclic Link Detected During Copy" ); description = i18n( "UNIX environments are commonly able to link a file or " "folder to a separate name and/or location. During the requested copy " - "operation, KDE detected a link or series of links that results in an " + "operation, TDE detected a link or series of links that results in an " "infinite loop - i.e. the file was (perhaps in a roundabout way) linked " "to itself." ); solutions << i18n( "Delete one part of the loop in order that it does not " @@ -873,7 +873,7 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT "a valid mechanism of accessing the specific resource, " "%1%2." ) .arg( !host.isNull() ? host + '/' : TQString::null ).arg( dir ); - causes << i18n( "KDE is able to communicate through a protocol within a " + causes << i18n( "TDE is able to communicate through a protocol within a " "protocol. This request specified a protocol be used as such, however " "this protocol is not capable of such an action. This is a rare event, " "and is likely to indicate a programming error." ); @@ -1099,10 +1099,10 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT .arg( errorText ); description = i18n( "Although you may have supplied the correct " "authentication details, the authentication failed because the " - "method that the server is using is not supported by the KDE " + "method that the server is using is not supported by the TDE " "program implementing the protocol %1." ).arg( protocol ); solutions << i18n( "Please file a bug at " - "http://bugs.kde.org/ to inform the KDE team of the unsupported " + "http://bugs.pearsoncomputing.net/ to inform the TDE team of the unsupported " "authentication method." ) << sSysadmin; break; @@ -1135,7 +1135,7 @@ KIO_EXPORT TQByteArray KIO::rawErrorDetail(int errorCode, const TQString &errorT "
  • Timeout for establishing a connection: %1 seconds
  • " "
  • Timeout for receiving a response: %2 seconds
  • " "
  • Timeout for accessing proxy servers: %3 seconds
  • " - "Please note that you can alter these timeout settings in the KDE " + "Please note that you can alter these timeout settings in the TDE " "Control Center, by selecting Network -> Preferences." ) .arg( KProtocolManager::connectTimeout() ) .arg( KProtocolManager::responseTimeout() ) diff --git a/kio/kssl/ksslinfodlg.cc b/kio/kssl/ksslinfodlg.cc index ae2a4a3ae..bc67d3e6e 100644 --- a/kio/kssl/ksslinfodlg.cc +++ b/kio/kssl/ksslinfodlg.cc @@ -96,7 +96,7 @@ KSSLInfoDlg::KSSLInfoDlg(bool secureConnection, TQWidget *parent, const char *na } } else { d->pixmap->setPixmap(BarIcon("decrypted")); - d->info->setText(i18n("SSL support is not available in this build of KDE.")); + d->info->setText(i18n("SSL support is not available in this build of TDE.")); } d->m_layout->addRowSpacing( 0, 50 ); // give minimum height to look better @@ -117,7 +117,7 @@ KSSLInfoDlg::KSSLInfoDlg(bool secureConnection, TQWidget *parent, const char *na button->setFocus(); - setCaption(i18n("KDE SSL Information")); + setCaption(i18n("TDE SSL Information")); d->inQuestion = false; } diff --git a/tdecore/klibloader.cpp b/tdecore/klibloader.cpp index f1e65d0f7..2c75989d3 100644 --- a/tdecore/klibloader.cpp +++ b/tdecore/klibloader.cpp @@ -165,7 +165,7 @@ KLibFactory* KLibrary::factory() if( !m_factory ) { - KLibLoader::self()->d->errorMessage = i18n( "The library %1 does not offer a KDE compatible factory." ).arg( name() ); + KLibLoader::self()->d->errorMessage = i18n( "The library %1 does not offer a TDE compatible factory." ).arg( name() ); kdWarning(150) << KLibLoader::self()->d->errorMessage << endl; return 0; } diff --git a/tdeprint/kprintpreview.cpp b/tdeprint/kprintpreview.cpp index d6c80cd86..32381af28 100644 --- a/tdeprint/kprintpreview.cpp +++ b/tdeprint/kprintpreview.cpp @@ -300,11 +300,11 @@ bool KPrintPreview::preview(const TQString& file, bool previewOnly, WId parentId // could be found to view PS TQString msg; if ( isPS ) - msg = i18n("Preview failed: neither the internal KDE PostScript " + msg = i18n("Preview failed: neither the internal TDE PostScript " "viewer (KGhostView) nor any other external PostScript " "viewer could be found."); else - msg = i18n( "Preview failed: KDE could not find any application " + msg = i18n( "Preview failed: TDE could not find any application " "to preview files of type %1." ).arg( mime->name() ); return continuePrint(msg, parentW, previewOnly); diff --git a/tdeprint/management/kmdbcreator.cpp b/tdeprint/management/kmdbcreator.cpp index 3fab5929e..0e72906d7 100644 --- a/tdeprint/management/kmdbcreator.cpp +++ b/tdeprint/management/kmdbcreator.cpp @@ -110,7 +110,7 @@ bool KMDBCreator::createDriverDB(const TQString& dirname, const TQString& filena if (!m_dlg) { m_dlg = new TQProgressDialog(parent->topLevelWidget(),"progress-dialog",true); - m_dlg->setLabelText(i18n("Please wait while KDE rebuilds a driver database.")); + m_dlg->setLabelText(i18n("Please wait while TDE rebuilds a driver database.")); m_dlg->setCaption(i18n("Driver Database")); connect(m_dlg,TQT_SIGNAL(canceled()),TQT_SLOT(slotCancelled())); }