From efbe6faa6c054c878f6395d7bbcc19dda3c2e544 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 3 Jun 2012 22:44:09 -0500 Subject: Branding cleanup: KDE -> TDE, KDevelop -> TDevelop --- .../cpp/pcsimporter/tdelibsimporter/settingsdialog.cpp | 2 +- parts/documentation/searchview.cpp | 2 +- src/projectmanager.cpp | 4 ++-- src/projectsession.cpp | 2 +- src/simplemainwindow.cpp | 8 ++++---- vcs/subversion/subversion_core.cpp | 16 ++++++++-------- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/languages/cpp/pcsimporter/tdelibsimporter/settingsdialog.cpp b/languages/cpp/pcsimporter/tdelibsimporter/settingsdialog.cpp index 331831c6..0575d254 100644 --- a/languages/cpp/pcsimporter/tdelibsimporter/settingsdialog.cpp +++ b/languages/cpp/pcsimporter/tdelibsimporter/settingsdialog.cpp @@ -89,7 +89,7 @@ void SettingsDialog::addUrlButton_clicked() } else { - KMessageBox::error( this, i18n("This does not appear to be a valid KDE include directory.\nPlease select a different directory."), i18n("Invalid Directory") ); + KMessageBox::error( this, i18n("This does not appear to be a valid TDE include directory.\nPlease select a different directory."), i18n("Invalid Directory") ); } } diff --git a/parts/documentation/searchview.cpp b/parts/documentation/searchview.cpp index e9e34192..aed30404 100644 --- a/parts/documentation/searchview.cpp +++ b/parts/documentation/searchview.cpp @@ -155,7 +155,7 @@ void SearchView::search() TQString exe = config->readPathEntry("htsearchbin", kapp->dirs()->findExe("htsearch")); if (exe.isEmpty()) { - KMessageBox::error(this, i18n("Cannot find the htsearch executable.\nIt is part of the ht://Dig package that is used by KDevelop to perform full text search. Please install ht://Dig and use Documentation page in Configure KDevelop dialog to set the htsearch location.")); + KMessageBox::error(this, i18n("Cannot find the htsearch executable.\nIt is part of the ht://Dig package that is used by TDevelop to perform full text search. Please install ht://Dig and use Documentation page in Configure TDevelop dialog to set the htsearch location.")); kdDebug() << "Can not find htsearch" << endl; return; } diff --git a/src/projectmanager.cpp b/src/projectmanager.cpp index b0f44d90..8c05e84a 100644 --- a/src/projectmanager.cpp +++ b/src/projectmanager.cpp @@ -56,7 +56,7 @@ TQString ProjectInfo::sessionFile() const { TQString sf = m_projectURL.path(-1); sf.truncate(sf.length() - 8); // without ".tdevelop" - sf += "kdevses"; // suffix for a KDevelop session file + sf += "kdevses"; // suffix for a TDevelop session file return sf; } @@ -287,7 +287,7 @@ void ProjectManager::slotLoadProject( ) // first restore the project session stored in a .kdevses file if (!m_pProjectSession->restoreFromFile(m_info->sessionFile(), PluginController::getInstance()->loadedPlugins() )) { - kdWarning() << i18n("error during restoring of the KDevelop session !") << endl; + kdWarning() << i18n("error during restoring of the TDevelop session !") << endl; } } #if KDE_IS_VERSION(3,5,0) diff --git a/src/projectsession.cpp b/src/projectsession.cpp index ae7377e1..84626536 100644 --- a/src/projectsession.cpp +++ b/src/projectsession.cpp @@ -91,7 +91,7 @@ bool ProjectSession::restoreFromFile( const TQString & sessionFileName, const TQ // Check for proper document type. if (domdoc.doctype().name() != "KDevPrjSession") { KMessageBox::sorry(0L, - i18n("The file %1 does not contain a valid KDevelop project session ('KDevPrjSession').\n").arg(sessionFileName) + i18n("The file %1 does not contain a valid TDevelop project session ('KDevPrjSession').\n").arg(sessionFileName) + i18n("The document type seems to be: '%1'.").arg(domdoc.doctype().name())); return false; } diff --git a/src/simplemainwindow.cpp b/src/simplemainwindow.cpp index defcf0c1..3f1c3d4a 100644 --- a/src/simplemainwindow.cpp +++ b/src/simplemainwindow.cpp @@ -95,12 +95,12 @@ void SimpleMainWindow::init() //a profile can offer core plugins and no global plugins. if ( PluginController::getInstance()->engine().allOffers(ProfileEngine::Global).isEmpty() ) { - KMessageBox::sorry( this, i18n("Unable to find plugins, KDevelop will not work" + KMessageBox::sorry( this, i18n("Unable to find plugins, TDevelop will not work" " properly.\nPlease make sure " - "that KDevelop is installed in your KDE directory; otherwise, you have " - "to add KDevelop's installation " + "that TDevelop is installed in your TDE directory; otherwise, you have " + "to add TDevelop's installation " "path to the environment variable TDEDIRS and run kbuildsycoca. Restart " - "KDevelop afterwards.\n" + "TDevelop afterwards.\n" "Example for BASH users:\nexport TDEDIRS=/path/to/tdevelop:$TDEDIRS && kbuildsycoca"), i18n("Could Not Find Plugins") ); } diff --git a/vcs/subversion/subversion_core.cpp b/vcs/subversion/subversion_core.cpp index 285ae4ab..b8f90263 100644 --- a/vcs/subversion/subversion_core.cpp +++ b/vcs/subversion/subversion_core.cpp @@ -506,9 +506,9 @@ void subversionCore::slotResult( KIO::Job * job ) { job->showErrorDialog( m_part->mainWindow()->main() ); if( job->error() == ERR_CANNOT_LAUNCH_PROCESS ) KMessageBox::error( m_part->mainWindow()->main(), - i18n("If you have just have installed a new version of KDevelop," + i18n("If you have just have installed a new version of TDevelop," " and the error message was 'unknown protocol kdevsvn+*'," - " try restarting KDE." + " try restarting TDE." ) ); return; } @@ -535,9 +535,9 @@ void subversionCore::slotLogResult( KIO::Job * job ) job->showErrorDialog( m_part->mainWindow()->main() ); if( job->error() == ERR_CANNOT_LAUNCH_PROCESS ) KMessageBox::error( m_part->mainWindow()->main(), - i18n("If you have just have installed a new version of KDevelop," + i18n("If you have just have installed a new version of TDevelop," " and the error message was 'unknown protocol kdevsvn+*'," - " try restarting KDE." + " try restarting TDE." ) ); return; } @@ -595,9 +595,9 @@ void subversionCore::slotBlameResult( KIO::Job * job ) job->showErrorDialog( m_part->mainWindow()->main() ); if( job->error() == ERR_CANNOT_LAUNCH_PROCESS ) KMessageBox::error( m_part->mainWindow()->main(), - i18n("If you have just have installed a new version of KDevelop," + i18n("If you have just have installed a new version of TDevelop," " and the error message was 'unknown protocol kdevsvn+*'," - " try restarting KDE." + " try restarting TDE." ) ); return; } @@ -665,9 +665,9 @@ void subversionCore::slotDiffResult( KIO::Job * job ) job->showErrorDialog( m_part->mainWindow()->main() ); if( job->error() == ERR_CANNOT_LAUNCH_PROCESS ) KMessageBox::error( m_part->mainWindow()->main(), - i18n("If you have just have installed a new version of KDevelop," + i18n("If you have just have installed a new version of TDevelop," " and the error message was 'unknown protocol kdevsvn+*'," - " try restarting KDE." + " try restarting TDE." ) ); return; } -- cgit v1.2.3